:root {
  --green: #00a85a;
  --green-dark: #007a45;
  --green-soft: #e7f8ef;
  --blue: #002f55;
  --blue-deep: #001f3d;
  --blue-soft: #e8f2f8;
  --ink: #122033;
  --muted: #5b6c7d;
  --line: #dbe8ef;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 47, 85, 0.14);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbfd;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 47, 85, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1140px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
}

.brand-mark {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-word {
  width: min(300px, 52vw);
  height: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-link {
  padding: 10px 12px;
  color: var(--blue);
}

.nav-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.button {
  padding: 13px 18px;
  border: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(0, 168, 90, 0.24);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(0, 47, 85, 0.16);
}

.button-social {
  padding-inline: 14px;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button-quiet {
  color: var(--blue);
  background: var(--blue-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 61, 0.94) 0%, rgba(0, 47, 85, 0.8) 43%, rgba(0, 47, 85, 0.2) 100%),
    url("../img/mudanca-excelplanilhas-planilhalab.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 64px 0 82px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #8ce7b6;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #8ce7b6;
  font-size: 0.8rem;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: var(--white);
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.intro-text p,
.store-copy p,
.catalog-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.announcement-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.announcement-figure img {
  width: 100%;
  height: auto;
}

.values-band {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef7f3 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.social-card,
.catalog-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 47, 85, 0.07);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.store-panel {
  padding: 44px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 58%, var(--green-dark));
  box-shadow: var(--shadow);
}

.store-panel h2,
.store-panel p {
  color: var(--white);
}

.store-url {
  margin: 0;
  color: #8ce7b6;
  font-weight: 900;
  word-break: break-word;
}

.social-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card,
.catalog-card {
  text-decoration: none;
}

.social-card span,
.catalog-card span {
  color: var(--green-dark);
  font-weight: 900;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.84);
  background: var(--blue-deep);
}

.footer-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.button-footer {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-footer:hover {
  background: rgba(255, 255, 255, 0.16);
}

.catalog-hero {
  padding: 82px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7f3 100%);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.catalog-logo {
  width: 100%;
  max-width: 520px;
  max-height: 170px;
  margin-left: auto;
  object-fit: contain;
  object-position: center right;
}

.loan-page {
  background: #f6faf7;
}

.loan-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.loan-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 61, 0.94) 0%, rgba(0, 47, 85, 0.82) 44%, rgba(0, 47, 85, 0.22) 100%),
    url("../img/controle-de-emprestimo/capa-planilha-controle-de-emprestimo.jpg") center right 20% / cover no-repeat;
}

.loan-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), #efb600, #0d77b8);
}

.loan-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  min-height: calc(92vh - 76px);
  margin: 0 auto;
  padding: 68px 0 76px;
  display: flex;
  align-items: center;
}

.loan-hero-copy {
  width: min(730px, 100%);
}

.loan-hero h1 {
  max-width: 820px;
}

.loan-hero-lede {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
}

.loan-price-line {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.loan-price-line strong {
  color: #f5c400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.loan-old-price {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
  text-decoration: line-through;
}

.loan-buy-button {
  background: #09a957;
  box-shadow: 0 16px 36px rgba(0, 168, 90, 0.3);
}

.loan-hero-video {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.loan-quick-proof {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.loan-quick-proof li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.loan-trust-strip {
  padding: 24px 0;
  color: var(--white);
  background: #101923;
}

.loan-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.loan-trust-grid div {
  padding-left: 18px;
  border-left: 4px solid #f5c400;
}

.loan-trust-grid strong,
.loan-trust-grid span {
  display: block;
}

.loan-trust-grid strong {
  font-size: 1.02rem;
}

.loan-trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.loan-section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.loan-section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.loan-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.loan-feature-card,
.loan-screen-card,
.loan-testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 47, 85, 0.07);
}

.loan-feature-card {
  padding: 24px;
}

.loan-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 0.9rem;
  font-weight: 900;
}

.loan-feature-card p,
.loan-screen-card p,
.loan-testimonial-card p {
  color: var(--muted);
}

.loan-center-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.loan-summary-section {
  padding-top: 62px;
}

.loan-summary-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.loan-summary-image img {
  width: 100%;
  height: auto;
}

.loan-calculation-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7f3 100%);
}

.loan-info-layout,
.loan-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.loan-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.loan-mini-card,
.loan-side-panel,
.loan-recurrence-panel,
.loan-seo-layout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 47, 85, 0.07);
}

.loan-mini-card {
  padding: 18px;
}

.loan-mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.04rem;
}

.loan-mini-card p,
.loan-side-panel p,
.loan-recurrence-panel p,
.loan-seo-layout p {
  color: var(--muted);
}

.loan-side-panel {
  padding: 24px;
  border-top: 6px solid var(--green);
}

.loan-pill-list {
  display: grid;
  gap: 10px;
}

.loan-pill-list span {
  padding: 12px;
  border-radius: 8px;
  display: block;
  color: var(--muted);
  background: var(--green-soft);
}

.loan-pill-list strong {
  color: var(--blue);
}

.loan-recurrence-panel {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  border-left: 8px solid #f5c400;
}

.loan-recurrence-panel ul,
.loan-audience-list ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.loan-recurrence-panel li,
.loan-audience-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 700;
}

.loan-recurrence-panel li::before,
.loan-audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #c8f3dc;
}

.loan-showcase {
  background: linear-gradient(180deg, #eef7f3 0%, #f8fbfd 100%);
}

.loan-showcase-layout,
.loan-video-layout,
.loan-offer-layout,
.loan-audience-layout,
.loan-faq-layout,
.loan-final-layout {
  display: grid;
  gap: 38px;
  align-items: center;
}

.loan-showcase-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
}

.loan-showcase-copy p,
.loan-audience-list p,
.loan-faq p,
.loan-final-cta p,
.loan-offer-band p,
.loan-video-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.loan-check-list {
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.loan-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.loan-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #c8f3dc;
}

.loan-main-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 85, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.loan-main-screen img {
  width: 100%;
  height: auto;
}

.loan-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.loan-screen-card {
  overflow: hidden;
}

.loan-screen-card img {
  width: 100%;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
}

.loan-screen-card div {
  padding: 20px;
}

.loan-offer-band {
  color: var(--white);
  background: linear-gradient(135deg, #101923 0%, var(--blue) 58%, #0b7949 100%);
}

.loan-offer-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.loan-offer-band h2,
.loan-offer-band p {
  color: var(--white);
}

.loan-offer-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.loan-offer-box span,
.loan-offer-box del,
.loan-offer-box strong {
  display: block;
}

.loan-offer-box span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.loan-offer-box del {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.42rem;
  font-weight: 900;
}

.loan-offer-box strong {
  margin: 4px 0 20px;
  color: #f5c400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.loan-video-layout {
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
}

.loan-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101923;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.loan-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.loan-audience {
  background: #f1f7fb;
}

.loan-audience-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.loan-audience-list {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  border-left: 8px solid #f5c400;
  box-shadow: 0 12px 28px rgba(0, 47, 85, 0.07);
}

.loan-audience-list p:last-child {
  margin-bottom: 0;
}

.loan-audience-list ul {
  margin-top: 18px;
}

.loan-seo-layout {
  padding: 32px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.loan-seo-layout h2 {
  margin-bottom: 0;
}

.loan-seo-layout .button {
  margin-top: 8px;
}

.loan-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.loan-testimonial-card {
  padding: 24px;
}

.loan-stars {
  margin-bottom: 14px;
  color: #f5b800;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.loan-testimonial-card strong,
.loan-testimonial-card span {
  display: block;
}

.loan-testimonial-card strong {
  color: var(--blue);
}

.loan-testimonial-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.loan-faq {
  background: linear-gradient(180deg, #eef7f3 0%, #f7fbfd 100%);
}

.loan-faq-layout {
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  align-items: start;
}

.loan-faq-list {
  display: grid;
  gap: 12px;
}

.loan-faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 47, 85, 0.06);
}

.loan-faq-list summary {
  padding: 18px 20px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.loan-faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.loan-final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 31, 61, 0.95), rgba(0, 47, 85, 0.78)),
    url("../img/controle-de-emprestimo/base.jpg") center / cover no-repeat;
}

.loan-final-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.loan-final-cta h2,
.loan-final-cta p {
  color: var(--white);
}

.loan-final-action {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.loan-final-action span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.4rem;
  font-weight: 900;
}

.loan-final-action strong {
  color: #f5c400;
}

@media (max-width: 920px) {
  .header-inner,
  .footer-inner,
  .store-panel,
  .catalog-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner,
  .footer-inner {
    padding: 14px 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    width: min(1140px, calc(100% - 24px));
    min-height: 64px;
    padding: 8px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-word {
    width: min(220px, 52vw);
  }

  .nav-actions {
    width: auto;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .nav-actions .button-primary {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav-actions .button-social {
    display: none;
  }

  .footer-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 31, 61, 0.95) 0%, rgba(0, 47, 85, 0.86) 62%, rgba(0, 47, 85, 0.58) 100%),
      url("../img/mudanca-excelplanilhas-planilhalab.png") center bottom / cover no-repeat;
  }

  .hero-inner {
    padding: 72px 0 118px;
  }

  .intro-grid,
  .values-grid,
  .social-grid,
  .catalog-grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .store-panel {
    display: block;
    padding: 30px 22px;
  }

  .store-panel .section-actions {
    margin-top: 22px;
  }

  .catalog-logo {
    margin-left: 0;
    max-width: 460px;
    object-position: center left;
  }

  .loan-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 31, 61, 0.95) 0%, rgba(0, 47, 85, 0.86) 62%, rgba(0, 47, 85, 0.56) 100%),
      url("../img/controle-de-emprestimo/capa-planilha-controle-de-emprestimo.jpg") center bottom / cover no-repeat;
  }

  .loan-hero-inner {
    min-height: auto;
    padding: 68px 0 110px;
  }

  .loan-trust-grid,
  .loan-feature-grid,
  .loan-screen-grid,
  .loan-testimonial-grid,
  .loan-info-layout,
  .loan-mini-grid,
  .loan-recurrence-panel,
  .loan-seo-layout,
  .loan-showcase-layout,
  .loan-video-layout,
  .loan-offer-layout,
  .loan-audience-layout,
  .loan-faq-layout,
  .loan-final-layout {
    grid-template-columns: 1fr;
  }

  .loan-video-layout,
  .loan-faq-layout,
  .loan-showcase-layout {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .catalog-logo {
    max-width: 330px;
  }
}

@media (max-width: 640px) {
  .nav-link {
    display: none;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
  }

  .site-header .header-inner {
    width: min(1140px, calc(100% - 20px));
  }

  .site-header .brand-word {
    width: min(190px, 50vw);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .value-card,
  .social-card,
  .catalog-card {
    padding: 20px;
  }

  .footer-inner {
    display: block;
  }

  .footer-actions {
    margin-top: 22px;
  }

  .loan-price-line strong {
    width: 100%;
  }

  .loan-quick-proof {
    display: grid;
  }

  .loan-trust-grid {
    gap: 14px;
  }

  .loan-feature-card,
  .loan-testimonial-card {
    padding: 20px;
  }

  .loan-audience-list,
  .loan-offer-box,
  .loan-side-panel,
  .loan-recurrence-panel,
  .loan-seo-layout {
    padding: 22px;
  }
}
