/* --- CONFIGURAÇÃO DE FONTES (AVENIR) --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* Paleta de Cores Oficial da Holística */
:root {
  --bg-champagne: #F7F6EA; 
  --bg-nude: #e3dfdf; 
  --bg-tertiary: #ffffff; 
  --bg-olive-soft: #D9D9C1; 
  --bg-off-white: #efefeb; 
  --text-primary: #333333;  
  --text-secondary: #f6f6f6;   
  --accent-olive-dark: #6D694C;
  --accent-olive: #2d2c1e;
  --bg-nav: #e8e6d9; 
  --footer-dark-olive: #2d2c1e;
  
  /* Hierarquia de fontes - Avenir primeiro */
  --font-main: 'Avenir', 'Avenir Next', 'Nunito', sans-serif;
}

/* Configurações Globais */
html, body {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-champagne);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h5 {
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-secondary);
}

/* Garante que textos em negrito usem a cor da marca */
strong {
    color: var(--accent-olive-dark);
}

/* Utilitários de Cor */
.bg-primary-holistica { background-color: var(--bg-champagne); }
.bg-secondary-holistica { background-color: var(--bg-olive-soft); }
.bg-nude-holistica { background-color: var(--bg-nude); }
.bg-tertiary-holistica { background-color: var(--bg-tertiary); }
.bg-accent-holistica { background-color: var(--accent-olive-dark); }
.text-primary-holistica { color: var(--text-primary); }
.text-accent-holistica { color: var(--accent-olive-dark); }
.border-accent-holistica { border-color: var(--accent-olive-dark); }
.border-accent-olive { border-color: var(--accent-olive); }
.bg-nav-holistica { background-color: var(--bg-nav); }

/* Botões Personalizados */
.btn-outline-holistica, .hero-btn, nav a {
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-primary-holistica {
  background-color: var(--accent-olive-dark);
  color: #F7F6EA !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-holistica:hover {
  background-color: #55523b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 105, 76, 0.3);
}

/* Cor Original do WhatsApp */
.btn-whatsapp-original {
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white !important;
    transition: all 0.3s ease;
}

.btn-whatsapp-original:hover {
    background-color: #128C7E; /* Verde escuro do WhatsApp para o hover */
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- SEÇÃO HERO VIDEO --- */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(16, 16, 14, 0.6);
    z-index: 2;
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero-overlay-acn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 135 graus cria a diagonal perfeita do topo-esquerdo para a base-direita */
    background: linear-gradient(
        135deg, 
        rgba(22, 22, 22, 0.351) 0%,   /* Bem escuro no canto do texto */
        rgba(109, 105, 76, 0.744) 50%,  /* Meia transparência no centro */
        rgba(49, 49, 49, 0.373) 100%    /* Totalmente limpo no canto oposto */
    );
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 135 graus cria a diagonal perfeita do topo-esquerdo para a base-direita */
    background: linear-gradient(
        135deg, 
        rgba(22, 22, 22, 0.551) 0%,   /* Bem escuro no canto do texto */
        rgba(109, 105, 76, 0.744) 50%,  /* Meia transparência no centro */
        rgba(49, 49, 49, 0.773) 100%    /* Totalmente limpo no canto oposto */
    );
    z-index: 2;
}

.hero-content h5 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.263);
    color: #F7F6EA;
}

.hero-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Customização das bolinhas do slide */
.swiper-pagination-bullet {
    background: #6D694C !important; /* Oliva da marca */
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: #6D694C !important; /* Oliva mais forte no ativo */
    opacity: 1 !important;
}

/* --- TABELA E TIMELINE (MANTENHA O RESTANTE DO SEU CÓDIGO ABAIXO) --- */
.tabela-comparativa-holistica {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background-color: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tabela-comparativa-holistica th, 
.tabela-comparativa-holistica td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tabela-comparativa-holistica th {
    background-color: var(--bg-nav);
    color: var(--text-primary);
    font-weight: 700;
}

/* Coluna de Destaque (Método Francês) */
.tabela-comparativa-holistica .highlight {
    background-color: rgba(217, 217, 193, 0.2); /* var(--bg-olive-soft) com transparência */
    color: var(--accent-olive-dark);
    font-weight: 600;
}

.tabela-comparativa-holistica th.highlight {
    background-color: var(--accent-olive-dark);
    color: var(--bg-champagne);
}

/* Primeira coluna (Nomes das características) */
.tabela-comparativa-holistica td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    background-color: #fafafa;
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .tabela-comparativa-holistica th, 
    .tabela-comparativa-holistica td {
        padding: 12px 8px;
        font-size: 14px;
    }
}

/* Ajuste na primeira coluna para acomodar os ícones */
.tabela-comparativa-holistica td:first-child span {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    font-size: 0.95rem;
}

/* Deixar o destaque da coluna do Método Francês ainda mais profissional */
.tabela-comparativa-holistica .highlight {
    background-color: rgba(109, 105, 76, 0.05); /* Um toque bem leve do verde olive */
    border-left: 1px solid rgba(109, 105, 76, 0.1);
    border-right: 1px solid rgba(109, 105, 76, 0.1);
}

/* --- ESTILO DOS ÍCONES DA TABELA --- */
.icon-svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-olive-dark); /* Cor verde-azeitona da sua marca */
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0; /* Impede o ícone de amassar em telas menores */
}

/* Ajuste fino na célula da tabela */
.tabela-comparativa-holistica td:first-child div {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
}

/* --- TIMELINE VERTICAL --- */
@media (max-width: 768px) {
    .border-2-2 { display: none; } /* Esconde a linha no celular */
}

.right-timeline, .left-timeline {
    transition: transform 0.3s ease;
}

.right-timeline:hover, .left-timeline:hover {
    transform: translateX(5px);
}

.bg-accent-olive-dark {
    background-color: var(--accent-olive-dark);
}

.timeline-v2 {
  background-color: var(--bg-champagne);
  padding: 60px 0;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px; /* Espaço entre os itens */
}

/* LINHA CENTRAL - Sempre no meio */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--accent-olive-dark);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* NÚMEROS - Sempre no meio */
.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--bg-tertiary);
  border: 3px solid var(--accent-olive-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--accent-olive-dark);
  font-size: 1.1rem;
  box-shadow: 0 0 0 10px var(--bg-champagne); /* Cria um respiro ao redor do número */
}

/* CARDS */
.timeline-card {
  background-color: var(--bg-tertiary);
  width: 42%; /* Desktop width */
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Lógica de posicionamento Desktop */
.timeline-item.left { justify-content: flex-start; }
.timeline-item.right { justify-content: flex-end; }

/* Inverter ordem imagem/texto conforme o lado no desktop */
.timeline-item.left .timeline-card { flex-direction: row-reverse; text-align: right; }
.timeline-item.right .timeline-card { flex-direction: row; text-align: left; }

.card-img {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
}

.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-content h3 { color: var(--accent-olive-dark); margin: 0 0 8px 0; font-size: 1.2rem; }
.dashed-line { border-bottom: 2px dashed #ccc; margin-bottom: 12px; }


/* AJUSTES MOBILE OTIMIZADOS */
@media (max-width: 850px) {
  .container { 
    gap: 60px; 
  }

  /* Mantém a linha e o número centralizados */
  .timeline-line { left: 50%; }
  .timeline-number { top: -25px; left: 50%; }

  .timeline-item {
    justify-content: center !important;
    margin-top: 10px;
  }

  .timeline-card {
    width: 95%; /* O card ocupa a largura da tela */
    flex-direction: row !important; /* MANTÉM imagem e texto lado a lado */
    align-items: center;
    padding: 15px;
    padding-top: 35px; /* Espaço para o número não cobrir o conteúdo */
    gap: 15px;
  }

  /* TRAVA O TAMANHO DA IMAGEM */
  .card-img {
    flex: 0 0 100px; /* Largura fixa de 100px - não cresce nem diminui */
    height: 100px;    /* Altura fixa de 100px */
    width: 100px;
    border-radius: 12px;
  }

  .card-content h3 {
    font-size: 1.1rem; /* Diminui um pouco o título para caber no lado */
    line-height: 1.2;
  }

  .card-content p {
    font-size: 0.85rem; /* Texto levemente menor para mobile */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limita a 3 linhas para não esticar demais o card */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Ajuste para telas muito pequenas (iPhone SE, etc) */
  @media (max-width: 400px) {
    .timeline-card {
      flex-direction: column !important; /* Só empilha se a tela for minúscula */
      text-align: center;
    }
    .card-img {
      margin: 0 auto;
    }
  }
}

/* --- SISTEMA DE BOTÕES PREMIUM HOLÍSTICA --- */

/* Botão Solid (Usado em CTAs) - Sem transparência */
.btn-solid-holistica {
    background: var(--accent-olive) !important;
    color: white !important;
    border-radius: 0.5rem !important; /* Formato Waze (rounded-lg) */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Salto suave */
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-solid-holistica:hover {
    transform: scale(1.05) translateY(-3px) !important;
    background: var(--accent-olive-dark) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    color: white !important;
}

/* Botões Glass (Usados no Hero - Transparência + Salto) */
.btn-glass-holistica {
    background: rgba(115, 112, 99, 0) !important; /* Accent olive dark com transparência */
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 0.5rem !important; /* Formato Waze (rounded-lg) */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Salto suave */
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-glass-holistica:hover {
    transform: scale(1.05) translateY(-3px) !important;
    background: rgba(115, 112, 99, 1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    color: white !important;
}

/* Botão Secundário (Modelo do Menu Agendar) */
.btn-secondary-holistica {
    background: var(--accent-olive-dark) !important;
    color: white !important;
    border-radius: 0.5rem !important; /* Formato Waze */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block;
    text-align: center;
}

.btn-secondary-holistica:hover {
    background: var(--accent-olive) !important;
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}