/* ============================================
   RECOMEÇO CONSCIENTE - ANDRÉA COTRIM
   Design Premium | Psicologia para Mulheres
   ============================================ */

/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F1ED;
  color: #4A4A4A;
}

/* VARIÁVEIS CSS */
:root {
  /* Cores Principais - VIBRANTE */
  --off-white: #F5F1ED;
  --beige-sand: #E8DDD0;
  --gold-matte: #D4A574;
  --gold-vibrant: #C89642;        /* Dourado mais saturado */
  --gold-bright: #E0A855;         /* Dourado brilhante */
  --terracotta: #C89B7B;
  --coral-vibrant: #D97652;       /* Coral energético (acento) */
  --coral-bright: #E68A6A;        /* Coral claro */
  --charcoal: #4A4A4A;
  --gray-medium: #7A7A7A;
  
  /* Cores Complementares */
  --wood-warm: #8B6F47;
  --wood-light: #C4A572;
  --led-warm: #FFB366;
  --led-glow: rgba(255, 179, 102, 0.15);
  --black-professional: #1A1A1A;
  --plant-green: #6B8E6B;
  
  /* Toques Femininos - Rosa e Lilás */
  --rose-soft: #E89BB5;               /* Rosa suave acolhedor */
  --rose-vibrant: #D87FA0;            /* Rosa vibrante para acentos */
  --lilac-soft: #B899D4;              /* Lilás suave sereno */
  --lilac-vibrant: #9B7AB8;           /* Lilás vibrante sofisticado */
  
  /* Gradientes Metálicos */
  --gradient-gold: linear-gradient(135deg, #E0A855 0%, #C89642 50%, #D4A574 100%);
  --gradient-coral: linear-gradient(135deg, #E68A6A 0%, #D97652 100%);
  --gradient-rose: linear-gradient(135deg, #E89BB5 0%, #D87FA0 100%);
  --gradient-lilac: linear-gradient(135deg, #B899D4 0%, #9B7AB8 100%);
  --gradient-feminine: linear-gradient(135deg, #E89BB5 0%, #B899D4 50%, #D87FA0 100%);
  --gradient-shine: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.2) 100%);
  
  /* Sombras Coloridas */
  --shadow-gold: 0 4px 20px rgba(224, 168, 85, 0.4);
  --shadow-gold-hover: 0 8px 32px rgba(224, 168, 85, 0.5);
  --shadow-coral: 0 4px 16px rgba(217, 118, 82, 0.3);
  --shadow-rose: 0 2px 12px rgba(232, 155, 181, 0.3);
  --shadow-lilac: 0 2px 12px rgba(184, 153, 212, 0.3);
  --shadow-glow: 0 0 40px rgba(224, 168, 85, 0.3);
  
  /* Fontes */
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Transições */
  --transition-smooth: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 300ms ease;
  --transition-bounce: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* CONTAINER PADRÃO */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* SECTION TITLE COM GRADIENTE SUTIL */
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(224, 168, 85, 0.4);
}

.section-title::before {
  content: '✦';
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  font-size: 8px;
  color: var(--rose-vibrant);
  opacity: 0.6;
  text-shadow: 0 0 8px rgba(232, 155, 181, 0.5);
}

/* BOTÕES COM BRILHO METÁLICO */
.btn-primary {
  background: linear-gradient(135deg, #E0A855 0%, #C89642 50%, #D4A574 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 40px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(200, 150, 66, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Efeito de brilho animado */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shine);
  transition: left 600ms ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(200, 150, 66, 0.6);
  background: linear-gradient(135deg, #E0A855 0%, #C89642 30%, #E0A855 100%);
}

.btn-large {
  font-size: 20px;
  padding: 22px 48px;
}

.btn-xl {
  font-size: 22px;
  padding: 24px 56px;
}

/* ACESSIBILIDADE */
:focus {
  outline: 2px solid var(--gold-matte);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-matte);
  color: #FFFFFF;
}

/* ============================================
   SEÇÃO 1: HERO
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #F5F1ED;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100vh;
}

/* LADO ESQUERDO - Conteúdo */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 120px;
  z-index: 10;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  background: var(--gradient-lilac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #6B4E3D;
  margin-bottom: 24px;
  position: relative;
}

.hero-subheadline {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #7A7A7A;
  margin-bottom: 40px;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 48px;
  max-width: 580px;
}

.hero-description p {
  margin-bottom: 8px;
}

.hero-description strong {
  font-weight: 500;
  color: #4A4A4A;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-reassurance {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #7A7A7A;
}

/* LADO DIREITO - Imagem */
.hero-image-container {
  position: relative;
  background: #F5F1ED;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 3;
}

/* Linha de base - efeito "saindo de algum lugar" COM BRILHO */
.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-vibrant) 20%,
    var(--gold-bright) 40%,
    var(--coral-vibrant) 50%,
    var(--gold-bright) 60%,
    var(--gold-vibrant) 80%,
    transparent 100%
  );
  z-index: 4;
  box-shadow: 
    0 -2px 30px rgba(224, 168, 85, 0.6),
    0 0 20px rgba(217, 118, 82, 0.4);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { 
    opacity: 1;
    box-shadow: 
      0 -2px 30px rgba(224, 168, 85, 0.6),
      0 0 20px rgba(217, 118, 82, 0.4);
  }
  50% { 
    opacity: 0.85;
    box-shadow: 
      0 -2px 40px rgba(224, 168, 85, 0.8),
      0 0 30px rgba(217, 118, 82, 0.6);
  }
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(245, 241, 237, 0.4) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   SEÇÃO 2: IDENTIFICAÇÃO
   ============================================ */
.identificacao-section {
  padding: 120px 60px;
  background: #F5F1ED;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #7A7A7A;
}

/* CHECKLIST GRID */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  position: relative;
}

/* ÍCONES DOS ITENS */
.item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 4px rgba(184, 153, 212, 0.2));
}

.checklist-item:hover .item-icon {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(232, 155, 181, 0.4));
}

.checklist-item:hover {
  border-color: var(--coral-vibrant);
  box-shadow: var(--shadow-coral);
  transform: translateX(4px);
}

/* CHECKBOX CUSTOM COM BRILHO */
.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--gold-vibrant);
  border-radius: 4px;
  position: relative;
  transition: var(--transition-bounce);
  background: #FFFFFF;
}

.checkbox-custom:hover {
  border-color: var(--coral-vibrant);
  box-shadow: 
    0 0 12px rgba(217, 118, 82, 0.4),
    0 0 20px rgba(232, 155, 181, 0.2);
}

.custom-checkbox:checked + .checkbox-custom {
  background: var(--gradient-coral);
  border-color: var(--coral-vibrant);
  box-shadow: 0 0 16px rgba(217, 118, 82, 0.5);
  animation: checkBounce 600ms ease;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.custom-checkbox:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
}

/* VALIDATION MESSAGE */
.validation-message {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #E8DDD0 0%, #F2E6F0 100%);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-image: var(--gradient-feminine) 1;
  box-shadow: var(--shadow-rose);
}

.validation-message p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 12px;
}

.validation-message strong {
  font-weight: 500;
}

/* ============================================
   SEÇÃO 3: LIMBO EMOCIONAL
   ============================================ */
.limbo-section {
  padding: 120px 60px;
  background: #E8DDD0;
}

.limbo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.limbo-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 32px;
}

.limbo-highlight {
  font-size: 24px !important;
  margin: 48px 0 !important;
}

.limbo-content strong {
  font-weight: 500;
  color: #4A4A4A;
}

.limbo-content em {
  font-style: italic;
  color: #7A7A7A;
}

.limbo-symptoms {
  margin: 48px 0;
  padding: 40px;
  background: #F5F1ED;
  border-radius: 8px;
  border-left: 4px solid #D4A574;
}

.limbo-symptoms p {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 400;
}

.limbo-conclusion {
  font-size: 22px !important;
  margin-top: 48px !important;
}

/* ============================================
   SEÇÃO 4: DIFERENCIAL
   ============================================ */
.diferencial-section {
  padding: 120px 0;
  background: #F5F1ED;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

/* CONTEÚDO TEXTO */
.diferencial-content {
  padding-right: 40px;
}

.diferencial-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.diferencial-text strong {
  font-weight: 500;
  color: #4A4A4A;
}

.highlight-box {
  padding: 24px;
  background: linear-gradient(135deg, #F9F5F1 0%, #E8DDD0 100%);
  border-radius: 8px;
  border-left: 6px solid var(--coral-vibrant);
  margin: 32px 0 !important;
  font-size: 20px !important;
  box-shadow: 
    -4px 0 20px rgba(217, 118, 82, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-gold);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.diferencial-conclusion {
  font-size: 20px !important;
  margin-top: 40px !important;
}

/* CREDENCIAIS */
.credenciais {
  margin-top: 48px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E8DDD0;
}

.credenciais-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A7A7A;
  margin-bottom: 16px;
}

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

.credenciais li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.credenciais li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 20px;
  background: var(--gradient-feminine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(232, 155, 181, 0.3));
}

/* IMAGEM */
.diferencial-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.diferencial-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SEÇÃO 5: TRANSFORMAÇÃO
   ============================================ */
.transformacao-section {
  padding: 120px 60px;
  background: #E8DDD0;
}

.section-intro {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro strong {
  font-weight: 500;
  color: #4A4A4A;
}

/* GRID DOS CARDS */
.transformacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* CARD INDIVIDUAL COM BRILHO */
.transformacao-card {
  background: #F5F1ED;
  padding: 48px;
  border-radius: 8px;
  border-left: 4px solid var(--gold-vibrant);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.transformacao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-coral);
  transition: height 400ms ease;
}

.transformacao-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateX(8px) scale(1.01);
  border-left-color: var(--coral-vibrant);
}

.transformacao-card:hover::before {
  height: 100%;
}

/* NUMERAÇÃO ELEGANTE COM GRADIENTE */
.step-number {
  margin-bottom: 24px;
}

.step-number .number {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(224, 168, 85, 0.3));
}

/* TÍTULO DO PASSO */
.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #4A4A4A;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* CONTEÚDO */
.step-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.step-content em {
  font-style: italic;
  color: #7A7A7A;
}

.step-content strong {
  font-weight: 500;
}

.step-highlight {
  font-size: 20px !important;
  font-weight: 500 !important;
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid #E8DDD0;
}

/* REFRAME LIST (passo 2) */
.reframe-list {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F5FB 100%);
  border-radius: 8px;
  border: 1px solid var(--lilac-soft);
  box-shadow: var(--shadow-lilac);
}

.reframe-list p {
  margin-bottom: 12px !important;
  font-size: 18px;
}

/* CTA */
.transformacao-cta {
  text-align: center;
  margin-top: 60px;
}

/* ============================================
   SEÇÃO 6: SOBRE
   ============================================ */
.sobre-section {
  padding: 120px 0;
  background: #F5F1ED;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
}

/* IMAGEM */
.sobre-image {
  position: relative;
  height: 100%;
  min-height: 700px;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTEÚDO */
.sobre-content {
  padding: 80px;
}

.sobre-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.sobre-text strong {
  font-weight: 500;
  color: #4A4A4A;
}

/* HIGHLIGHT BOX */
.sobre-highlight {
  margin: 40px 0;
  padding: 32px;
  background: linear-gradient(135deg, #F2E6F0 0%, #E8DDD0 100%);
  border-radius: 8px;
  border-left: 6px solid var(--rose-vibrant);
  box-shadow: var(--shadow-rose);
}

.sobre-highlight p {
  font-size: 20px !important;
  margin-bottom: 12px !important;
}

/* ============================================
   SEÇÃO 7: COMO FUNCIONA
   ============================================ */
.como-funciona-section {
  padding: 120px 60px;
  background: #E8DDD0;
}

/* GRID DE PASSOS */
.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

/* CARD DO PASSO */
.passo-card {
  text-align: center;
  padding: 40px 32px;
  background: #F5F1ED;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.passo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ÍCONE DO PASSO (NÚMERO CIRCULAR) COM BRILHO */
.passo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  transition: var(--transition-smooth);
}

.passo-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: var(--gradient-coral);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
}

.passo-card:hover .passo-icon::before {
  opacity: 1;
}

.passo-card:hover .passo-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-gold-hover);
}

.passo-icon span {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* TÍTULO DO PASSO */
.passo-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.passo-card .subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #7A7A7A;
  display: block;
  margin-top: 8px;
}

/* DESCRIÇÃO */
.passo-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
}

/* INFO PRÁTICAS */
.info-praticas {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background: #F5F1ED;
  border-radius: 8px;
  border-left: 4px solid #D4A574;
}

.info-praticas h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 20px;
}

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

.info-praticas li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-praticas li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 20px;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(232, 155, 181, 0.3));
}

/* CTA */
.funciona-cta {
  text-align: center;
}

/* ============================================
   SEÇÃO 8: PARA QUEM NÃO É
   ============================================ */
.nao-para-section {
  padding: 120px 60px;
  background: #F5F1ED;
}

.section-title .subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #7A7A7A;
  display: block;
  margin-top: 8px;
}

/* GRID DE WARNINGS */
.warning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* CARD DE WARNING */
.warning-card {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #C89B7B;
  transition: var(--transition-fast);
}

.warning-card:hover {
  border-color: #D4A574;
  box-shadow: 0 8px 20px rgba(200, 155, 123, 0.2);
}

.warning-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.warning-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #4A4A4A;
  margin-bottom: 12px;
}

.warning-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
}

/* CONCLUSÃO */
.nao-para-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: #E8DDD0;
  border-radius: 8px;
}

.nao-para-conclusion p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.nao-para-conclusion .emphasis {
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
}

/* ============================================
   SEÇÃO 9: CTA FINAL
   ============================================ */
.cta-final-section {
  padding: 120px 60px;
  background: #E8DDD0;
  text-align: center;
}

.cta-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  color: #4A4A4A;
  margin-bottom: 48px;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 60px;
}

.cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.cta-highlight {
  font-size: 28px !important;
  font-weight: 500 !important;
  margin: 32px 0 !important;
}

.cta-conclusion {
  font-size: 28px !important;
  font-weight: 500 !important;
  margin-top: 32px !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 80px 60px 40px;
  background: #4A4A4A;
  color: #F5F1ED;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #F5F1ED;
  margin-bottom: 20px;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #E8DDD0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: #D4A574;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 241, 237, 0.2);
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #E8DDD0;
}

/* ============================================
   RESPONSIVO MOBILE
   ============================================ */

/* TABLET */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 60px 40px;
    order: 2;
  }
  
  .hero-image-container {
    order: 1;
    min-height: 50vh;
  }
  
  .hero-headline {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 22px;
  }
  
  .diferencial-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .diferencial-content {
    padding-right: 0;
  }
  
  .diferencial-image {
    order: -1;
  }
  
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-image {
    min-height: 500px;
  }
  
  .sobre-content {
    padding: 60px 40px;
  }
  
  .passos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .container,
  .container-wide {
    padding: 0 24px;
  }
  
  /* HERO */
  .hero-content {
    padding: 48px 24px;
  }
  
  .hero-image-container {
    min-height: 60vh;
    padding-bottom: 0;
  }
  
  .hero-image {
    height: 90%;
    width: auto;
    max-width: 90%;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  
  /* IDENTIFICAÇÃO */
  .identificacao-section {
    padding: 80px 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .checklist-item {
    padding: 16px;
  }
  
  .checkbox-text {
    font-size: 16px;
  }
  
  /* LIMBO */
  .limbo-section {
    padding: 80px 24px;
  }
  
  .limbo-content p {
    font-size: 18px;
  }
  
  .limbo-highlight {
    font-size: 20px !important;
  }
  
  /* DIFERENCIAL */
  .diferencial-section {
    padding: 80px 0;
  }
  
  .diferencial-text p {
    font-size: 16px;
  }
  
  /* TRANSFORMAÇÃO */
  .transformacao-section {
    padding: 80px 24px;
  }
  
  .transformacao-card {
    padding: 32px 24px;
  }
  
  .step-number .number {
    font-size: 56px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-content p {
    font-size: 16px;
  }
  
  /* SOBRE */
  .sobre-section {
    padding: 80px 0;
  }
  
  .sobre-image {
    min-height: 400px;
  }
  
  .sobre-content {
    padding: 48px 24px;
  }
  
  .sobre-text p {
    font-size: 16px;
  }
  
  .sobre-highlight p {
    font-size: 18px !important;
  }
  
  /* COMO FUNCIONA */
  .como-funciona-section {
    padding: 80px 24px;
  }
  
  .passo-card {
    padding: 32px 24px;
  }
  
  .info-praticas {
    padding: 32px 24px;
  }
  
  /* PARA QUEM NÃO É */
  .nao-para-section {
    padding: 80px 24px;
  }
  
  .warning-grid {
    grid-template-columns: 1fr;
  }
  
  .warning-card {
    padding: 24px;
  }
  
  /* CTA FINAL */
  .cta-final-section {
    padding: 80px 24px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-text p {
    font-size: 18px;
  }
  
  .cta-highlight,
  .cta-conclusion {
    font-size: 22px !important;
  }
  
  /* FOOTER */
  .site-footer {
    padding: 60px 24px 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   PÁGINA DE OBRIGADO/BOAS-VINDAS
   ============================================ */

/* Seções */
.section-white {
  padding: 100px 0;
  background: white;
}

.section-beige {
  padding: 100px 0;
  background: var(--off-white);
}

.section-quote {
  padding: 100px 60px;
  background: var(--gradient-feminine);
  text-align: center;
}

/* Headers de Seção */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  background: var(--gradient-lilac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

/* Grids */
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2-cols-60-40 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: center;
}

/* Cards Limpos */
.card-clean {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-rose);
  transition: var(--transition-smooth);
}

.card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-hover);
}

.card-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 24px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-align: center;
}

.card-description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-medium);
  text-align: center;
}

/* Área de Conteúdo */
.content-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content {
  margin-top: 32px;
}

.text-content p {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.text-content strong {
  font-weight: 500;
  color: var(--charcoal);
}

.signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--beige-sand);
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.signature-crp {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray-medium);
}

/* Imagens */
.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.image-rounded {
  width: 100%;
  height: auto;
  display: block;
}

/* Lista de Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-rose);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.feature-description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-medium);
}

/* CTA Box */
.cta-box {
  text-align: center;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: var(--shadow-gold);
  max-width: 800px;
  margin: 0 auto;
}

.text-large {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--gray-medium);
}

.buttons-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões Sociais */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(193, 53, 132, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193, 53, 132, 0.4);
}

/* Quote */
.quote-large {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(255,255,255,0.95);
}

.quote-author strong {
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--black-professional);
  color: rgba(255,255,255,0.7);
  padding: 40px 20px;
  text-align: center;
}

.footer-text {
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contacts {
  font-family: var(--font-sans);
  font-size: 13px;
}

/* Responsivo */
@media (max-width: 968px) {
  .grid-3-cols {
    grid-template-columns: 1fr;
  }
  
  .grid-2-cols-60-40 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-white,
  .section-beige {
    padding: 60px 20px;
  }
  
  .section-quote {
    padding: 60px 20px;
  }
  
  .quote-large {
    font-size: 24px;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
  
  .buttons-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-whatsapp,
  .btn-instagram {
    justify-content: center;
  }
}
