/* ==========================================================================
   CSS VARIÁVEIS - TEMA PREMIUM (TERAPÊUTICO E SOFISTICADO)
   ========================================================================== */
:root {
  /* Cores Principais (Acalentadoras e suaves) */
  --bg-color: #FAFAF8; /* Off-white com toque quente */
  --bg-secondary: #EDF1EE; /* Sálvia ultra claro para blocos sutis */
  
  /* Cores de Texto e Destaque */
  --text-dark: #202F26; /* Verde muito escuro - elegante em vez de preto puro */
  --text-body: #49544D; /* Cinza esverdeado para leitura longa */
  
  /* Brand Colors (Paleta Sálvia/Musgo) */
  --brand-sage: #89A894;
  --brand-moss: #2B4A3B;
  --brand-moss-hover: #1E362A;
  
  /* CTA / Destaque (Chama a atenção mas não agride) */
  --cta-bg: #C17C5B; /* Terracota elegante (combina com verde) */
  --cta-hover: #A16447;
  --cta-text: #FFFFFF;
  
  /* Tipografia */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Espaçamento e Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  /* Sombras Premium (Soft shadows) */
  --shadow-sm: 0 4px 12px rgba(43, 74, 59, 0.05);
  --shadow-md: 0 12px 32px rgba(43, 74, 59, 0.08);
  --shadow-lg: 0 24px 48px rgba(43, 74, 59, 0.12);
  
  /* Transições */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESETS BÁSICOS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .eyebrow {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 500; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

/* Eyebrow / Tag em cima dos títulos */
.eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-moss);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   COMPONENTES
   ========================================================================== */

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
}

.btn-primary {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: 0 8px 24px rgba(193, 124, 91, 0.3);
}

.btn-primary:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(193, 124, 91, 0.4);
}

/* Formulários */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #FFFFFF;
  border: 1px solid rgba(137, 168, 148, 0.3);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

input:focus {
  outline: none;
  border-color: var(--brand-sage);
  box-shadow: 0 0 0 3px rgba(137, 168, 148, 0.2);
}

::placeholder {
  color: #A0ABA4;
}

/* ==========================================================================
   SEÇÕES DA PÁGINA
   ========================================================================== */

/* 1. Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
  padding: 80px 0 120px;
  overflow: hidden; /* Hide overflow for decorative bubble */
}

/* Elemento decorativo sutil (Folha/Forma orgânica) */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(137,168,148,0.1) 0%, rgba(250,250,248,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .subtitle {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.hero .highlight-text {
  font-size: 1.15rem;
  padding-left: 16px;
  border-left: 3px solid var(--brand-sage);
  margin-bottom: 24px;
  color: var(--brand-moss);
}

.hero .conclusion {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
  margin-bottom: 12px;
  color: var(--brand-moss);
}

.hero-form-card p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.investment-note {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 0.85rem !important;
  color: #6D7B73;
}

/* Visuais do Hero */
.hero-visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visuals .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-visuals img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.floating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,1);
  animation: float 5s ease-in-out infinite;
  z-index: 10;
}

.floating-badge .badge-icon {
  font-size: 1.8rem;
}

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

.badge-title {
  font-weight: 700;
  color: var(--brand-moss);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.badge-subtitle {
  color: var(--text-body);
  font-size: 0.85rem;
}

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

/* 2. Sintomas */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.symptom-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.02);
}

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

.symptom-card .icon {
  font-size: 1.5rem;
  background: var(--bg-secondary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.symptoms-conclusion {
  margin-top: 48px;
  font-size: 1.2rem;
  color: var(--brand-moss);
}

/* 3. Quebra de Crença */
.belief-break {
  background-color: var(--brand-moss);
  color: #FFFFFF;
}

.belief-break h2, .belief-break .eyebrow {
  color: #FFFFFF;
}

.belief-content {
  max-width: 800px;
  margin: 0 auto;
}

.belief-content h2 {
  margin-bottom: 24px;
}

.belief-content > p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}

.wrong-attempts {
  margin-bottom: 40px;
}

.wrong-attempts li {
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
}

.wrong-attempts li::before {
  content: '✕';
  color: #E29578;
  margin-right: 12px;
  font-weight: bold;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--brand-sage);
  padding: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.25rem !important;
  line-height: 1.8;
  margin-bottom: 40px !important;
}

.final-insight {
  font-family: var(--font-heading);
  font-size: 1.8rem !important;
  font-weight: 500;
}

/* 4. Diagnóstico */
.diagnosis .section-header {
  margin-bottom: 60px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  text-align: center;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.pillar-card h3 {
  margin-bottom: 16px;
  color: var(--brand-moss);
}

/* 5. Método Vida Criativa */
.method {
  background-color: var(--bg-secondary);
}

.method-container {
  max-width: 800px;
}

.method-text > p {
  font-size: 1.15rem;
  margin: 24px 0 48px;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 2rem;
  background: var(--bg-color);
  padding: 16px;
  border-radius: var(--radius-full);
}

.feature h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.method-conclusion {
  font-size: 1.3rem;
  text-align: center;
  color: var(--brand-moss);
  font-family: var(--font-heading);
}

/* 6. Sobre */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: 8px;
}

.about-content .role {
  font-size: 1.1rem;
  color: var(--brand-sage);
  font-weight: 500;
  margin-bottom: 32px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.quote {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-secondary);
  border-left: 4px solid var(--brand-moss);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-moss);
  font-style: italic;
}

/* 7. Depoimentos */
.testimonials {
  background-color: var(--bg-secondary); /* Alternando a cor de fundo (Sobre é branco, depoimentos sálvia claro) */
}

.testimonials .section-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

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

.quote-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--brand-sage);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 24px;
}

.testimonial-author strong {
  color: var(--brand-moss);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #6D7B73;
}

/* 8. Oferta e CTA Final */
.offer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-value h2 {
  margin-bottom: 40px;
}

.value-list {
  margin-bottom: 40px;
}

.value-list li {
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text-dark);
}

.investment-vision {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--brand-moss);
}

.offer-cta-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
}

.card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--brand-moss);
  margin-bottom: 12px;
}

.price-box {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-body);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-moss);
  line-height: 1;
  font-family: var(--font-heading);
}

.price-details {
  font-size: 0.9rem;
  margin-top: 8px;
}

.form-instructions {
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.important-notice {
  margin-top: 32px;
  padding: 20px;
  background: rgba(226, 149, 120, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 124, 91, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(193, 124, 91, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 124, 91, 0); }
}

/* Rodapé */
.site-footer {
  background-color: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 40px;
}

.site-footer p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.site-footer .copyright {
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-bottom: 0;
}

/* ==============================================
   RESPONSIVIDADE (Mobile First abordado via media queries)
   ============================================== */

/* ==============================================
   ESTILOS NOVA SEÇÃO DE EMPATIA
   ============================================== */
.empathy-section {
  position: relative;
  padding: 80px 0; /* Reduzindo o padding para a seção ficar menor */
  background-image: url('assets/empathy_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
}

.empathy-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 47, 38, 0.85); /* Fundo ainda mais escuro para o texto gritar mais (usando var(--text-dark) tone) */
  z-index: 1;
}

.empathy-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.empathy-content {
  max-width: 900px; /* Alargado um pouco para acomodar bem o texto */
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Espaço ligeiramente menor que 2.5rem */
}

.empathy-quote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem); /* Fonte um pouco menor e mais controlada */
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4; /* Aumentado espaçamento entrelinhas do título para respirar */
  position: relative;
  margin-bottom: 0;
  padding: 0 15px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.empathy-quote::before {
  content: '“';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px; /* Aproximando um pouco a aspa */
  font-size: 5rem;
  color: var(--brand-sage);
  opacity: 0.6; /* Aspa mais visível */
  font-family: serif;
}

.empathy-subtext {
  font-size: 1.25rem; /* Mantendo um tamanho bom para leitura */
  color: rgba(255, 255, 255, 0.95); /* Texto mais branco para melhor contraste */
  line-height: 1.7;
  padding: 0 40px; /* Limitando a largura do texto contínuo no desktop para leitura */
  max-width: 750px;
  margin: 0 auto;
}

.empathy-subtext p {
  margin-bottom: 1.2rem;
}

.empathy-highlight {
  font-size: 1.35rem; /* Levemente menor mas ainda em destaque */
  font-weight: 600;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Linha mais sutil */
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .empathy-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .empathy-quote {
    font-size: 1.8rem;
    padding: 0;
  }
  
  .empathy-subtext {
    font-size: 1.15rem;
    padding: 0 10px;
  }
  
  .empathy-quote::before {
    top: -30px;
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .hero-container,
  .about-container,
  .offer-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-visuals {
    order: -1; /* Puts image above text on mobile */
    margin-bottom: 24px;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    max-width: 500px;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-form-card,
  .offer-cta-card {
    padding: 32px 24px;
  }
  
  .belief-content > p,
  .wrong-attempts li {
    font-size: 1.1rem;
  }
  
  .highlight-box {
    padding: 24px;
    font-size: 1.1rem !important;
  }
}
