/* =========================================================
   SIMONY PINHEIRO — PSICÓLOGA
   Stylesheet Principal
   Autor: Desenvolvido com Claude Code
   Versão: 1.0
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
--------------------------------------------------------- */
:root {
  /* Cores Primárias */
  --primary:         #73316e;
  --primary-light:   #9b4d95;
  --primary-lighter: #c47fbe;
  --primary-pale:    #f4ecf3;
  --primary-dark:    #5a2457;
  --primary-darker:  #3e1940;

  /* Cores de Texto */
  --text-dark:   #1a0f19;
  --text-body:   #3d2b3c;
  --text-muted:  #7a6079;
  --text-light:  #b09ab0;

  /* Neutros */
  --white:        #ffffff;
  --off-white:    #faf8fa;
  --gray-light:   #f0eaf0;
  --border:       #e5d9e4;
  --border-light: #f0e8ef;

  /* Feedback */
  --success:  #2d8a4e;
  --error:    #c0392b;
  --whatsapp: #25D366;

  /* Tipografia */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 3px rgba(115,49,110,0.06);
  --shadow-sm: 0 2px 8px rgba(115,49,110,0.09);
  --shadow-md: 0 4px 20px rgba(115,49,110,0.13);
  --shadow-lg: 0 8px 40px rgba(115,49,110,0.18);
  --shadow-xl: 0 16px 64px rgba(115,49,110,0.22);

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Transições */
  --transition-fast:   0.15s ease;
  --transition:        0.3s ease;
  --transition-slow:   0.5s ease;

  /* Layout */
  --max-width:      1200px;
  --container-pad:  1.5rem;
  --section-py:     5rem;
  --header-h:       72px;
}

/* ---------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--primary-dark); }
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul, ol { list-style: none; }

address { font-style: normal; }

/* ---------------------------------------------------------
   3. TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { max-width: 68ch; }

strong { font-weight: 600; }

/* ---------------------------------------------------------
   4. LAYOUT UTILITIES
--------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-py);
}

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

/* ---------------------------------------------------------
   5. SECTION TYPOGRAPHY HELPERS
--------------------------------------------------------- */
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 0.3em 1em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__title--left {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.section__subtitle--left {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------
   6. BUTTONS
--------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Primary — tom mais claro/vibrante para maior destaque */
.btn--primary {
  background-color: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 4px 14px rgba(155,77,149,0.35);
}
.btn--primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115,49,110,0.45);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* White (for dark backgrounds) */
.btn--white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn--white:hover {
  background-color: var(--primary-pale);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline White (for dark backgrounds) */
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn--whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  padding: 0.9em 1.8em;
}
.btn--whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Sizes */
.btn--sm  { font-size: 0.85rem; padding: 0.65em 1.3em; }
.btn--lg  { font-size: 1rem;    padding: 1em 2.2em; }
.btn--block { width: 100%; }

/* Submit button loading state */
.btn--submit { position: relative; min-height: 52px; }
.btn--submit .btn-label  { display: inline-flex; align-items: center; gap: 0.5rem; }
.btn--submit .btn-loading { display: none; }
.btn--submit.loading .btn-label  { display: none; }
.btn--submit.loading .btn-loading { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---------------------------------------------------------
   7. HEADER
--------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color var(--transition), box-shadow var(--transition);
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled .logo__text strong,
.header.scrolled .logo__text span,
.header.scrolled .nav__link {
  color: var(--text-dark);
}

.header.scrolled .logo__icon {
  color: var(--primary);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  color: var(--white);
  transition: color var(--transition);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.logo__text span {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.logo--light .logo__icon,
.logo--light .logo__text strong { color: var(--white); }
.logo--light .logo__text span   { color: rgba(255,255,255,0.65); }

/* Desktop Nav */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.5em 0.85em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--white);
  background-color: rgba(255,255,255,0.12);
}

.nav__link.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.15);
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  padding: 0.6em 1.2em;
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 600;
}

.header__cta:hover {
  background-color: var(--primary-pale);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .header__cta {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.header.scrolled .header__cta:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.header.scrolled .hamburger__bar { background-color: var(--primary); }

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,10,29,0.55);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ---------------------------------------------------------
   8. HERO SECTION
--------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Decorative circles */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: rgba(255,255,255,0.06);
}

.hero__circle--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  background: rgba(255,255,255,0.03);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
  position: relative;
  z-index: 1;
}

.hero__content { color: var(--white); }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  padding: 0.35em 1.1em;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  max-width: 52ch;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.hero__trust svg { color: #f9c74f; flex-shrink: 0; }

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Hero photo — real image */
.hero__photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.2);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5em 0.9em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.hero__badge svg { color: var(--primary); }

.hero__badge--1 {
  top: 10%;
  right: -5%;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero__badge--2 {
  bottom: 12%;
  left: -8%;
  animation: floatBadge 3s ease-in-out infinite 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ---------------------------------------------------------
   9. STATS SECTION
--------------------------------------------------------- */
.stats {
  background: var(--white);
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.stats__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stats__item {
  text-align: center;
  padding: 0.5rem 2rem;
  min-width: 140px;
}

.stats__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background-color: var(--border);
}

/* ---------------------------------------------------------
   10. ABOUT SECTION
--------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

/* Visual side */
.about__visual {
  position: relative;
}

.about__photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--primary-pale);
  position: relative;
}

/* Real photo */
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__decoration {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--primary-pale);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
}

.about__cred-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}

.about__cred-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

.about__cred-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.about__cred-card span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Content side */
.about__text {
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.4;
}

.about__value svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------------------------------------------------------
   11. SERVICES SECTION
--------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  color: var(--white);
}

.service-card__title {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card__link:hover { gap: 0.7rem; }

/* ---------------------------------------------------------
   12. DIFFERENTIALS SECTION
--------------------------------------------------------- */
.differentials__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.differentials__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.differentials__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.differentials__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.differentials__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.differentials__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.65;
}

/* Visual — imagem com card sobreposto */
.differentials__visual {
  position: relative;
}

.differentials__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
}

.differentials__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

/* Card sobreposto no canto inferior direito */
.differentials__overlay-card {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

.differentials__overlay-card p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: none;
}

.differentials__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.differentials__chip {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.28);
  white-space: nowrap;
}

/* ---------------------------------------------------------
   13. AUDIENCE SECTION
--------------------------------------------------------- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-lighter);
}

.audience-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.audience-card:hover .audience-card__icon {
  background: var(--primary);
  color: var(--white);
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ---------------------------------------------------------
   14. CTA BANNER
--------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  overflow: hidden;
  padding-block: 5rem;
}

.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }

.cta-banner__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-banner__circle--1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
}

.cta-banner__circle--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  max-width: 55ch;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   15. CONTACT SECTION
--------------------------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact__detail strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact__detail a,
.contact__detail address {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  text-decoration: none;
}

.contact__detail a:hover { color: var(--primary); }

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: none;
}

/* Form Fields */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.required {
  color: var(--error);
  margin-left: 1px;
}

.form-input {
  width: 100%;
  padding: 0.8em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--text-light); }

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(115,49,110,0.1);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-hint {
  display: block;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
  max-width: none;
}

.form-privacy svg { color: var(--primary); flex-shrink: 0; }

/* ---------------------------------------------------------
   16. FOOTER
--------------------------------------------------------- */
.footer {
  background-color: var(--primary-darker);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__social:hover { color: var(--white); }

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer__nav ul,
.footer__services ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__nav li a,
.footer__contact li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__nav li a:hover,
.footer__contact li a:hover { color: var(--white); }

.footer__services li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__bottom {
  padding-block: 1.5rem;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: none;
}

/* ---------------------------------------------------------
   17. WHATSAPP FLOAT BUTTON
--------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: all var(--transition);
  text-decoration: none;
}

.wa-float:hover {
  background-color: #1ebe5d;
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------------------------------------------------------
   18. ANIMATIONS — Scroll-triggered
--------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Spinner */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------------------------------------------------------
   19. RESPONSIVE — Tablet (max 1024px)
--------------------------------------------------------- */
@media (max-width: 1024px) {

  :root {
    --section-py: 4rem;
  }

  .hero__inner {
    gap: 3rem;
  }

  .about__inner,
  .differentials__inner,
  .contact__inner {
    gap: 3rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .differentials__overlay-card {
    max-width: 240px;
    padding: 1rem 1.25rem;
  }

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

  .about__cred-card {
    right: -12px;
    bottom: -12px;
    min-width: 180px;
  }
}

/* ---------------------------------------------------------
   20. RESPONSIVE — Mobile (max 768px)
--------------------------------------------------------- */
@media (max-width: 768px) {

  :root {
    --section-py: 3.5rem;
    --container-pad: 1.25rem;
    --header-h: 64px;
  }

  /* Header */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1001;
    padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
    overflow-y: auto;
  }

  .nav.open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav__link {
    color: var(--text-body);
    font-size: 1rem;
    padding: 0.75em 1em;
    border-radius: var(--radius-md);
    display: block;
  }

  .nav__link:hover,
  .nav__link.active {
    background: var(--primary-pale);
    color: var(--primary);
  }

  .hamburger { display: flex; }
  .header__cta { display: none; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-block: 4rem 3rem;
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__subtitle { margin-inline: auto; }

  .hero__actions {
    justify-content: center;
  }

  /* Hero visual: foto aparece no mobile, menor e centralizada */
  .hero__visual {
    display: flex;
    justify-content: center;
  }

  .hero__photo-wrap {
    max-width: 260px;
    aspect-ratio: 3/4;
  }

  /* Badges visíveis no mobile, menores */
  .hero__badge {
    font-size: 0.68rem;
    padding: 0.35em 0.7em;
    gap: 0.25rem;
  }

  .hero__badge svg { width: 14px; height: 14px; }

  .hero__badge--1 { top: 6%; right: -2%; }
  .hero__badge--2 { bottom: 8%; left: -2%; }

  /* Stats — grid 2x2 no mobile */
  .stats__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats__divider { display: none; }

  .stats__item {
    padding: 1.25rem 0.75rem;
    border: 1px solid var(--border-light);
  }

  .stats__number { font-size: 1.5rem; }
  .stats__label  { font-size: 0.78rem; }

  /* About — foto aparece acima do texto */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__visual {
    order: -1;
    display: block;
  }

  .about__photo-wrap {
    aspect-ratio: 3/2;
    max-height: 320px;
  }

  .about__photo {
    object-position: center 20%;
  }

  .about__content { order: 1; }

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

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Differentials */
  .differentials__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .differentials__visual { order: -1; }

  /* Overlay card: centralizado abaixo da imagem no mobile */
  .differentials__img-wrap { overflow: visible; }

  .differentials__overlay-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  /* Audience */
  .audience__grid {
    grid-template-columns: 1fr;
  }

  /* CTA Banner */
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__form-wrap {
    padding: 1.75rem 1.25rem;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand { grid-column: auto; }

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp float */
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  /* Botões do hero: mesma linha, não forçar largura total */
  .hero__actions { flex-wrap: nowrap; justify-content: center; }
  .hero__actions .btn { flex: 0 1 auto; }

  /* About cred card */
  .about__cred-card { display: none; }
}

/* ---------------------------------------------------------
   21. RESPONSIVE — Small Mobile (max 480px)
--------------------------------------------------------- */
@media (max-width: 480px) {

  :root {
    --container-pad: 1rem;
  }

  /* Botões hero ainda na mesma linha em telas pequenas */
  .hero__actions { flex-wrap: wrap; gap: 0.6rem; }
  .hero__actions .btn { font-size: 0.82rem; padding: 0.75em 1.2em; }

  .stats__item { padding: 0.75rem 0.5rem; }
  .stats__number { font-size: 1.3rem; }

  .contact__form-wrap { padding: 1.5rem 1rem; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
}

/* ---------------------------------------------------------
   22. ACCESSIBILITY — Reduced motion
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------
   23. PRINT
--------------------------------------------------------- */
@media print {
  .header, .wa-float, .cta-banner, .hero__badge { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; }
}
