@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sora.woff2') format('woff2');
}

/* ============================================
   TOKENS — Design System
   ============================================ */
:root {
  /* Cores — paleta primária */
  --color-primary-900: #562B50;
  --color-primary-800: #6a3863;
  --color-primary-700: #7b4874;
  --color-primary-600: #8f5a88;

  /* Cores — mint (Botão) */
  --color-mint-300: #8CB1E9;
  --color-mint-200: #e0b085;
  --color-mint-100: #8CB1E9;

  /* Neutros */
  --color-white: #ffffff;
  --color-neutral-50: #FFFFF4;
  --color-neutral-100: #F7ECDF;
  --color-neutral-150: #f1e5d5;
  --color-neutral-300: #8CB1E9;
  --color-neutral-500: #a5a5a5;
  --color-neutral-700: #4e4b66;
  --color-neutral-900: #4A4F5C;
  --color-black: #4A4F5C;

  /* Backgrounds semânticos */
  --bg-default: #ffffff;
  --bg-subtle: #FFFFF4;
  --bg-muted: #F7ECDF;
  --bg-mint: #f2ceae;
  --bg-dark: #562B50;
  --bg-dark-alt: #4d2d22;

  /* Textos semânticos */
  --text-on-dark: #F7ECDF;
  --text-on-light: #562B50;
  --text-muted: #4e4b66;
  --text-heading: #562B50;
  --text-body: #4A4F5C;

  /* Bordas */
  --border-subtle: #8CB1E9;
  --border-on-dark: rgba(140, 177, 233, 0.35);
  --border-mint: #8CB1E9;

  /* Gradientes / overlays */
  --gradient-fade-to-dark: linear-gradient(180deg, rgba(86, 43, 80, 0) 0%, #562B50 100%);
  --overlay-image-bottom: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.87%, rgba(0, 0, 0, 0.45) 100%);

  /* Pattern listrado diagonal */
  --pattern-stripes: repeating-linear-gradient(135deg,
      transparent 0,
      transparent 7px,
      #e5e5e5 9px,
      #e5e5e5 9px);

  /* Tipografia — famílias */
  --font-display: "Poppins", sans-serif;
  --font-body: "Sora", sans-serif;

  /* Tipografia — pesos */
  --fw-regular: 400;
  --fw-medium: 400;
  --fw-semibold: 400;
  --fw-bold: 400;

  /* Tipografia — sizes fluidos (clamp) */
  --text-display: clamp(2.25rem, 1.4rem + 4.2vw, 4.5rem);
  /* 36 → 72 */
  --text-h1: clamp(1.875rem, 1.25rem + 2.8vw, 3rem);
  /* 30 → 48 */
  --text-h2: clamp(1.725rem, 1.25rem + 2.4vw, 2.45rem);
  /* 26 → 36 */
  --text-h3: clamp(1.225rem, 1.15rem + 0.7vw, 1.575rem);
  /* 18 → 22 */
  --text-lead: clamp(0.9rem, 0.9rem + 0.3vw, 1rem);
  /* 16 → 18 */
  --text-body-fs: 1rem;
  /* 16 */
  --text-small: 0.9rem;
  /* 16 */
  --text-caption: 0.75rem;
  /* 12 */

  /* Espaçamento (base 8) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 30px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --space-12: 128px;

  /* Ritmo de seção */
  --space-section-y: clamp(4rem, 3rem + 4vw, 7.5rem);
  /* 64 → 120 */
  --space-section-x-desktop: 80px;
  --space-section-x-tablet: 40px;
  --space-section-x-mobile: 24px;

  /* Containers */
  --container-full: 1440px;
  --container-default: 1280px;
  --container-narrow: 800px;
  --container-text: 676px;
  --container-tight: 460px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --radius-pill: 100px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-subtle: 0 1px 2px rgba(5, 25, 46, 0.04), 0 2px 8px rgba(5, 25, 46, 0.04);
  --shadow-card: 0 1px 2px rgba(5, 25, 46, 0.06), 0 8px 24px rgba(5, 25, 46, 0.08);
  --shadow-elevated: 0 12px 40px rgba(5, 25, 46, 0.14);
  --shadow-hero: 0 30px 80px rgba(5, 25, 46, 0.35);

  /* Botão */
  --btn-height: 54px;
  --btn-radius: 100px;
  --btn-font-size: 14px;
  --btn-tracking: -0.02em;

  /* Transições */
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --easing-default: cubic-bezier(0.44, 0, 0.56, 1);
  --transition-base: all var(--duration-fast) var(--easing-default);

  /* Navbar */
  --navbar-h: 72px;
}

/* ============================================
   INITIAL STATES — GSAP reveal (FOUC-safe)
   ============================================ */
html.gsap-ready .hero__eyebrow,
html.gsap-ready .hero__title,
html.gsap-ready .hero__sub,
html.gsap-ready .hero__ctas,
html.gsap-ready .hero__media,
html.gsap-ready .hero__accent,
html.gsap-ready .section-head>*,
html.gsap-ready .pain__list li,
html.gsap-ready .pain__close,
html.gsap-ready .about__media,
html.gsap-ready .about__copy>*,
html.gsap-ready .service-card,
html.gsap-ready .step,
html.gsap-ready .testimonial,
html.gsap-ready .social__stats,
html.gsap-ready .diff-card,
html.gsap-ready .faq-item,
html.gsap-ready .result-card,
html.gsap-ready .results__media,
html.gsap-ready .results__footer,
html.gsap-ready .stripes-divider {
  visibility: hidden;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-fs);
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

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

::selection {
  background: var(--color-mint-300);
  color: var(--color-primary-900);
}

/* ============================================
   TIPOGRAFIA — estilos base
   ============================================ */
.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-heading);
  text-wrap: balance;
}

.h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  text-wrap: balance;
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--text-heading);
  text-wrap: balance;
}

.h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  text-wrap: balance;
}

.lead,
p {
  text-wrap: pretty;
}

.lead {
  font-size: var(--text-lead);
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--text-muted);
}

.eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-head .eyebrow,
.final .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::before,
.final .eyebrow::before {
  display: none;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--color-mint-300);
}

em,
i,
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
}

.display em,
.h1 em,
.h2 em,
.h3 em {
  color: #8CB1E9;
}

/* ============================================
   LAYOUT — containers + seções
   ============================================ */
.container {
  width: 100%;
  max-width: calc(var(--container-default) + var(--space-section-x-desktop) * 2);
  margin: 0 auto;
  padding-left: var(--space-section-x-desktop);
  padding-right: var(--space-section-x-desktop);
}

.container--narrow {
  max-width: calc(var(--container-narrow) + var(--space-section-x-desktop) * 2);
}

.container--text {
  max-width: calc(var(--container-text) + var(--space-section-x-desktop) * 2);
  text-align: center;
}

.section {
  padding-top: var(--space-section-y);
  padding-bottom: var(--space-section-y);
  position: relative;
}

.section--muted {
  background: var(--bg-subtle);
}

.section--white {
  background: #ffffff !important;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--color-mint-300);
}

.section--dark .h1,
.section--dark .h2,
.section--dark .h3,
.section--dark .display {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-head {
  max-width: 100%;
  margin: 0 auto var(--space-9);
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: var(--space-4);
}

.section-head .h1 {
  margin-bottom: var(--space-4);
}

/* ============================================
   COMPONENTES — Botão
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  height: var(--btn-height);
  padding: 0 var(--space-7);
  min-width: 44px;
  background: #812374;
  color: #ffffff;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--btn-tracking);
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  will-change: transform;
}

.btn:hover {
  background: #A82C97;
  transform: none;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-mint-300);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--color-mint-300);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--color-mint-300);
  outline-offset: 2px;
}

.btn .btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--lg {
  height: 60px;
  padding: 0 var(--space-8);
  font-size: 15px;
}

.btn--mint {
  background: #812374;
  color: #ffffff;
}

.btn--mint:hover {
  background: #A82C97;
  color: #ffffff;
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(140, 177, 233, 0.55);
}

.btn--ghost-light:hover {
  background: #A82C97;
  color: #ffffff;
  border-color: #A82C97;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-900);
  border: 1px solid var(--color-mint-300);
}

.btn--outline:hover {
  background: #A82C97;
  color: var(--color-white);
}

/* ============================================
   COMPONENTES — Divisor listrado
   ============================================ */
.stripes-divider {
  height: 56px;
  background-image: var(--pattern-stripes);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0px;
  background: rgba(247, 236, 223, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140, 177, 233, 0.35);
  transition: height 400ms var(--easing-default), background 400ms var(--easing-default);
}

.navbar--scrolled {
  height: 60px;
  background: rgba(86, 43, 80, 0.95);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-primary-900);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar__logo-mark {
  width: 28px;
  height: 28px;
  color: var(--color-primary-900);
}

.navbar__menu {
  display: flex;
  gap: var(--space-8);
}

.navbar__menu a {
  color: rgba(86, 43, 80, 0.75);
  font-size: var(--text-small);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  transition: color var(--duration-fast) var(--easing-default);
}

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

.navbar__cta {
  height: 44px;
  padding: 0 var(--space-5);
  font-size: 13px;
  background: #812374;
  color: #ffffff;
}

.navbar__cta:hover {
  background: #A82C97;
  color: #ffffff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  padding-bottom: var(--space-12);
  background-color: #F7ECDF;
  background-image: url('../img/hero-background.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--color-primary-900);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero__logo-mobile {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__copy {
  max-width: 620px;
  margin-top: 30px;
}

.hero__eyebrow {
  margin-bottom: var(--space-5);
}

.hero__title {
  color: var(--color-primary-900);
  margin-bottom: var(--space-6);
}

.hero__title em {
  color: var(--color-mint-300);
}

.hero__sub {
  color: #4A4F5C;
  margin-bottom: var(--space-8);
  max-width: 54ch;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(86, 43, 80, 0.65);
  font-size: var(--text-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-dot {
  width: 8px;
  height: 8px;
  background: #8CB1E9;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(140, 177, 233, 0.2);
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background: var(--color-primary-800);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-image-bottom);
  pointer-events: none;
}

/* Accent card glass sobre a hero image */
.hero__accent {
  position: absolute;
  left: -36px;
  bottom: 48px;
  width: 220px;
  padding: var(--space-5) var(--space-6);
  background: rgba(86, 43, 80, 0.55);
  border: 1px solid rgba(140, 177, 233, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  box-shadow: var(--shadow-elevated);
}

.hero__accent strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-mint-300);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hero__accent span {
  font-size: var(--text-caption);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: #4d2d22;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  overflow: hidden;
  padding: var(--space-5) 0;
  color: var(--color-mint-300);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: var(--space-8);
  align-items: center;
  animation: marquee-scroll 38s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.marquee__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-mint-300);
  flex-shrink: 0;
}

.marquee__sep {
  color: rgba(242, 206, 174, 0.3);
  font-size: 14px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

/* ============================================
   PAIN
   ============================================ */
.pain {
  background: var(--bg-default);
}

.pain__head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto var(--space-10);
}

.pain__head .h1 {
  text-wrap: balance;
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 730px;
  margin: 0 auto var(--space-9);
}

.pain__list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  line-height: 1.4;
  padding: var(--space-6) var(--space-7);
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  color: var(--text-heading);
  border-left: 2px solid var(--color-mint-300);
  letter-spacing: -0.015em;
}

.pain__close {
  text-align: center;
  font-size: var(--text-lead);
  color: var(--text-muted);
  max-width: 730px;
  margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: #fff;
}

.about__grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: var(--space-9);
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.about__media::before {
  content: "";
  position: absolute;
  inset: -20px -20px 40px 40px;
  background-image: var(--pattern-stripes);
  z-index: -1;
  border-radius: var(--radius-2xl);
}

.about__copy {
  max-width: 600px;
  min-width: 0;
  flex: 1 1 auto;
}

.about__eyebrow {
  margin-bottom: var(--space-5);
}

.about__title {
  margin-bottom: var(--space-6);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  color: var(--text-muted);
  font-size: var(--text-lead);
  line-height: 1.65;
  margin-bottom: var(--space-7);
}

.about__seals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.about__seal {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-subtle);
  border: 1px solid var(--color-mint-100);
  border-radius: var(--radius-pill);
  font-size: var(--text-small);
  font-weight: var(--fw-medium);
  color: var(--color-primary-900);
  letter-spacing: -0.01em;
}

.about__seal svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary-600);
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  margin-bottom: var(--space-9);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-muted);
  overflow: hidden;
}

.service-card__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--easing-default);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
}

.service-card__body h3 {
  color: var(--text-heading);
}

.service-card__body p {
  color: var(--text-muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.services__cta {
  text-align: center;
}

/* ============================================
   METHOD / TIMELINE
   ============================================ */
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-9);
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.method__steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right,
      var(--color-mint-100) 0,
      var(--color-mint-100) 6px,
      transparent 6px,
      transparent 12px);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.step__num {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-900);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--fw-regular);
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 8px var(--bg-subtle);
}

.step h3 {
  color: var(--text-heading);
  margin-bottom: var(--space-1);
}

.step p {
  color: var(--text-muted);
  font-size: var(--text-small);
  line-height: 1.6;
  max-width: 280px;
}

.method__cta {
  text-align: center;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.testimonial {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}

.testimonial::before {
  content: "";
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--color-mint-300);
  position: absolute;
  top: 16px;
  right: 24px;
  opacity: 0.45;
  font-style: italic;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  color: #4A4F5C;
  font-style: italic;
  letter-spacing: -0.01em;
  flex-grow: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--fw-semibold);
  font-style: normal;
  color: #4A4F5C;
}

.testimonial__author span {
  display: block;
  font-size: var(--text-caption);
  color: #4A4F5C;
  font-style: normal;
}

.social__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8) var(--space-9);
  background: var(--color-primary-900);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-right: 1px solid rgba(140, 177, 233, 0.35);
  padding-right: var(--space-6);
}

.stat:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 2.75rem);
  font-weight: var(--fw-regular);
  color: var(--color-mint-300);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat span {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.results__head p {
  margin-top: var(--space-7);
}

.results__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  margin-bottom: var(--space-9);
}

.results__cards {
  display: grid;
  grid-template-columns: 420px 420px;
  justify-content: center;
  gap: var(--space-5);
}

.result-card {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-subtle);
}

.result-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-card--before h3 {
  color: #b33424;
}

.result-card--after h3 {
  color: #1c6b3e;
}

.result-card p {
  font-size: var(--text-small);
  line-height: 1.5;
  color: var(--text-muted);
}

.results__media {
  margin: 0 auto;
  max-width: max-content;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-muted);
}

.results__media img {
  width: 100%;
  height: auto;
  display: block;
}

.results__footer {
  text-align: center;
}

.results__footer p {
  margin-bottom: var(--space-7);
  font-weight: 500;
  color: var(--text-heading);
  font-size: var(--text-lead);
}

@media (max-width: 768px) {
  .results__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4); /* Diminuindo espaçamento geral */
  }

  /* Fazemos o container de cards 'desaparecer' estruturalmente 
     para que os cards internos virem filhos diretos do grid principal 
     e aceitem a propriedade 'order' */
  .results__cards {
    display: contents;
  }

  .result-card--before {
    order: 1;
  }

  .results__media {
    order: 2;
  }

  .result-card--after {
    order: 3;
    margin-bottom: 0;
  }

  .results__footer {
    order: 4;
  }

  .result-card {
    max-width: 100%;
    padding: var(--space-6);
  }
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.diff-card {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: var(--transition-base);
}

.diff-card:hover {
  border-color: var(--color-mint-300);
  box-shadow: var(--shadow-card);
}

.diff-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8CB1E9;
  border-radius: var(--radius-xl);
  color: #fff;
}

.diff-card__icon svg {
  width: 30px;
  height: 30px;
}

.diff-card h3 {
  color: var(--text-heading);
  font-size: 19px;
}

.diff-card p {
  color: var(--text-muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-7);
  transition: var(--transition-base);
}

.faq-item[open] {
  background: var(--color-white);
  border-color: var(--color-mint-100);
  box-shadow: var(--shadow-subtle);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

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

.faq-item summary::marker {
  content: "";
}

.faq-item summary h3 {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  color: var(--text-heading);
}

.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23562B50' stroke-width='2' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--duration-fast) var(--easing-default);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-size: var(--text-body-fs);
  line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(242, 206, 174, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(77, 45, 34, 0.4) 0%, transparent 60%);
  z-index: -1;
}

.final .h1 {
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lead);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final .btn {
  margin-bottom: var(--space-5);
}

.final__micro {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary-900);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-11) 0 var(--space-7);
  font-size: var(--text-small);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-9);
  padding-bottom: var(--space-9);
  border-bottom: 1px solid var(--border-on-dark);
  margin-bottom: var(--space-6);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-white);
  font-weight: var(--fw-regular);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.footer__col p,
.footer__col li {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__col a:hover {
  color: var(--color-mint-300);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform var(--duration-base) var(--easing-default);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   RESPONSIVO — Tablet (≤1199.98px)
   ============================================ */
@media (max-width: 1199.98px) {
  .container {
    padding-left: var(--space-section-x-tablet);
    padding-right: var(--space-section-x-tablet);
  }

  .hero__grid {
    gap: var(--space-9);
  }

  .hero__accent {
    left: -24px;
    width: 200px;
  }

  .about__grid {
    gap: var(--space-9);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

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

  .social__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .social__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-7) var(--space-8);
    gap: var(--space-7);
  }

  .stat:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

/* ============================================
   RESPONSIVO — Mobile (≤809.98px)
   ============================================ */
@media (max-width: 809.98px) {
  .container {
    padding-left: var(--space-section-x-mobile);
    padding-right: var(--space-section-x-mobile);
  }

  /* Navbar escondida no mobile */
  .navbar {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--space-11) + 100px);
    padding-bottom: var(--space-11);
    background-image: url('../img/mobile_hero.webp');
    background-position: top center;
    background-size: contain;
  }

  .hero__logo-mobile {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary-900);
    margin-top: 80px;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
  }

  .hero__logo-mobile svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary-900);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-9);
    padding-top: 0;
    margin-top: -30px;
  }

  .hero__copy {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero__sub {
    max-width: 100%;
    margin-bottom: var(--space-7);
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__media {
    max-width: 100%;
    justify-self: stretch;
    aspect-ratio: 4 / 5;
  }

  .hero__accent {
    left: 16px;
    bottom: 16px;
    width: 180px;
    padding: var(--space-4) var(--space-5);
  }

  .hero__accent strong {
    font-size: 26px;
  }

  /* Marquee */
  .marquee {
    padding: var(--space-4) 0;
  }

  .marquee__item {
    font-size: 17px;
  }

  /* Pain */
  .pain__list {
    gap: var(--space-3);
  }

  .pain__list li {
    padding: var(--space-5) var(--space-6);
    font-size: 17px;
  }

  /* About */
  .about__grid {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-8);
  }

  .about__media {
    max-width: 100%;
  }

  .about__media::before {
    inset: -12px -12px 24px 24px;
  }

  .about__copy {
    max-width: 100%;
    flex-shrink: 1;
  }

  .about__seals {
    gap: var(--space-2);
  }

  .about .btn {
    width: 100%;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .service-card__body {
    padding: var(--space-6);
  }

  .services__cta .btn,
  .method__cta .btn {
    width: 100%;
  }

  /* Method */
  .method__steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .method__steps::before {
    display: none;
  }

  .step p {
    max-width: 100%;
  }

  /* Social */
  .social__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .testimonial {
    padding: var(--space-7);
  }

  .testimonial p {
    font-size: 17px;
  }

  .social__stats {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-7);
    gap: var(--space-6);
  }

  .stat {
    border-right: 0;
    padding-right: 0;
  }

  /* Differentials */
  .diff__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .diff-card {
    padding: var(--space-6);
  }

  /* FAQ */
  .faq-item {
    padding: var(--space-5) var(--space-6);
  }

  /* Final */
  .final .btn {
    width: 100%;
  }

  .final p {
    font-size: 16px;
  }

  /* Footer */
  .footer {
    padding: var(--space-9) 0 var(--space-6);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
  }

  /* WhatsApp float */
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  /* Section head rhythm */
  .section-head {
    margin-bottom: var(--space-8);
  }
}

/* Small mobile refinement */
@media (max-width: 428px) {
  .hero__accent {
    width: 160px;
    left: 12px;
    bottom: 12px;
  }
}
