:root {
  --navbar-height: 40px;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* COR DE FUNDO: Paleta leve espiritual */
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdd000; /* 🌕 Amarelo-luz pálido */
    color: #333;
    scroll-behavior: smooth;
  }

  /*  wrapper toda altura */
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main.flex-grow-1 {
    flex: 1;
  }


  /* Navbar customizada */
  .navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #fab927 !important;
  }

  nav.navbar {
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }  
  
  .nav-link {
    color: #fff !important;
    font-weight: 500;
  }
  
  .nav-link:hover {
    color: #ffdf91 !important;
  }

  /* REDES SOCIAIS + PLAYER Navbar customizada DISCRETOS */
  .audio-container audio {
    max-width: 120px;
    height: 30px;
  }
  
  .social-links-nav a {
    color: #fff;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    margin-left: 0.5rem; /* espaçamento para o primeiro ícone */
  }
  
  .social-links-nav a:hover {
    opacity: 0.75;
  }
  
  @media (max-width: 575px) {
    .audio-container audio {
      max-width: 120px;
      height: 25px;
    }
  
    .social-links-nav a {
      font-size: 0.9rem;
      margin-right: 0.5rem;
    }
  }
  
  /* === JUMBOTRON === */
  /* Remove ou comente os estilos antigos */
  #jumbotron {
    /* background-color: #FFF8E1; */
    /* color: #E6D3B3; */
    padding-top: 80px;
    margin-top: var(--navbar-height);
    border-bottom: 1px solid #D4AF37;
    box-shadow: inset 0 -5px 15px rgba(212, 175, 55, 0.15);
  }

  #jumbotron h1 {
    /* color: #E6D3B3; */
    font-size: 2.5rem;
  }

  #jumbotron p {
    /* color: #A89F91; */
    font-size: 1.2rem;
  }
  .jumbotron-parallax {
    background-image: url('./img/banner-abstrato-02.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #D4AF37;
    box-shadow: inset 0 -5px 15px rgba(212, 175, 55, 0.1);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* RESPONSIVIDADE PARA MOBILE */
  @media (max-width: 768px) {
    .jumbotron-parallax {
      background-attachment: scroll; /* Desabilita o parallax no mobile */
      background-position: center top;
      min-height: 50vh;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }
  
  
  /* Camada escura por cima da imagem */
  .jumbotron-parallax::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* filtro escurecedor */
    z-index: 1;
  }
  
  .jumbotron-parallax .container {
    position: relative;
    z-index: 2;
  }
  


  /* ===== ABOUT SECTION ===== */
  #about {
    scroll-margin-top: 80px; /* altura do nav */
    background-color: #FFF8E1; /* Amarelo-luz pálido */
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #about h2 {
    color: #E6D3B3; /* Azul espiritual profundo */
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  }

  #about p {
    font-size: 1.1rem;
    color: #E6D3B3;
    line-height: 1.6;
  }

  #about .fw-semibold {
    color: #f4f4f4; /* Cinza taupe claro para destaque suave */
  }

  #about .card {
    background-color: #f4f4f4; /* Rosa antigo claro */
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  #about .card ul li {
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #E6D3B3;
  }

  #about .card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D4AF37; /* Dourado suave */
    font-weight: bold;
  }

  /* Responsividade */
  @media (max-width: 768px) {
    #about h2 {
      font-size: 1.7rem;
    }

    #about p {
      font-size: 1rem;
    }
  }

  iframe.rounded {
    border-radius: 8px;
  }
  

  /* Estilo dos cards dos guias espirituais */
  .guide-card {
    background-color: #f4f4f4 !important; /* Rosa antigo claro da paleta */
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .guide-card:hover {
    transform: translateY(-4px);
  }

  .guide-card h4 {
    color: #0f0f0f; /* Azul espiritual profundo */
  }

  .guide-card .social-links a {
    color: #0f0f0f;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
  }

  .guide-card .social-links a:hover {
    opacity: 0.7;
  }


  /* SERVIÇOS - Lista e Abas */
  #servicos {
    background-color: #E6D3B3; /* Verde claro acinzentado da paleta */
    color: #0f0f0f;
  }

  #servicos h2 {
    color: #0f0f0f;
  }

  #servicos .list-group-item {
    background-color: transparent;
    border: none;
    font-size: 1.05rem;
    color: #0f0f0f;
    padding-left: 1.5rem;
    position: relative;
  }

  #servicos .list-group-item::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #D4AF37; /* Dourado suave */
    font-size: 1.2rem;
  }

  .nav-tabs .nav-link {
    color: #0f0f0f !important; /* Azul espiritual profundo */
    font-weight: 500;
    background-color: #f7f4ef;
    border-radius: 8px 8px 0 0;
    margin: 0 4px;
  }

  .nav-tabs .nav-link.active {
    background-color: #fab927; /* Rosa antigo claro */
    color: #D4AF37;
    font-weight: 600;
    border-color: transparent transparent #D4AF37;
  }

  /* Para garantir que o título não fique escondido pelo NAV ao clicar na âncora */
  #servicos {
    scroll-margin-top: 80px;
  }

  /* ===== GALERIA DE VÍDEOS ===== */
  #galeria {
    background-color: #E0ECE4; /* 🌿 Verde-claro acinzentado */
    padding-top: 5rem;
    padding-bottom: 5rem;
    scroll-margin-top: 80px; /* Para evitar sobreposição com o navbar ao clicar no link */
  }

  #galeria h2 {
    font-size: 2.2rem;
    color: #E6D3B3; /* 🌌 Azul espiritual profundo */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  }

  #galeria .ratio {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  /* Espaço entre vídeos */
  #galeria .col-md-6 {
    display: flex;
    justify-content: center;
  }

  /* Responsivo em telas menores */
  @media (max-width: 767px) {
    #galeria h2 {
      font-size: 1.8rem;
    }
  }

  /* === SECTION PARCEIROS === */
  #parceiros {
    background-color: #E0ECE4; /* Verde-claro acinzentado da paleta */
    scroll-margin-top: 80px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #parceiros h2 {
    font-size: 2.2rem;
    color: #f4f4f4; /* Azul espiritual profundo */
    text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.2); /* leve toque dourado */
  }

  .parceiro-logo {
    max-height: 140px;        /* AUMENTA altura sem deformar */
    max-height: 100px;
    object-fit: contain;
    border-radius: 8px; /* 🔄 ARREDONDAMENTO SUAVE */
    transition: transform 0.3s ease;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.1));
  }

  @media (min-width: 992px) {
    .parceiro-logo {
      max-height: 160px;
    }
  }


  .parceiro-logo:hover {
    transform: scale(1.05);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #D4AF37; /* dourado suave */
    border-radius: 50%;
    padding: 10px;
  }

  /* === CONTATOS === */
  #contact {
    scroll-margin-top: 80px;
  }
  
  #contact .card {
    border-radius: 12px;
    background-color: #fdd000;
  }
  
  #contact .card p i {
    color: #0f0f0f;
    margin-right: 6px;
  }
  

   /* === FOOTER === */
  .footer {
    background-color: #A89F91; /* Mesma cor do nav */
    color: #0f0f0f !important;
    font-size: 0.95rem;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .footer a {
    color: #0f0f0f !important; /* amarelo-luz da paleta */
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #D4AF37; /* dourado suave ao passar o mouse */
    text-decoration: none;
  }

  /* === WHATSAPP === */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor oficial WhatsApp */
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  .banner-promocional {
    position: relative;
    min-height: 300px;
    background-color: #fab927;
    overflow: hidden;
  }
  
  .banner-promocional::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('./img/velas-translucidas.png') center/cover no-repeat;
    opacity: 0.1; /* deixa a imagem bem suave */
    z-index: 1;
  }
  
  .banner-promocional .z-index-2 {
    position: relative;
    z-index: 2;
    padding: 2rem;
  }
  