/* ==========================================================================
   FOLHA DE ESTILOS - JORNADA DA MULHER SELVAGEM
   ========================================================================== */

/* VARIÁVEIS DE CORES & DESIGN */
:root {
  --bg-sand: #FAF6F0;        /* Fundo areia aquecido e acolhedor */
  --primary-forest: #335e3c; /* Verde floresta sutil e nítido solicitado */
  --primary-light: #608066;  /* Verde médio para ícones e detalhes */
  --accent-terracotta: #C87A53; /* Terracota para destaques principais */
  --accent-gold: #D4AF37;    /* Dourado metálico sutil para ornamentos */
  --text-dark: #3E4A3E;      /* Cinza esverdeado escuro para legibilidade */
  --bg-card: #FFFFFF;        /* Fundo dos cards */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-sand);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

h1, h2, h3, h4 {
  color: var(--primary-forest);
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--text-dark);
}

/* ELEMENTOS DE DECORAÇÃO EM DOURADO SUTIL */
.gold-sparkle {
  position: absolute;
  color: var(--accent-gold);
  font-size: 0.95rem; /* Estrelas pequenas e delicadas */
  pointer-events: none;
  opacity: 0.55;
  user-select: none;
  z-index: 1;
}

.sparkle-1 { top: 6%; left: 8%; animation: float-sparkle 4s infinite ease-in-out; }
.sparkle-2 { top: 14%; right: 10%; animation: float-sparkle 4.5s infinite ease-in-out 0.5s; }
.sparkle-3 { top: 22%; left: 5%; animation: float-sparkle 5s infinite ease-in-out 1s; }
.sparkle-4 { top: 30%; right: 7%; animation: float-sparkle 4.2s infinite ease-in-out 1.5s; }
.sparkle-5 { top: 38%; left: 9%; animation: float-sparkle 4.8s infinite ease-in-out 2s; }
.sparkle-6 { top: 46%; right: 8%; animation: float-sparkle 5.2s infinite ease-in-out 2.5s; }
.sparkle-7 { top: 54%; left: 4%; animation: float-sparkle 4.3s infinite ease-in-out 3s; }
.sparkle-8 { top: 62%; right: 6%; animation: float-sparkle 4.7s infinite ease-in-out 3.5s; }
.sparkle-9 { top: 70%; left: 8%; animation: float-sparkle 5.1s infinite ease-in-out 4s; }
.sparkle-10 { top: 78%; right: 9%; animation: float-sparkle 4.4s infinite ease-in-out 4.5s; }
.sparkle-11 { top: 86%; left: 5%; animation: float-sparkle 4.9s infinite ease-in-out 5s; }
.sparkle-12 { top: 94%; right: 7%; animation: float-sparkle 4.6s infinite ease-in-out 5.5s; }

@keyframes float-sparkle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  50% { transform: translateY(-12px) rotate(45deg); opacity: 0.75; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
}

/* BOTÕES GERAIS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-accent {
  background-color: var(--accent-terracotta);
  color: #FFFFFF;
}

.btn-accent:hover {
  background-color: #b3633e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 122, 83, 0.3);
}

/* CABEÇALHO MINIMALISTA */
.jornada-header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(45, 58, 46, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 3px;
  color: var(--accent-terracotta);
  margin-top: -2px;
  font-weight: 500;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  background-color: rgba(96, 128, 102, 0.06);
  transition: var(--transition-smooth);
}

.btn-back:hover {
  background-color: rgba(96, 128, 102, 0.12);
  color: var(--primary-forest);
  transform: translateX(-3px);
}

.back-to-home-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* HERO SECTION */
.jornada-hero {
  padding: 80px 0 60px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.hero-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-terracotta);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: -1px;
}

/* Divisor em dourado */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 28px;
  width: 100%;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0));
  max-width: 120px;
}

.divider-star {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-family: initial;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Imagem do Hero */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-image-border {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
  animation: gold-border-glow 4s infinite ease-in-out;
}

@keyframes gold-border-glow {
  0% {
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.7);
    transform: scale(1.015);
  }
  100% {
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(45, 58, 46, 0.12);
  position: relative;
  z-index: 2;
  display: block;
}

/* A PROPOSTA (A TRAVESSIA) */
.jornada-proposta {
  padding: 40px 0 60px;
}

.proposta-container {
  display: flex;
  justify-content: center;
}

.proposta-card {
  background-color: var(--bg-card);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(45, 58, 46, 0.05);
  border-left: 5px solid var(--accent-terracotta);
  max-width: 820px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.proposta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(200, 122, 83, 0.07);
}

.proposta-card h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}

.proposta-card h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: rgba(200, 122, 83, 0.15);
}

.proposta-text-main {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-forest);
  margin-bottom: 20px;
  line-height: 1.7;
}

.proposta-highlight-block {
  margin-top: 32px;
  padding: 28px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--primary-forest);
  text-align: center;
  position: relative;
}

.proposta-highlight-block::before {
  content: '✦';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-card);
  padding: 0 16px;
  color: var(--accent-gold);
  font-size: 1rem;
}

.proposta-highlight-block::after {
  content: '✦';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--bg-card);
  padding: 0 16px;
  color: var(--accent-gold);
  font-size: 1rem;
}

/* OS ENCONTROS (CRONOGRAMA DE CONTOS) */
.jornada-encontros {
  padding: 60px 0 80px;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dark);
}

.encontros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.encontro-card {
  background-color: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(45, 58, 46, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25); /* Borda em dourado sutil */
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.encontro-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}

.encontro-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.encontro-header {
  margin-bottom: 14px;
}

.encontro-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.encontro-theme {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-terracotta);
  font-weight: 600;
}

.encontro-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ESTRUTURA (COMO FUNCIONA) */
.jornada-estrutura {
  padding: 60px 0;
  background-color: rgba(96, 128, 102, 0.04);
}

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

.estrutura-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  position: relative;
}

.estrutura-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
}

.estrutura-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-forest);
  color: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(45, 58, 46, 0.1);
}

.estrutura-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.estrutura-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CALL TO ACTION (CTA) */
.jornada-cta {
  padding: 80px 0 100px;
}

.cta-container {
  max-width: 820px;
}

.cta-card {
  background-color: var(--bg-card);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 122, 83, 0.6);
  box-shadow: 0 15px 40px rgba(200, 122, 83, 0.06), 0 0 8px rgba(200, 122, 83, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: cta-card-glow 4s infinite ease-in-out;
}

@keyframes cta-card-glow {
  0% {
    border-color: rgba(200, 122, 83, 0.4);
    box-shadow: 0 15px 40px rgba(200, 122, 83, 0.06), 0 0 6px rgba(200, 122, 83, 0.25);
  }
  50% {
    border-color: rgba(200, 122, 83, 0.85);
    box-shadow: 0 15px 40px rgba(200, 122, 83, 0.06), 0 0 24px rgba(200, 122, 83, 0.65);
  }
  100% {
    border-color: rgba(200, 122, 83, 0.4);
    box-shadow: 0 15px 40px rgba(200, 122, 83, 0.06), 0 0 6px rgba(200, 122, 83, 0.25);
  }
}

/* Sparkles decorativos no card */
.gold-card-sparkle {
  position: absolute;
  color: var(--accent-gold);
  font-size: 1.4rem;
  opacity: 0.5;
  pointer-events: none;
}

.sparkle-top { top: 24px; right: 24px; }
.sparkle-bottom { bottom: 24px; left: 24px; }

.cta-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Botão do Whatsapp pulsante terracota com brilho dourado */
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  background-color: var(--accent-terracotta); /* Terracota */
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(200, 122, 83, 0.25);
  transition: var(--transition-smooth);
  animation: pulse-attention-terracotta-gold 3s infinite ease-in-out;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 12px rgba(212, 175, 55, 0.15);
  animation-play-state: paused; /* Pausa a animação ao passar o mouse */
  background-color: #b3633e;
}

/* Animação que combina a pulsação do botão terracota com anéis de brilho dourado */
@keyframes pulse-attention-terracotta-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(200, 122, 83, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45), 0 0 0 10px rgba(212, 175, 55, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(200, 122, 83, 0.2);
  }
}

/* RODAPÉ */
.jornada-footer {
  background-color: #1e281f; /* Fundo verde escuro e profundo */
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(250, 246, 240, 0.05);
}

.jornada-footer p {
  color: rgba(250, 246, 240, 0.8); /* Tom claro e legível sobre o fundo escuro */
}

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

.jornada-footer .footer-crp {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(250, 246, 240, 0.8);
  font-weight: 600;
}

.jornada-footer .footer-copy {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
  margin-top: 4px;
}

/* O DIFERENCIAL (POR QUE PARTICIPAR) */
.jornada-diferencial {
  padding: 80px 0;
  background-color: rgba(250, 246, 240, 0.45); /* fundo areia sutil */
  position: relative;
}

.diferencial-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.diferencial-left {
  max-width: 420px;
}

.diferencial-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-terracotta);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.diferencial-left h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--primary-forest);
}

.diferencial-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.diferencial-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diferencial-card {
  background-color: var(--bg-card);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(45, 58, 46, 0.03);
  border-left: 3px solid var(--accent-gold);
  transition: var(--transition-smooth);
  position: relative;
}

.diferencial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 58, 46, 0.06);
}

.diferencial-card-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.diferencial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-forest);
  font-weight: 600;
}

.diferencial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* RESPONSIVIDADE (MEDIA QUERIES) */

@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .encontros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .jornada-hero {
    padding: 50px 0 40px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .gold-divider {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 320px;
  }
  
  .jornada-proposta {
    padding: 30px 0 40px;
  }
  
  .proposta-card {
    padding: 32px 20px;
  }
  
  .proposta-card h2 {
    font-size: 1.7rem;
  }
  
  .jornada-encontros {
    padding: 40px 0 50px;
  }
  
  .section-title-wrapper {
    margin-bottom: 36px;
  }
  
  .section-title-wrapper h2 {
    font-size: 1.8rem;
  }
  
  .encontros-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .jornada-estrutura {
    padding: 40px 0;
  }
  
  .jornada-cta {
    padding: 50px 0 60px;
  }
  
  .cta-card {
    padding: 40px 24px;
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
  }
  
  .jornada-diferencial {
    padding: 50px 0;
  }
  .diferencial-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .diferencial-left {
    max-width: 100%;
    margin: 0 auto;
  }
  .diferencial-left h2 {
    font-size: 2rem;
  }
  .diferencial-card {
    text-align: left;
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .proposta-card h2 {
    font-size: 1.5rem;
  }
  
  .proposta-text-main {
    font-size: 1rem;
  }
  
  .btn-whatsapp-cta {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
  }
}
