:root {
  --color-bordo: #5A2230;
  --color-bordo-dark: #3B1721;
  --color-beige: #D8C7B5;
  --color-offwhite: #F7F3EE;
  --color-white: #FFFFFF;
  --color-graphite: #2E2E2E;
  --color-muted: #6E6863;
  --color-soft: #EEE5DC;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C4A;
  --shadow-soft: 0 22px 60px rgba(59, 23, 33, 0.12);
  --shadow-card: 0 16px 36px rgba(59, 23, 33, 0.09);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-graphite);
  background: var(--color-offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(90, 34, 48, 0.08), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(216, 199, 181, 0.36), transparent 28rem);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-bordo-dark);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.28rem, 5.7vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
  max-width: 900px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
  text-align: center;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-soft {
  padding: clamp(72px, 9vw, 118px) 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 229, 220, 0.48));
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  background: var(--color-bordo-dark);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90, 34, 48, 0.1);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-bordo);
  color: var(--color-offwhite);
  box-shadow: 0 14px 30px rgba(90, 34, 48, 0.18);
}

.brand-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.brand strong {
  display: block;
  color: var(--color-bordo-dark);
  line-height: 1;
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-bordo);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-bordo);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(90, 34, 48, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-bordo-dark);
  font-weight: 800;
}

.header-social:hover,
.header-social:focus-visible {
  transform: translateY(-2px);
  background: var(--color-white);
  border-color: rgba(90, 34, 48, 0.42);
  color: var(--color-bordo);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: var(--color-bordo);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(90, 34, 48, 0.16);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  min-height: 58px;
  background: linear-gradient(135deg, var(--color-bordo), var(--color-bordo-dark));
  color: var(--color-white);
  box-shadow: 0 18px 38px rgba(90, 34, 48, 0.22);
}

.btn-secondary {
  min-height: 58px;
  border-color: rgba(90, 34, 48, 0.22);
  color: var(--color-bordo-dark);
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-bordo);
  font-size: 0.79rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}

.hero-subtitle {
  max-width: 710px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.microcopy {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 34, 48, 0.12);
  color: var(--color-bordo-dark);
  font-weight: 750;
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  background: var(--color-beige);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(59, 23, 33, 0.72));
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

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

.hero-card strong {
  color: var(--color-bordo-dark);
  font-size: 1.1rem;
}

.hero-card span {
  color: var(--color-muted);
  margin-top: 3px;
}

.section-intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-top: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.info-card,
.solution-list article,
.indication-grid article,
.placeholder-card,
.faq-list details {
  border: 1px solid rgba(90, 34, 48, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.info-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.card-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-bordo);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-card p,
.solution-list p {
  color: var(--color-muted);
  margin: 12px 0 0;
}

.two-columns,
.split-media,
.authority-grid,
.trust-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.two-columns > *,
.split-media > *,
.authority-grid > *,
.trust-proof-grid > * {
  min-width: 0;
}

.align-start {
  align-items: start;
}

.two-columns p,
.split-media p,
.authority-grid p,
.trust-proof-grid p {
  color: var(--color-muted);
  font-size: 1.03rem;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-bordo);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.solution-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.solution-list article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-soft);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.media-frame.portrait img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.process-image {
  margin-top: 28px;
}

.process-image img {
  aspect-ratio: 16 / 12;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-muted);
  min-width: 0;
}

.check-list li::before {
  content: "";
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 5px;
  border-radius: 50%;
  background: rgba(90, 34, 48, 0.1);
  border: 4px solid var(--color-bordo);
}

.note {
  padding: 16px 18px;
  border-left: 4px solid var(--color-bordo);
  background: rgba(90, 34, 48, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lead {
  font-size: 1.13rem !important;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.credentials div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 34, 48, 0.1);
}

.credentials span,
.credentials strong {
  display: block;
}

.credentials span {
  color: var(--color-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-bottom: 6px;
}

.credentials strong {
  color: var(--color-bordo-dark);
  line-height: 1.25;
}

.indication-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.indication-grid article {
  border-radius: 999px;
  padding: 18px 22px;
  color: var(--color-bordo-dark);
  font-weight: 850;
  text-align: center;
}

.step-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(90, 34, 48, 0.1);
  box-shadow: var(--shadow-card);
}

.step-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-bordo);
  color: var(--color-white);
  font-weight: 900;
}

.step-list p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.compact {
  gap: 12px;
}


.trust-proof {
  position: relative;
}

.trust-proof .section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-top: 42px;
}

.testimonial-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 34, 48, 0.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(90, 34, 48, 0.96), rgba(59, 23, 33, 0.96));
  color: var(--color-white);
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.testimonial-card.featured p,
.testimonial-card.featured footer {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card footer {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--color-bordo-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-mark {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(90, 34, 48, 0.08);
  color: var(--color-bordo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.testimonial-card.featured .quote-mark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.trust-proof-followup {
  margin-top: 42px;
  align-items: stretch;
}

.placeholder-card {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.placeholder-card img {
  border-radius: 24px;
  overflow: hidden;
}

.placeholder-card p {
  margin: 14px 8px 0;
  font-size: 0.95rem;
}

.faq-list {
  max-width: 900px;
  margin-top: 40px;
}

.faq-list details {
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  color: var(--color-bordo-dark);
  font-weight: 900;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--color-bordo);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-muted);
}

.final-cta-box {
  text-align: center;
  padding: clamp(42px, 7vw, 80px);
  border-radius: 44px;
  background: linear-gradient(135deg, var(--color-bordo), var(--color-bordo-dark));
  color: var(--color-white);
  box-shadow: 0 24px 70px rgba(90, 34, 48, 0.26);
}

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

.final-cta-box p {
  max-width: 720px;
  margin: 18px auto 0;
  opacity: 0.88;
}

.final-cta-box .btn-primary {
  margin-top: 26px;
  background: var(--color-white);
  color: var(--color-bordo-dark);
  box-shadow: none;
}

.site-footer {
  padding: 58px 0 36px;
  background: var(--color-bordo-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
  gap: 34px;
}

.footer-brand strong,
.site-footer h2 {
  color: var(--color-white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 0.92rem;
  margin-top: 18px;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-weight: 800;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.34);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-page {
  min-height: calc(100vh - 240px);
}

.privacy-card {
  padding: clamp(28px, 6vw, 62px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(90, 34, 48, 0.1);
}

.privacy-card ul {
  color: var(--color-muted);
}

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

  .hero-grid,
  .two-columns,
  .split-media,
  .authority-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  
.trust-proof {
  position: relative;
}

.trust-proof .section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media img {
    min-height: 480px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner {
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-social {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .header-social .social-label {
    display: none;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding-top: 16px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.35rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
    border-radius: 30px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 20px;
  }

  .card-grid,
  .solution-list,
  .indication-grid,
  .credentials {
    grid-template-columns: 1fr;
  }

  .indication-grid article {
    border-radius: 18px;
  }

  .step-list li {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .step-list span {
    width: 44px;
    height: 44px;
  }

  .final-cta-box {
    border-radius: 30px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Ajuste v4: substitui o antigo placeholder de avaliações por um card visual real,
   já que os depoimentos foram movidos para a seção superior. */
.trust-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: var(--color-bordo-dark);
}

.trust-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.trust-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59, 23, 33, 0.08) 0%, rgba(59, 23, 33, 0.82) 100%);
  pointer-events: none;
}

.trust-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 199, 181, 0.55);
}

.trust-visual-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-bordo);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-visual-caption strong {
  display: block;
  color: var(--color-bordo-dark);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.trust-visual-caption p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .trust-visual-card,
  .trust-visual-card img {
    min-height: 440px;
  }

  .trust-visual-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }
}
