/* ==========================================================================
   LANDING PAGE CRISTINA ANDRADE - PSICÓLOGA CLÍNICA (CRP 05/80437)
   Estilo Estratégico de Alta Conversão, Acolhimento e Responsividade Total
   ========================================================================== */

/* ------------------ DESIGN TOKENS & CSS VARIABLES ------------------ */
:root {
  /* Paleta Oficial Atualizada */
  --bg-main: #FAF7F2;              /* Bege Claro Suave / Respiro */
  --bg-secondary: #F3EDE5;         /* Bege Suave Intermediário */
  --bg-card: #FFFFFF;              /* Branco Acolhedor */
  --bg-card-subtle: #FDFBF8;       /* Bege Quase Branco */

  /* Verde Petróleo (#016257) - Saúde, Equilíbrio, Destaques */
  --sage-main: #016257;            /* Verde Petróleo Principal */
  --sage-dark: #01463E;            /* Verde Profundo para Contraste */
  --sage-light: #E7F3F1;           /* Fundo Verde Claro Suave */
  --sage-badge: #D1EAE5;           /* Badge Verde */
  --sage-border: #98C8BF;          /* Borda Suave */
  --sage-glow: rgba(1, 98, 87, 0.22);

  /* Laranja Âmbar (#FD9125) - Botões CTA, Acentos e Energia */
  --cta-main: #FD9125;             /* Laranja Âmbar Vibrante */
  --cta-hover: #E77D16;            /* Laranja Escuro no Hover */
  --cta-light: #FFF4EA;            /* Fundo Laranja Claro */
  --cta-faq-bg: #016257;           /* Fundo da Seção FAQ */
  --cta-faq-dark: #01463E;
  --cta-shadow: rgba(253, 145, 37, 0.32);
  --cta-shadow-hover: rgba(231, 125, 22, 0.44);

  /* Vermelho Vinho (#7A002F) - Detalhes Estratégicos & Sofisticação */
  --crimson-accent: #7A002F;       /* Vermelho Vinho / Bordô */
  --crimson-light: #F7EBF0;        /* Fundo Vinho Claro */
  --crimson-border: #E8CCD7;       /* Borda Vinho Suave */
  --crimson-shadow: rgba(122, 0, 47, 0.22);

  /* Tipografia & Cores de Texto */
  --text-heading: #016257;         /* Verde Petróleo Principal para Títulos */
  --text-body: #59504B;            /* Texto de Leitura Alto Contraste */
  --text-muted: #7E746F;           /* Texto de Apoio */
  --text-light: #FAF7F2;           /* Texto Claro sobre Fundos Escuros */

  /* Font Families */
  --font-serif: 'Playfair Display', 'Lora', Georgia, serif;
  --font-quote: 'Lora', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamentos e Estrutura */
  --container-max: 1180px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 100px;
  
  /* Sombras Suaves */
  --shadow-sm: 0 4px 12px rgba(56, 47, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(56, 47, 43, 0.08);
  --shadow-lg: 0 16px 36px rgba(56, 47, 43, 0.12);
  --shadow-polaroid: 0 12px 30px rgba(56, 47, 43, 0.12);

  /* Transições Fluídas */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------ RESET & BASE STYLES ------------------ */
*, *::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-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ------------------ LAYOUT UTILITIES ------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.text-center {
  text-align: center;
}

/* ------------------ BUTTONS & CTAs ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  user-select: none;
}

.btn-cta-primary {
  background-color: var(--cta-main);
  color: #FFFFFF;
  box-shadow: 0 8px 20px var(--cta-shadow);
}

.btn-cta-primary:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px var(--cta-shadow-hover);
  color: #FFFFFF;
}

.btn-cta-primary:active {
  transform: translateY(0);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-block {
  width: 100%;
}

.btn-outline-header {
  background-color: transparent;
  color: var(--text-heading);
  border: 1px solid rgba(56, 47, 43, 0.25);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-outline-header:hover {
  background-color: var(--text-heading);
  color: #FFFFFF;
  border-color: var(--text-heading);
}

.btn-process-cta {
  background-color: #FFFFFF;
  color: var(--sage-dark);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.btn-process-cta:hover {
  background-color: var(--bg-card-subtle);
  color: var(--cta-main);
  transform: translateY(-2px);
}

.icon-btn, .icon-whatsapp-sm {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Micro-animação de pulso sutil no botão */
@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 122, 91, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(200, 122, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 122, 91, 0);
  }
}

.pulse-hover:hover {
  animation: subtlePulse 1.8s infinite;
}

/* ------------------ SECTION HEADERS ------------------ */
.section-badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background-color: var(--sage-badge);
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(56, 47, 43, 0.08);
  transition: all var(--transition-fast);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: clamp(38px, 4.5vw, 50px);
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cta-main);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-heading);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--border-radius-sm);
  background: transparent;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-heading);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--bg-main);
  border-bottom: 1px solid rgba(56, 47, 43, 0.12);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-heading);
  display: block;
  padding: 6px 0;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 680px;
  background-color: var(--bg-main);
  background-image: url('assets/bg-hero-desktop.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(320px, 580px) 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  min-height: 520px;
  width: 100%;
  position: relative;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.badge-line {
  width: 32px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--crimson-accent), var(--cta-main));
  border-radius: 2px;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cta-main);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-trust-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sage-main);
  display: inline-block;
}

/* Floating Decorative Elements (Card Gestalt & Borboleta) */
.hero-floating-decor {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-pill-badge {
  position: absolute;
  bottom: 50px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 11px 18px;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(56, 47, 43, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 6;
  animation: subtleBadgeFloat 4s ease-in-out infinite alternate;
}

.floating-pill-badge:hover {
  transform: translateY(-4px);
}

.pill-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--sage-light);
  color: var(--sage-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-icon-box svg {
  width: 18px;
  height: 18px;
}

.pill-text {
  display: flex;
  flex-direction: column;
}

.pill-text strong {
  font-size: 0.82rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.pill-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.butterfly-accent {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 50px;
  height: 50px;
  z-index: 6;
  animation: floatButterfly 6s ease-in-out infinite;
}

@keyframes subtleBadgeFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes floatButterfly {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(6deg);
  }
}

/* ==========================================================================
   2. SEÇÃO DE CONEXÃO (PARA QUEM É?)
   ========================================================================== */
.section-connection {
  padding: clamp(60px, 9vw, 100px) 0;
  background-color: var(--bg-main);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 48px;
  margin-bottom: 44px;
  justify-content: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.audience-card {
  background-color: var(--bg-card);
  padding: clamp(28px, 4vw, 36px) 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(56, 47, 43, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

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

.card-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.audience-card:hover .card-icon-badge {
  background-color: var(--sage-light);
  color: var(--sage-main);
}

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

.audience-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.audience-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Card Maturidade Emocional */
.maturity-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  border: 1.5px solid var(--sage-border);
}

.maturity-card .card-icon-badge {
  background-color: var(--crimson-light);
  color: var(--crimson-accent);
}

.audience-card:hover .maturity-badge {
  background-color: var(--crimson-accent);
  color: #FFFFFF;
}

/* Botão Ler Mais / Ver Detalhes */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-main);
  background: transparent;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.btn-read-more:hover {
  color: var(--cta-main);
}

.btn-read-more .icon-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.btn-read-more.expanded .icon-chevron {
  transform: rotate(180deg);
}

.maturity-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.maturity-collapsible.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 18px;
}

.audience-text-lead {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.5;
}

.maturity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 20px 0;
}

.maturity-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

.bullet-check {
  color: var(--sage-main);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.maturity-quote-pill {
  background-color: var(--crimson-light);
  border-left: 4px solid var(--crimson-accent);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 14px 18px;
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.maturity-quote-pill .quote-symbol {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 0.9;
  color: var(--crimson-accent);
  font-weight: 700;
}

.maturity-quote-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.92rem;
  color: #4A0F22;
  line-height: 1.55;
  font-weight: 500;
}

/* Card em destaque */
.featured-card {
  border-color: rgba(253, 145, 37, 0.4);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF8 100%);
}

/* Banner Atendimento Híbrido */
.hybrid-banner {
  background-color: var(--sage-main);
  color: #FFFFFF;
  border-radius: var(--border-radius-pill);
  padding: 24px 36px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 24px rgba(1, 98, 87, 0.25);
}

.hybrid-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.hybrid-subtitle {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 400;
}

.cta-connection-wrap {
  margin-top: 10px;
}

/* ==========================================================================
   3. SOBRE A PROFISSIONAL (AUTORIDADE)
   ========================================================================== */
.section-about {
  padding: clamp(60px, 9vw, 100px) 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 70px);
}

/* Polaroid / Scrapbook Styling */
.about-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.polaroid-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  transform: rotate(-1.5deg);
  transition: transform var(--transition-normal);
}

.polaroid-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Washi Tape Accent */
.washi-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 120px;
  height: 28px;
  background: repeating-linear-gradient(
    -45deg,
    var(--cta-main),
    var(--cta-main) 8px,
    var(--crimson-accent) 8px,
    var(--crimson-accent) 12px,
    #F3EDE5 12px,
    #F3EDE5 18px
  );
  opacity: 0.9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.polaroid-card {
  background-color: #FFFFFF;
  padding: 16px 16px 24px 16px;
  border-radius: 4px;
  box-shadow: var(--shadow-polaroid);
  border: 1px solid rgba(56, 47, 43, 0.08);
}

.polaroid-image-frame {
  overflow: hidden;
  border-radius: 2px;
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  padding-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.caption-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
}

.caption-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* About Text */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-body {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.about-quote-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--crimson-accent);
  padding: 18px 24px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(56, 47, 43, 0.04);
}

.quote-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-heading);
  line-height: 1.6;
}

.about-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.appointment-notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   4. COMO FUNCIONA (O PROCESSO) - FUNDO VERDE PASTEL
   ========================================================================== */
.section-process {
  padding: clamp(60px, 9vw, 100px) 0;
  background-color: var(--sage-main);
  color: #FFFFFF;
  position: relative;
}

.process-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(36px, 6vw, 64px);
}

.process-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 20px;
}

.process-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}

.process-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 32px;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  background-color: #FFFFFF;
  color: var(--text-body);
  padding: 24px 28px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: transform var(--transition-normal);
}

.step-card:hover {
  transform: translateX(6px);
}

.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cta-main);
}

.step-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--cta-light);
  color: var(--cta-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-circle svg {
  width: 18px;
  height: 18px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   5. QUEBRA DE OBJEÇÕES (VANTAGENS DO ON-LINE)
   ========================================================================== */
.section-online {
  padding: clamp(60px, 9vw, 100px) 0;
  background-color: var(--bg-main);
}

.online-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 48px;
  margin-bottom: 40px;
}

.benefit-card {
  background-color: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(56, 47, 43, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-border);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--sage-light);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.benefit-card:hover .benefit-icon-box {
  background-color: var(--cta-light);
  color: var(--cta-main);
}

.benefit-icon-box svg {
  width: 26px;
  height: 26px;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   6. DÚVIDAS FREQUENTES (FAQ) - DESIGN INSPIRADO NA REFERÊNCIA 5
   ========================================================================== */
.section-faq {
  padding: clamp(60px, 9vw, 100px) 0;
  background-color: var(--cta-faq-bg);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.faq-watermark-left,
.faq-watermark-right {
  position: absolute;
  width: 280px;
  height: 280px;
  color: #FFFFFF;
  pointer-events: none;
  z-index: 1;
}

.faq-watermark-left {
  top: -40px;
  left: -40px;
}

.faq-watermark-right {
  bottom: -40px;
  right: -40px;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.faq-header {
  margin-bottom: 44px;
}

.faq-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 500;
  color: #FFFFFF;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: #FFF2EB;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-normal);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

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

.faq-toggle-icon::after {
  width: 2px;
  height: 12px;
}

/* Quando expandido */
.faq-item.active .faq-toggle-icon {
  background-color: #FFFFFF;
}

.faq-item.active .faq-toggle-icon::before {
  background-color: var(--cta-faq-bg);
}

.faq-item.active .faq-toggle-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

/* ==========================================================================
   7. RODAPÉ E CTA FINAL
   ========================================================================== */
.section-final-cta {
  padding: clamp(60px, 9vw, 90px) 0;
  background-color: var(--bg-main);
}

.final-cta-card {
  background: linear-gradient(135deg, #FAF4EE 0%, #F5ECE3 100%);
  border: 1.5px solid rgba(253, 145, 37, 0.35);
  border-radius: var(--border-radius-lg);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.final-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--crimson-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 18px;
}

.final-cta-text {
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px auto;
}

.final-cta-btn-wrap {
  margin-bottom: 36px;
}

.final-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  padding-top: 24px;
  border-top: 1px solid rgba(56, 47, 43, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--sage-main);
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL
   ========================================================================== */
.site-footer {
  background-color: #242B28;
  color: #E2DBD6;
  padding: 64px 0 32px 0;
  font-size: 0.9rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: clamp(40px, 5vw, 54px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-desc {
  color: #B4A9A4;
  line-height: 1.65;
  font-size: 0.88rem;
  max-width: 360px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 18px;
  font-weight: 500;
}

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

.footer-links a {
  color: #B4A9A4;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--cta-main);
  padding-left: 4px;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-info-list strong {
  color: #FFFFFF;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-info-list span {
  color: #B4A9A4;
  font-size: 0.88rem;
}

.footer-contact-link {
  color: var(--cta-main);
  font-weight: 600;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-ethics-box {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--crimson-accent);
  padding: 14px 18px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-size: 0.82rem;
  color: #C7BCB7;
  line-height: 1.6;
}

.footer-ethics-box strong {
  color: #FFFFFF;
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #9C908B;
}

.ethics-reg {
  font-style: italic;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-normal);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.06);
}

.whatsapp-tooltip {
  background-color: #FFFFFF;
  color: var(--text-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(56, 47, 43, 0.06);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.floating-icon-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon-wrap svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.floating-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.6;
  animation: floatingPulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: 1;
}

@keyframes floatingPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile-First & Fluid Layouts)
   ========================================================================== */

/* Tablets & Small Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
  }

  .process-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

/* Mobile & Small Tablets (<= 860px) */
@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .btn-outline-header {
    display: none;
  }

  .hero-section {
    background-image: url('assets/bg-hero-mobile.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: var(--bg-main);
    padding-top: clamp(340px, 92vw, 470px);
    padding-bottom: clamp(48px, 10vw, 76px);
    min-height: auto;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    position: relative;
  }

  .hero-floating-decor {
    position: absolute;
    top: -95px;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10;
  }

  .hero-floating-decor .floating-pill-badge {
    position: relative;
    bottom: auto;
    left: auto;
    pointer-events: auto;
    margin: 0 auto;
    padding: 9px 16px;
    box-shadow: 0 8px 24px rgba(56, 47, 43, 0.16);
  }

  .hero-floating-decor .butterfly-accent {
    position: absolute;
    top: -160px;
    right: 10%;
    width: 40px;
    height: 40px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    position: relative;
    z-index: 5;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: center;
    width: 100%;
  }

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

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hybrid-banner {
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-badge {
    justify-content: center;
  }

  .about-quote-box {
    text-align: left;
    width: 100%;
  }

  .about-action {
    align-items: center;
    width: 100%;
  }

  .about-action .btn {
    width: 100%;
  }

  .online-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .online-cta-wrap .btn {
    width: 100%;
  }

  .step-card {
    padding: 20px;
    gap: 16px;
  }

  .final-cta-btn-wrap .btn {
    width: 100%;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-credits {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
  }

  .floating-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .floating-icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Extra Small Phones (<= 400px) */
@media (max-width: 400px) {
  .btn {
    padding: 13px 18px;
    font-size: 0.88rem;
  }

  .step-card {
    flex-direction: column;
    gap: 12px;
  }

  .step-header {
    flex-direction: row;
    gap: 12px;
  }
}
