/* ==========================================================================
   Clarice Hennemann — Tratamento de Ansiedade
   Landing page de conversão (tráfego pago / Google Ads)
   Base visual compartilhada com as LPs hipnoterapia-ansiedade e
   hipnose-ansiedade.
   ========================================================================== */

/* -------------------------------- Tokens -------------------------------- */
:root {
  --purple-950: #1e0740;
  --purple-900: #2a0855;
  --purple-800: #38215f;
  --purple-700: #4b0e70;
  --purple-600: #6b3fa0;
  --purple-500: #8a5cbb;
  --purple-200: #e4d7ec;
  --purple-100: #f5eff7;
  --green-500: #34b268;
  --green-600: #299655;
  --ink-900: #221433;
  --ink-700: #40354f;
  --ink-600: #5b5568;
  --white: #ffffff;

  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --container-w: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 10px rgba(34, 20, 51, 0.08);
  --shadow-md: 0 12px 32px rgba(34, 20, 51, 0.14);
  --shadow-lg: 0 24px 60px rgba(30, 7, 64, 0.22);

  --header-h: 76px;
}

/* -------------------------------- Reset --------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: var(--ink-600);
}

button {
  font-family: inherit;
  cursor: pointer;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* Evita "grid blowout": sem isso, imagens dentro de itens de grid podem
   forçar a track a exceder o espaço disponível e causar overflow horizontal. */
.hero-inner > *,
.signs-layout > *,
.hipno-card > *,
.about-layout > *,
.final-cta-layout > * {
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------ Section base ----------------------------- */
.section {
  padding: 64px 0;
}

@media (min-width: 900px) {
  .section {
    padding: 96px 0;
  }
}

.section--alt {
  background: var(--purple-100);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
}

.section-head p {
  font-size: 1.05rem;
}

.section-head--left {
  text-align: left;
  margin: 0 0 28px;
}

.icon-inline {
  display: inline;
  vertical-align: -1px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 12px;
}

/* -------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  text-align: center;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(52, 178, 104, 0.35);
}

.btn-primary:hover {
  background: var(--green-600);
  box-shadow: 0 14px 30px rgba(52, 178, 104, 0.42);
}

.btn-outline {
  background: transparent;
  border-color: var(--purple-600);
  color: var(--purple-700);
}

.btn-outline:hover {
  background: var(--purple-600);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.link-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: inherit;
}

.link-whatsapp .icon {
  color: var(--green-500);
  flex-shrink: 0;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-lockup img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.logo-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--purple-900);
  letter-spacing: 0.01em;
}

.logo-text small {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple-500);
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--purple-700);
}

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

.header-actions .btn-primary {
  display: none;
}

.hamburger {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}

.hamburger:hover {
  background: var(--purple-100);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--purple-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 55;
  overflow-y: auto;
  padding: 28px 20px 40px;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 6px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-900);
  border-bottom: 1px solid var(--purple-100);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-actions .link-whatsapp {
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .header-actions .btn-primary {
    display: inline-flex;
  }
  .hamburger {
    display: none;
  }
  .logo-text strong {
    font-size: 1rem;
  }
}

/* --------------------------------- Hero ---------------------------------- */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, var(--purple-700) 0%, var(--purple-900) 55%, var(--purple-950) 100%);
  color: var(--white);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 90% 15%, rgba(138, 92, 187, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 1.5rem + 2.4vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 30px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.94);
}

.hero-checklist .icon {
  width: 20px;
  height: 20px;
  color: var(--green-500);
  margin-top: 1px;
  flex-shrink: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero .link-whatsapp {
  color: var(--white);
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1672 / 941;
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 900px) {
  .hero {
    padding: 64px 0 80px;
  }
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

/* ---------------------------- Sinais de ansiedade ------------------------- */
.signs-layout {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 44px;
}

.signs-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1672 / 941;
}

.signs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signs-text .eyebrow {
  color: var(--purple-600);
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sign-card {
  background: var(--purple-100);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sign-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.sign-card .icon {
  width: 30px;
  height: 30px;
  color: var(--purple-600);
  margin: 0 auto 12px;
}

.sign-card span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-900);
}

@media (min-width: 900px) {
  .signs-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
  .signs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ------------------------------ O que é hipnose terapêutica ---------------------- */
.hipno-card {
  display: grid;
  gap: 32px;
  align-items: center;
  background: var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hipno-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1672 / 941;
}

.hipno-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hipno-text h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
}

.hipno-note {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 18px 0 24px;
  box-shadow: var(--shadow-sm);
}

.hipno-note .icon {
  width: 22px;
  height: 22px;
  color: var(--purple-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.hipno-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-700);
}

@media (min-width: 900px) {
  .hipno-card {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 48px;
  }
}

/* ------------------------------ Hipnose e ansiedade (motivos) --------------------- */
.reasons-grid {
  display: grid;
  gap: 20px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.reason-card .icon {
  width: 30px;
  height: 30px;
  color: var(--purple-600);
  margin-bottom: 14px;
}

.reason-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.reason-card p {
  font-size: 0.92rem;
  margin: 0;
}

@media (min-width: 900px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ------------------------------ Como funciona ------------------------------ */
.process {
  background: linear-gradient(160deg, var(--purple-800) 0%, var(--purple-950) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
}

.process .section-head h2,
.process .section-head p {
  color: var(--white);
}

.process .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.step h3 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 900px) {
  .process {
    padding: 56px 48px;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .step::after {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(50% + 40px);
    width: calc(100% - 56px);
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
  }
  .step:last-child::after {
    display: none;
  }
}

/* --------------------------------- Sobre ---------------------------------- */
.about-layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1122 / 1402;
  max-width: 420px;
  margin: 0 auto;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text .eyebrow {
  color: var(--purple-600);
}

.about-modalities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.about-modalities span {
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }
  .about-media {
    margin: 0;
  }
}

/* ------------------------------ Benefícios --------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.benefit-card .icon {
  width: 30px;
  height: 30px;
  color: var(--green-600);
  margin: 0 auto 12px;
}

.benefit-card span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.benefits-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-600);
  max-width: 60ch;
  margin: 28px auto 0;
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------ Depoimentos --------------------------------- */
.testimonials-featured {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 0.96rem;
  color: var(--ink-900);
  line-height: 1.55;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--purple-700);
}

/* Cards em destaque: mencionam diretamente ansiedade / hipnoterapia */
.testimonial-card--featured {
  background: var(--purple-100);
  border-color: var(--purple-200);
  position: relative;
  padding-left: 26px;
}

.testimonial-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--purple-600);
}

.testimonial-card--featured blockquote {
  font-size: 1.05rem;
  font-weight: 500;
}

/* Card longo com leitura expansível (Celso Candido) */
.testimonial-expand summary {
  list-style: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.testimonial-expand summary::-webkit-details-marker {
  display: none;
}

.testimonial-excerpt {
  display: block;
  font-size: 0.96rem;
  color: var(--ink-900);
  line-height: 1.55;
  margin-bottom: 8px;
}

.testimonial-expand[open] summary .testimonial-excerpt {
  display: none;
}

.testimonial-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--purple-700);
}

.testimonial-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.testimonial-expand[open] .testimonial-toggle::after {
  transform: rotate(-135deg);
}

.testimonial-toggle .label-open {
  display: none;
}

.testimonial-expand[open] .testimonial-toggle .label-open {
  display: inline;
}

.testimonial-expand[open] .testimonial-toggle .label-closed {
  display: none;
}

.testimonial-full {
  margin: 0 0 16px;
  font-size: 0.96rem;
  color: var(--ink-900);
  line-height: 1.55;
}

.testimonials-footer {
  text-align: center;
  margin-top: 28px;
}

.testimonials-footer a {
  font-weight: 600;
  color: var(--purple-700);
  border-bottom: 1px solid var(--purple-500);
  padding-bottom: 2px;
}

@media (min-width: 700px) {
  .testimonials-featured,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    margin: 0 auto;
  }
}

/* ------------------------------ FAQ + CTA box -------------------------------- */
.faq-layout {
  display: grid;
  gap: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-md);
  padding: 4px 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-900);
}

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

.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-100);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--purple-700);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::before {
  width: 10px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.15s ease;
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 0 20px;
  margin: 0;
  color: var(--ink-600);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-cta {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.faq-cta h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}

.faq-cta .link-whatsapp {
  color: var(--white);
  justify-content: center;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }
}

/* ------------------------------ Localização / Instagram ---------------------- */
.info-grid {
  display: grid;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-700);
}

.info-card-icon .icon {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.info-card address,
.info-card p {
  font-style: normal;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

.info-card .btn {
  align-self: flex-start;
  margin-top: 6px;
}

@media (min-width: 700px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------- CTA final --------------------------------- */
.final-cta {
  background: radial-gradient(120% 140% at 85% 100%, var(--purple-700) 0%, var(--purple-900) 55%, var(--purple-950) 100%);
  color: var(--white);
  overflow: hidden;
}

.final-cta-layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.final-cta-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1672 / 941;
  order: -1;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 48ch;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.final-cta .link-whatsapp {
  color: var(--white);
}

@media (min-width: 900px) {
  .final-cta-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .final-cta-media {
    order: 0;
  }
}

/* ---------------------------------- Footer ------------------------------------ */
.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 100px;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 28px;
  }
}

.footer-top {
  display: grid;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.footer-brand-text small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-tagline {
  font-size: 0.9rem;
  max-width: 42ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ----------------------------------- Modal -------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 7, 64, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--purple-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-800);
}

.modal-close .icon {
  width: 18px;
  height: 18px;
}

.modal-close:hover {
  background: var(--purple-200);
}

.modal-header {
  margin-bottom: 22px;
  padding-right: 30px;
}

.modal-header .eyebrow {
  color: var(--purple-600);
}

.modal-header h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.92rem;
  margin: 0;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--purple-200);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.15);
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1.2em;
  margin: -4px 0 12px;
}

.form-privacy {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-600);
  margin-top: 16px;
  line-height: 1.5;
}

.form-privacy .icon {
  width: 16px;
  height: 16px;
  color: var(--purple-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.btn[disabled],
.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* Foco visível global para acessibilidade de teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--purple-500);
  outline-offset: 2px;
}

body.modal-open {
  overflow: hidden;
}

/* -------------------------------- WhatsApp flutuante ------------------------------ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(52, 178, 104, 0.45);
  z-index: 50;
  animation: float-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float .icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-float:hover {
  background: var(--green-600);
}

@keyframes float-pulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(52, 178, 104, 0.45);
  }
  50% {
    box-shadow: 0 10px 26px rgba(52, 178, 104, 0.45), 0 0 0 8px rgba(52, 178, 104, 0.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media (min-width: 900px) {
  .whatsapp-float {
    right: 32px;
    bottom: 32px;
  }
}
