/* ========================================
   APENAS RESPIRE - CSS OTIMIZADO
   ======================================== */

/* ========================================
   VARIÁVEIS CSS (CUSTOM PROPERTIES)
   ======================================== */
   :root {
    /* Cores principais */
    --color-primary: #d4af37;
    --color-primary-light: #e6c252;
    --color-primary-dark: #b8941f;
    --color-secondary: #c4b896;
    --color-accent: #ffe066;
    --color-accent-light: #fff8b3;
    
    /* Cores de fundo */
    --bg-primary: #0a1a0a;
    --bg-secondary: #2d3e2d;
    --bg-light: #f5f1e8;
    --bg-dark: #232d23;
    
    /* Cores de texto */
    --text-primary: #c4b896;
    --text-secondary: #a09579;
    --text-light: #f5f1e8;
    --text-dark: #2d3e2d;
    
        /* Tipografia */
      --font-primary: 'Crimson Text', serif;
      --font-secondary: 'IM Fell English', serif;
      --font-accent: 'Cormorant Garamond', serif;
      --font-menu: 'IM Fell English', serif;
      --font-button: 'Montserrat', Arial, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 80px;
    
    /* Sombras */
    --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-medium: 0 2px 16px rgba(0,0,0,0.2);
    --shadow-heavy: 0 2px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 18px rgba(212, 175, 55, 0.4);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Breakpoints */
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
  }
  
  /* ========================================
     RESET E BASE
     ======================================== */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
  }
  
  body {
    min-height: 100vh;
    background: var(--bg-primary) url('bg-texture.png') repeat;
    background-size: cover;
    color: var(--text-primary);
    font-family: var(--font-primary);
    position: relative;
    z-index: 0;
    overflow-x: hidden;
  }
  
  /* Overlay de fundo */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, rgba(10,26,10,0.95) 60%, rgba(45,80,22,0.7) 100%);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
  }
  
  /* ========================================
     TIPOGRAFIA E HIERARQUIA
     ======================================== */
  h1, .main-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(184, 148, 31, 0.6), 0 2px 16px rgba(0,0,0,0.6);
    margin-bottom: var(--spacing-md);
  }
  
  h2, .section-title {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(184, 148, 31, 0.3), 0 2px 8px rgba(0,0,0,0.4);
  }
  
  h3, .subsection-title {
    font-size: 22px;
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
  }
  
  p, .body-text {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-sm);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  
  .descriptive {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  
  /* ========================================
     LAYOUT E CONTAINERS
     ======================================== */
  .container {
    max-width: var(--breakpoint-xl);
    margin: 0 auto;
    padding: var(--spacing-xxl) 20px;
    position: relative;
  }
  
  section {
    margin-bottom: 0;
  }
  
  .logo-section {
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
  }
  
  .sacred-symbol {
    display: inline-block;
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.8));
  }
  
  /* ========================================
     HERO SECTION
     ======================================== */
  .hero-section, .hero-alt-section {
    position: relative;
    min-height: 50vh;
    width: 100vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-family: var(--font-secondary);
  }
  
  .hero-full-bg {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('image/herosection.webp') center center no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
  }
  
  .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10,26,10,0.3) 0%, rgba(10,26,10,0.2) 100%);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
    min-height: 80vh;
    margin-top: 200px;
  }
  
  .hero-logo-img {
    display: block;
    margin: 0 auto var(--spacing-lg) auto;
    max-width: 440px;
    max-height: 45vh;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 32px rgba(0,0,0,0.7));
    transition: max-width var(--transition-normal), max-height var(--transition-normal);
  }
  
  .hero-title {
    font-family: var(--font-secondary);
    font-size: 54px;
    color: #e4cfa3;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 4px 32px rgba(0,0,0,0.8), 0 2px 16px rgba(0,0,0,0.6);
    margin-bottom: 18px;
  }
  
  .hero-subtitle {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.6);
  }
  
  /* ========================================
     BOTÕES
     ======================================== */
  .hero-btn {
    font-family: var(--font-button);
    font-size: 1.35rem;
    color: #fff0c3;
    background: rgba(255, 255, 224, 0.18);
    border: 2.5px solid #ffe066;
    border-radius: 18px !important;
    padding: 25px 64px;
    cursor: pointer;
    transition: all var(--transition-normal);
    letter-spacing: 1px;
    backdrop-filter: blur(8px) saturate(1.2);
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    box-shadow: 0 0 24px 4px rgba(255, 224, 102, 0.18), 0 2px 8px rgba(255, 215, 0, 0.13);
    margin-top: 64px;
    overflow: hidden;
  }
  .hero-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 10%, rgba(255,255,255,0.04) 80%);
    pointer-events: none;
    z-index: 2;
  }
  .hero-btn:hover {
    background: rgba(255, 255, 224, 0.32);
    color: #fff29e;
    border: 2.5px solid #ffe066;
    box-shadow: 0 0 32px 8px rgba(255, 224, 102, 0.28), 0 2px 12px rgba(255, 215, 0, 0.18);
    transform: scale(1.08);
  }
  
  /* Botões alternativos */
  .hero-alt-section button, .conecte-se-section button, .cta-btn, .ayahuasca-cta {
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: var(--shadow-light);
    font-family: var(--font-secondary);
  }
  
  .hero-alt-section button, .conecte-se-section button {
    background: #8b4513;
    color: #fff;
    border: none;
  }
  
  .hero-alt-section button:hover, .conecte-se-section button:hover {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
  }
  
  .cta-btn:hover, .ayahuasca-cta:hover {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
  }
  
  /* ========================================
     SEÇÃO AYAHUASCA
     ======================================== */
  .ayahuasca-section {
    background: url('image/herosectioninvertido.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
  }
  
  .ayahuasca-container {
    max-width: var(--breakpoint-xl);
    margin: 0 auto;
    padding: var(--spacing-xxl) 20px 40px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    position: relative;
    width: 100%;
  }
  
  .ayahuasca-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 12px 32px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .ayahuasca-title-row {
    width: 100%;
    text-align: center;
    padding: 20px 0 0 0;
  }
  
  .ayahuasca-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 0;
  }
  
  .ayahuasca-text-block {
    min-width: 280px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  
  .ayahuasca-img-single {
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  
  .ayahuasca-img {
    width: 100%;
    max-width: 540px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy), 0 0 0 2.5px rgba(212, 175, 55, 0.8);
    background: var(--bg-dark);
    object-fit: cover;
    display: block;
  }
  
  .ayahuasca-btn-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }
  
  .ayahuasca-btn-mobile { display: none; }
  .ayahuasca-btn-desktop { display: flex; }
  @media (max-width: 700px) {
    .ayahuasca-btn-mobile { display: flex; justify-content: center; margin-top: 24px; }
    .ayahuasca-btn-desktop { display: none; }
  }
  
  @media (max-width: 900px) {
    .ayahuasca-content {
      padding: 32px 2vw 24px 2vw;
    }
    .ayahuasca-grid {
      gap: 32px;
    }
  }
  @media (max-width: 700px) {
    .ayahuasca-content {
      padding: 18px 2vw 24px 2vw;
      max-width: 98vw;
    }
    .ayahuasca-title-row {
      padding-top: 20px;
    }
    .ayahuasca-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      gap: 28px;
      margin-top: 10px;
    }
    .ayahuasca-img-single {
      margin: 0 0 12px 0 !important;
      padding: 0 !important;
      max-width: 98vw;
      width: 100%;
    }
    .ayahuasca-img {
      max-width: 98vw;
      margin: 0 !important;
      padding: 0 !important;
      display: block;
      vertical-align: top;
      border: none;
    }
    .ayahuasca-text-block {
      max-width: 98vw;
      align-items: center;
      text-align: center;
      gap: 10px;
      margin: 0 !important;
      padding: 0 !important;
    }
    .ayahuasca-btn-row {
      margin-top: 24px;
    }
  }
  
  /* ========================================
     SEÇÃO MEDICINAS
     ======================================== */
  .medicina-section {
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .medicines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: 40px;
    justify-content: center;
  }
  @media (max-width: 700px) {
    .medicines-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      justify-content: center;
    }
  }
  
  .medicine-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    min-width: 220px;
    margin: 0 auto;
  }
  
  .medicine-block img {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: none;
    border: none;
    background: var(--bg-dark);
    object-fit: cover;
    display: block;
  }
  
  .medicine-block h3 {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: 26px;
    margin-bottom: var(--spacing-xs);
    text-align: center;
    font-weight: 400;
  }
  
  .medicine-block .descriptive {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
  }
  
  .medicina-intro, .medicina-epilogue {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1.35rem;
    font-style: normal;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .medicina-epilogue {
    margin: 32px auto 0 auto;
    font-size: 1.55rem;
  }
  @media (max-width: 700px) {
    .medicina-intro, .medicina-epilogue {
      font-size: 1.18rem;
    }
    .medicina-epilogue {
      margin-top: 20px;
      font-size: 1.08rem;
    }
  }
  
  .medicina-epilogue-container {
    border: 2px solid var(--color-primary);
    border-radius: 22px;
    padding: 24px 48px;
    margin: 40px auto 0 auto;
    max-width: 1100px;
    background: rgba(20,30,20,0.32);
    box-shadow: 0 0 24px 2px rgba(212, 175, 55, 0.18), 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-invite-glow 3.5s ease-in-out infinite alternate;
    backdrop-filter: blur(3px);
    transition: box-shadow 0.4s, background 0.4s;
  }
  .medicina-epilogue {
    font-family: var(--font-menu);
    color: #e4cfa3;
    font-size: 1.38rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 0 16px #d4af3788;
  }
  @media (max-width: 900px) {
    .medicina-epilogue-container {
      max-width: 98vw;
      padding: 18px 4vw;
    }
    .medicina-epilogue {
      font-size: 1.12rem;
    }
  }
  
  /* ========================================
     SEÇÃO CÍRCULO
     ======================================== */
  .circulo-section {
    background: none;
    box-shadow: none;
    border-radius: 24px;
    position: relative;
    overflow: visible;
    margin-top: 72px;
    margin-bottom: 72px;
    z-index: 1;
    padding: 0;
  }
  .circulo-section::before { display: none !important; }
  .circulo-section > * {
    position: relative;
    z-index: 3;
  }
  
  .philosophy {
    font-family: var(--font-primary);
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  
  .principles-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
    margin-top: var(--spacing-md);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 1200px) {
    .principles-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 900px) {
    .principles-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .principle-item {
      max-width: 98vw;
      padding: 16px 10px;
      font-size: 1rem;
    }
    .principle-icon {
      font-size: 1.6rem;
    }
  }
  @media (max-width: 600px) {
    .principles-list {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .principle-item {
      max-width: 98vw;
      padding: 14px 6px;
      font-size: 0.98rem;
    }
    .principle-icon {
      font-size: 1.3rem;
    }
  }
  
  .principle-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(30,40,30,0.7);
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: var(--shadow-light);
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 18px;
    max-width: 420px;
    text-align: left;
  }
  .principle-icon {
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .principle-item span {
    display: block;
    font-size: 1.08rem;
    color: #fffbe6;
    line-height: 1.5;
  }
  
  /* ========================================
     ÍCONES
     ======================================== */
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
    background: none;
  }
  
  .icon i {
    font-size: 2em;
    vertical-align: middle;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
  }
  
  /* ========================================
     SEÇÃO CONECTE-SE
     ======================================== */
  .conecte-se-section {
    background: linear-gradient(rgba(45,74,45,0.7),rgba(45,74,45,0.7)), 
                url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    border-radius: 0;
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-heavy);
  }
  
  .conecte-se-section h2 {
    color: #fff;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.8), 0 2px 16px rgba(0,0,0,0.6);
  }
  
  /* ========================================
     FOOTER
     ======================================== */
  footer {
    background: var(--bg-secondary);
    color: var(--color-primary);
    padding: 60px 20px 40px;
    border-radius: 0;
    margin-top: 64px;
    box-shadow: 0 -2px 32px rgba(0,0,0,0.6);
  }
  
  footer a {
    color: var(--color-primary);
    transition: color var(--transition-fast);
    text-decoration: none;
  }
  
  footer a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
  }
  
  footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Footer Institucional */
  /*
  .footer-institucional {
    background: #e4cfa3;
    color: #2d3e2d;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  */
  
  .footer-top {
    background: linear-gradient(135deg, #1a2f1a 0%, #223b2d 50%, #1a2f1a 100%);
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23e4cfa3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
  }
  
  .footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
  }
  
  .footer-logo {
    display: block;
    margin: 0 auto 8px auto;
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 16px rgba(228, 207, 163, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(228, 207, 163, 0.6));
  }
  
  .footer-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  
  .footer-title {
    font-family: 'IM Fell English', serif;
    font-size: 42px;
    color: #e4cfa3;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 12px rgba(228, 207, 163, 0.3);
    position: relative;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e4cfa3 50%, transparent 100%);
    opacity: 0.7;
  }
  
  .footer-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #e4cfa3;
    letter-spacing: 3px;
    font-weight: 400;
    margin-top: 2px;
    text-shadow: 0 2px 12px #0005;
  }
  
  .footer-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    background: none;
    padding: 32px 0 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    box-shadow: none;
  }
  
  .footer-col {
    min-width: 120px;
    max-width: 240px;
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-col-title {
    font-family: 'IM Fell English', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #e4cfa3;
    text-shadow: none;
    position: relative;
    background: none;
    border: none;
    padding: 0;
  }
  
  .footer-contact {
    font-size: 16px;
    margin-bottom: 8px;
    color: #e4cfa3;
    font-family: 'Crimson Text', serif;
    background: none;
    border: none;
    padding: 0;
  }
  
  .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    background: none;
    border: none;
    padding: 0;
  }
  
  .footer-social i {
    font-size: 24px;
    color: #e4cfa3;
    filter: none;
    background: none;
    border: none;
    transition: color 0.2s;
  }
  
  .footer-social:hover i {
    color: #ffe066;
    transform: none;
    filter: none;
  }
  
  @media (max-width: 900px) {
    .footer-main {
      flex-direction: column;
      gap: 16px;
      align-items: center;
      padding: 24px 0 8px 0;
    }
    .footer-col {
      align-items: center;
      text-align: center;
      min-width: 0;
      max-width: 98vw;
    }
  }
  
  /* ========================================
     MENU HERO
     ======================================== */
  .hero-menu {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: var(--spacing-xl);
    background: rgba(10,26,10,0.55);
    padding: 18px var(--spacing-xl);
    border-radius: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
    font-family: var(--font-menu);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #e4cfa3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e4cfa3;
    white-space: nowrap;
    max-width: 98vw;
    overflow-x: auto;
  }
  
  .hero-menu a {
    color: #e4cfa3;
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    padding: 2px 6px;
    border-radius: 6px;
  }
  
  .hero-menu a:hover {
    color: #fffbe6;
    text-shadow: 0 0 8px #e4cfa3, 0 2px 8px rgba(0,0,0,0.6);
    background: rgba(228,207,163,0.08);
  }
  
  /* ========================================
     ELEMENTOS HERO
     ======================================== */
  .hero-impact {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: #e4cfa3;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.8), 0 2px 16px rgba(0,0,0,0.6);
  }
  
  .hero-support {
    font-family: var(--font-primary);
    color: var(--text-light);
    font-size: 1.25rem;
    font-style: normal;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.6);
    margin-bottom: 18px;
  }
  .hero-invite {
    font-family: var(--font-menu);
    font-size: 2.1rem;
    color: #e4cfa3;
    font-style: italic;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  
  /* ========================================
     ANIMAÇÕES FIREFLIES
     ======================================== */
  .fireflies {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
  }
  
  .firefly {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 251, 230, 0.7) 0%, rgba(255, 224, 102, 0.5) 60%, transparent 100%);
    opacity: 0.7;
    box-shadow: 0 0 8px 3px rgba(255, 224, 102, 0.3), 0 0 16px 4px rgba(255, 215, 0, 0.15);
    animation: firefly-move 15s linear infinite, firefly-pulse 6s ease-in-out infinite;
  }
  
  /* Fireflies individuais com trajetórias diferentes */
  .firefly:nth-child(1) { width: 2px; height: 2px; left: 8vw; --start-left: 8vw; animation-delay: 0s, 0.2s; }
  .firefly:nth-child(2) { width: 3px; height: 3px; left: 25vw; --start-left: 25vw; animation-delay: 4.2s, 0.7s; }
  .firefly:nth-child(3) { width: 1px; height: 1px; left: 42vw; --start-left: 42vw; animation-delay: 8.1s, 1.1s; }
  .firefly:nth-child(4) { width: 2px; height: 2px; left: 18vw; --start-left: 18vw; animation-delay: 2.7s, 0.5s; }
  .firefly:nth-child(5) { width: 3px; height: 3px; left: 65vw; --start-left: 65vw; animation-delay: 10.7s, 1.3s; }
  .firefly:nth-child(6) { width: 2px; height: 2px; left: 35vw; --start-left: 35vw; animation-delay: 6.3s, 0.9s; }
  .firefly:nth-child(7) { width: 1px; height: 1px; left: 78vw; --start-left: 78vw; animation-delay: 12.5s, 0.4s; }
  .firefly:nth-child(8) { width: 2px; height: 2px; left: 55vw; --start-left: 55vw; animation-delay: 9.9s, 1.7s; }
  .firefly:nth-child(9) { width: 3px; height: 3px; left: 12vw; --start-left: 12vw; animation-delay: 3.1s, 0.8s; }
  .firefly:nth-child(10) { width: 1px; height: 1px; left: 88vw; --start-left: 88vw; animation-delay: 11.7s, 1.5s; }
  .firefly:nth-child(11) { width: 2px; height: 2px; left: 32vw; --start-left: 32vw; animation-delay: 7.4s, 0.6s; }
  .firefly:nth-child(12) { width: 3px; height: 3px; left: 72vw; --start-left: 72vw; animation-delay: 13.9s, 1.2s; }
  
  @keyframes firefly-move {
    0% { bottom: 0; left: var(--start-left); opacity: 0; }
    10% { opacity: 0.7; }
    25% { left: calc(var(--start-left) + 5vw); }
    50% { left: calc(var(--start-left) - 3vw); }
    75% { left: calc(var(--start-left) + 2vw); }
    90% { opacity: 0.7; }
    100% { bottom: 90vh; left: calc(var(--start-left) + 1vw); opacity: 0; }
  }
  
  @keyframes firefly-pulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(0.95); }
  }
  
  /* ========================================
     RESPONSIVIDADE
     ======================================== */
  
  /* Desktop grande */
  @media (max-width: 1200px) {
    .container { max-width: 98vw; }
  }
  
  /* Tablet grande */
  @media (max-width: 1024px) {
    .container, .ayahuasca-section, .medicina-section, .circulo-section, 
    .sobre-nos-section, .sobre-nos-detailed-section, .cerimonia-ayahuasca-section, 
    .beneficios-preview-section, .preparacao-section, .integracao-section, .conecte-se-section {
      padding: 60px 10px;
    }
    
    .medicines-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-alt-section h1 { font-size: 40px; }
  }
  
  /* Tablet */
  @media (max-width: 900px) {
    .container, .ayahuasca-section, .medicina-section, .circulo-section, 
    .sobre-nos-section, .sobre-nos-detailed-section, .cerimonia-ayahuasca-section, 
    .beneficios-preview-section, .preparacao-section, .integracao-section, .conecte-se-section {
      padding: 48px 4vw;
    }
    
    .medicines-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-alt-section h1 { font-size: 32px; }
    
    .hero-content { min-height: 60vh; }
    
    .ayahuasca-img-single {
      min-width: 400px;
      max-width: 90vw;
    }
    
    .ayahuasca-img {
      width: 450px;
      max-width: 90vw;
    }
    
    .footer-main { gap: 40px; }
    .principles-list {
      flex-direction: column;
      align-items: center;
      gap: 18px;
      width: 100%;
      margin-top: var(--spacing-md);
    }
    .principle-item {
      width: 100%;
      max-width: 98vw;
      min-width: 0;
      margin: 0 auto;
      box-sizing: border-box;
      padding: var(--spacing-md) 6vw;
      font-size: 1.08rem;
    }
  }
  
  /* Mobile grande */
  @media (max-width: 768px) {
    .container, .ayahuasca-section, .medicina-section, .circulo-section, 
    .sobre-nos-section, .sobre-nos-detailed-section, .cerimonia-ayahuasca-section, 
    .beneficios-preview-section, .preparacao-section, .integracao-section, .conecte-se-section {
      padding: 32px 3vw;
    }
    
    .ayahuasca-section, .medicina-section, .circulo-section, .sobre-nos-section, 
    .sobre-nos-detailed-section, .cerimonia-ayahuasca-section, .beneficios-preview-section, 
    .preparacao-section, .integracao-section, .conecte-se-section, footer .container {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 24px !important;
    }
    
    .ayahuasca-img, .medicines-grid {
      align-items: center;
    }
    
    .hero-alt-section h1 {
      font-size: 2rem !important;
      line-height: 1.15;
      margin-bottom: 18px !important;
    }
    .principles-list { flex-direction: column; gap: 16px; }
    .medicine-block img { width: 100% !important; max-width: 95vw !important; }
    .sacred-symbol { width: 80px; height: 80px; }
    
    .footer-main {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .footer-col { align-items: center; }
  }
  
  /* Mobile médio */
  @media (max-width: 700px) {
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-btn { font-size: 16px; padding: 10px 24px; }
    .hero-content { padding-bottom: 120px; min-height: 40vh; }
    
    .ayahuasca-container {
      flex-direction: column;
      align-items: center;
      padding: 18px 2vw 24px 2vw !important;
      gap: 0 !important;
    }
    
    .ayahuasca-img-single {
      order: -1;
      margin: 0 0 8px 0 !important;
      min-width: 0 !important;
      padding: 0 !important;
      max-width: 98vw !important;
      width: 100% !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .ayahuasca-img {
      width: 100% !important;
      max-width: 340px !important;
      margin: 0 auto 0 auto !important;
      padding: 0 !important;
      display: block;
      vertical-align: top;
      border: none;
    }
    
    .ayahuasca-text {
      align-items: center !important;
      text-align: center !important;
      max-width: 98vw !important;
      gap: 10px !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    .ayahuasca-title-row {
      margin: 0 !important;
      padding: 0 !important;
    }
    
    .ayahuasca-title-row h2 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
    }
    
    .medicines-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
      justify-content: center;
    }
    
    .medicine-block {
      max-width: 98vw;
      min-width: 0;
      width: 100%;
      margin: 0 auto;
    }
    
    .medicine-block img {
      max-width: 98vw;
    }
    
    .hero-menu {
      font-size: 17px;
      gap: 18px;
      padding: 8px 2vw;
    }
  }
  
  /* Mobile pequeno */
  @media (max-width: 600px) {
    .hero-logo-img {
      max-width: 300px;
      max-height: 40vh;
    }
    
    .hero-content {
      min-height: 40vh;
      padding: 0 1vw;
      margin-top: 8vh;
    }
    
    .hero-impact { font-size: 1.1rem; margin-bottom: 16px; margin-top: 18px; }
    .hero-support { font-size: 1.3rem; margin-bottom: 16px; }
    .hero-invite { font-size: 1.7rem; margin-bottom: 28px; }
    .hero-btn { font-size: 0.92rem; padding: 10px 28px; margin-top: 18px; }
    
    .hero-menu {
      max-width: 98vw;
      width: calc(88vw - 0vw);
      padding: 5px 0;
      box-sizing: border-box;
      border-radius: 9px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px 10px;
      font-size: 21px;
      line-height: 1.0;
      white-space: normal;
    }
    
    .hero-menu a {
      display: block;
      padding: 4px 3px;
      width: auto;
    }
  }
  
  /* Mobile muito pequeno */
  @media (max-width: 480px) {
    .container, .ayahuasca-section, .medicina-section, .circulo-section, 
    .sobre-nos-section, .sobre-nos-detailed-section, .cerimonia-ayahuasca-section, 
    .beneficios-preview-section, .preparacao-section, .integracao-section, .conecte-se-section {
      padding: 18px 2vw;
    }
    
    .hero-title { font-size: 20px; }
    .hero-subtitle { font-size: 13px; }
    .hero-btn { font-size: 13px; padding: 7px 14px; }
    .hero-alt-section h1 { font-size: 16px; }
    .sacred-symbol { width: 48px; height: 48px; }
    
    .hero-menu {
      font-size: 15px;
      gap: 8px;
      padding: 4px 1vw;
    }
    
    .footer-title { font-size: 24px; }
    .footer-subtitle { font-size: 14px; }
    .footer-logo { width: 56px; height: 56px; }
    .footer-main { padding: 24px 4vw 16px 4vw; }
    .footer-copyright { font-size: 14px; padding: 12px 0 20px 0; }
  }
  
  /* ========================================
     UTILITÁRIOS
     ======================================== */
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .text-right { text-align: right; }
  
  .mb-0 { margin-bottom: 0; }
  .mb-1 { margin-bottom: var(--spacing-xs); }
  .mb-2 { margin-bottom: var(--spacing-sm); }
  .mb-3 { margin-bottom: var(--spacing-md); }
  .mb-4 { margin-bottom: var(--spacing-lg); }
  .mb-5 { margin-bottom: var(--spacing-xl); }
  
  .mt-0 { margin-top: 0; }
  .mt-1 { margin-top: var(--spacing-xs); }
  .mt-2 { margin-top: var(--spacing-sm); }
  .mt-3 { margin-top: var(--spacing-md); }
  .mt-4 { margin-top: var(--spacing-lg); }
  .mt-5 { margin-top: var(--spacing-xl); }
  
  .p-0 { padding: 0; }
  .p-1 { padding: var(--spacing-xs); }
  .p-2 { padding: var(--spacing-sm); }
  .p-3 { padding: var(--spacing-md); }
  .p-4 { padding: var(--spacing-lg); }
  .p-5 { padding: var(--spacing-xl); }
  
  .d-none { display: none; }
  .d-block { display: block; }
  .d-flex { display: flex; }
  .d-grid { display: grid; }
  
  .justify-center { justify-content: center; }
  .align-center { align-items: center; }
  .flex-column { flex-direction: column; }
  .flex-wrap { flex-wrap: wrap; }
  
  @media (max-width: 700px) {
    .circulo-section {
      border-radius: 14px;
      margin-top: 40px;
      margin-bottom: 40px;
      padding: 0;
    }
  }
  
  .galeria-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin: 40px auto 0 auto;
    max-width: 1100px;
  }
  .video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  .video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #181f18;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.10), 0 2px 12px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .video-nome {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--color-primary);
    text-align: center;
    margin-top: 4px;
    letter-spacing: 1px;
  }
  @media (max-width: 1000px) {
    .galeria-videos {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
  @media (max-width: 700px) {
    .galeria-videos {
      grid-template-columns: 1fr;
      gap: 18px;
      max-width: 98vw;
    }
    .video-wrapper {
      border-radius: 10px;
    }
  }
  
  .video-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(212,175,55,0.10);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181f18;
  }
  .video-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.08);
    transition: filter 0.3s;
  }
  .video-thumb:hover {
    box-shadow: 0 8px 40px 4px rgba(212,175,55,0.18), 0 4px 16px rgba(212,175,55,0.18);
    transform: scale(1.025);
  }
  .video-thumb:hover img {
    filter: brightness(1.01) contrast(1.12);
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background: rgba(20,30,20,0.72);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(212,175,55,0.18);
  }
  .play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 26px solid #ffe066;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 8px;
  }
  @media (max-width: 700px) {
    .video-thumb {
      border-radius: 10px;
    }
    .play-btn {
      width: 44px;
      height: 44px;
    }
    .play-btn::after {
      border-left: 18px solid #ffe066;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      margin-left: 4px;
    }
  }
  
  .guardioes-section {
    margin: 56px auto 0 auto;
    padding: 0 0 48px 0;
    text-align: center;
  }
  .guardioes-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .guardioes-subtitle {
    color: var(--text-light);
    font-size: 1.18rem;
    margin-bottom: 36px;
    font-family: var(--font-primary);
    opacity: 0.85;
  }
  .guardioes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 0;
    margin-top: 0;
    position: relative;
  }
  .guardiao-card {
    background: rgba(20,30,20,0.32);
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.18), 0 2px 16px rgba(0,0,0,0.18);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 18px 24px 18px;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
    margin-top: -32px;
  }
  .guardiao-card:nth-child(2), .guardiao-card:nth-child(3) {
    margin-top: 0;
  }
  .guardiao-card:hover {
    box-shadow: 0 16px 48px 8px rgba(212,175,55,0.28), 0 4px 24px rgba(0,0,0,0.22);
    border-color: var(--color-primary-light);
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
  }
  .guardiao-foto {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-bottom: 12px;
    position: relative;
  }
  .guardiao-foto::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg width="128" height="128" viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12,64 Q24,12 64,12 Q104,12 116,64 Q104,116 64,116 Q24,116 12,64 Z" stroke='%23d4af37' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' fill='none' /><path d="M24,24 Q64,0 104,24" stroke='%23d4af37' stroke-width='2' stroke-linecap='round' fill='none' /><path d="M24,104 Q64,128 104,104" stroke='%23d4af37' stroke-width='2' stroke-linecap='round' fill='none' /></svg>') center/cover no-repeat;
    border-radius: 50%;
    opacity: 0.95;
  }
  .guardiao-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
  }
  .guardiao-nome {
    font-family: var(--font-secondary);
    font-size: 1.22rem;
    color: var(--color-primary);
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .guardiao-funcao {
    font-family: var(--font-primary);
    color: var(--text-light);
    font-size: 1rem;
    opacity: 0.92;
    margin-bottom: 0;
  }
  @media (max-width: 1100px) {
    .guardioes-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 800px) {
    .guardioes-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 500px) {
    .guardioes-grid {
      grid-template-columns: 1fr;
    }
    .guardiao-card {
      margin-top: 0;
    }
  }
  
  .guardioes-title-bold {
    font-family: 'IM Fell English', 'Montserrat', serif !important;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
  }
  .guardioes-row-minis {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
  }
  .guardiao-mini {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 4px rgba(212,175,55,0.10);
    background: #181f18;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .guardiao-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    filter: grayscale(0.15) contrast(1.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .guardiao-mini:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 8px 40px 8px rgba(212,175,55,0.25), 0 4px 16px rgba(212,175,55,0.18);
  }
  .guardiao-mini:hover img {
    filter: grayscale(0) contrast(1.18) brightness(1.08);
    border-radius: 16px;
  }
  .guardiao-hover-info {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(20,20,20,0.98);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(212,175,55,0.25), 0 4px 16px rgba(0,0,0,0.3);
    padding: 16px 20px 14px 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 180px;
    text-align: center;
    margin-top: 12px;
    font-size: 1rem;
    z-index: 20;
    white-space: normal;
    border: 2px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(4px);
  }
  .guardiao-hover-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent rgba(20,20,20,0.98) transparent;
    width: 0;
    height: 0;
  }
  .guardiao-mini:hover .guardiao-hover-info,
  .guardiao-mini:focus .guardiao-hover-info,
  .guardiao-mini.active .guardiao-hover-info {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
  }
  .guardiao-nome {
    font-family: var(--font-secondary);
    color: var(--color-primary);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  .guardiao-funcao {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1rem;
    opacity: 0.92;
    margin-bottom: 8px;
  }
  .guardiao-desc {
    font-family: var(--font-primary);
    color: #e4cfa3;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.85;
  }
  @media (hover: none) and (pointer: coarse) {
    .guardiao-mini:active .guardiao-hover-info,
    .guardiao-mini:focus .guardiao-hover-info {
      opacity: 1;
      transform: translateX(-50%) scale(1);
      pointer-events: auto;
    }
  }
  
  .guardioes-legenda {
    color: #bbb;
    font-size: 1rem;
    text-align: center;
    margin-top: 18px;
    opacity: 0.7;
    font-family: var(--font-primary);
  }
  @media (max-width: 700px) {
    .guardioes-title-bold {
      font-size: 2.1rem;
      margin-bottom: 18px;
    }
    .guardioes-row-minis {
      gap: 10px;
    }
    .guardiao-mini {
      width: 90px;
      height: 90px;
      border-radius: 14px;
    }
    .guardiao-hover-info {
      font-size: 0.92rem;
      min-width: 90px;
      padding: 7px 10px 6px 10px;
    }
  }
  
  .footer-imersivo {
    width: 100vw;
    padding: 64px 0 32px 0;
    background: url('image/footerbg.webp') center bottom/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    position: relative;
    min-height: 320px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  footer a,
  .footer-social-link,
  .footer-whatsapp-btn {
    text-decoration: none !important;
  }
  
  footer a:hover,
  .footer-social-link:hover,
  .footer-whatsapp-btn:hover {
    text-decoration: none !important;
  }
  
  .footer-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-logo-grande {
    max-width: 180px;
    width: 28vw;
    min-width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 32px rgba(0,0,0,0.45));
  }
  .footer-copyright {
    color: #e4cfa3;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 16px;
    opacity: 0.8;
    font-family: var(--font-primary);
  }
  
  .footer-credits {
    color: #ffe066;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .footer-credits:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 224, 102, 0.6);
  }
  
  .footer-instituto {
    margin-top: 12px;
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid rgba(228, 207, 163, 0.2);
  }
  
  .instituto-nome {
    color: #e4cfa3;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: var(--font-primary);
    opacity: 0.9;
  }
  
  .instituto-cnpj {
    color: #c4b896;
    font-size: 0.75rem;
    font-weight: 300;
    font-family: var(--font-primary);
    opacity: 0.7;
  }
  
  @media (max-width: 700px) {
    .footer-instituto {
      margin-top: 8px;
      padding: 6px 0;
    }
    
    .instituto-nome {
      font-size: 0.8rem;
    }
    
    .instituto-cnpj {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-instituto {
      margin-top: 6px;
      padding: 4px 0;
    }
    
    .instituto-nome {
      font-size: 0.75rem;
    }
    
    .instituto-cnpj {
      font-size: 0.65rem;
    }
  }
  
  .footer-socials-imersivo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  .footer-social-link {
    color: #d4af37;
    font-size: 2.2rem;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid transparent;
  }
  .footer-social-link:hover {
    color: #fff8b3;
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
  }
  .footer-whatsapp-btn {
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.08rem;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-light);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-family: var(--font-secondary);
    height: 48px;
    min-width: 180px;
  }
  .footer-whatsapp-btn i {
    font-size: 1.4rem;
  }
  .footer-whatsapp-btn:hover {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
  }
  
  @media (max-width: 700px) {
    .footer-socials-imersivo {
      gap: 16px;
      margin-top: 16px;
      margin-bottom: 12px;
    }
    
    .footer-social-link {
      font-size: 1.8rem;
      width: 44px;
      height: 44px;
    }
    
    .footer-whatsapp-btn {
      font-size: 0.95rem;
      padding: 10px 24px;
      height: 44px;
      min-width: 160px;
    }
    
    .footer-whatsapp-btn i {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-socials-imersivo {
      gap: 12px;
    }
    
    .footer-social-link {
      font-size: 1.6rem;
      width: 40px;
      height: 40px;
    }
    
    .footer-whatsapp-btn {
      font-size: 0.88rem;
      padding: 8px 20px;
      height: 40px;
      min-width: 140px;
    }
    
    .footer-whatsapp-btn i {
      font-size: 1.1rem;
    }
  }
  
  .ayahuasca-divisor-full {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: none;
    z-index: 2;
    overflow-x: hidden;
  }
  .ayahuasca-divisor-full svg {
    display: block;
    width: 100vw;
    height: 48px;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }
  
  .hero-alt-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  @media (max-width: 900px) {
    .hero-alt-section {
      margin-top: 64px;
    }
  }
  @media (max-width: 700px) {
    .hero-alt-section {
      margin-top: 40px;
    }
  }
  @media (max-width: 480px) {
    .hero-alt-section {
      margin-top: 24px;
    }
  }
  
  
  
  .hero-alt-content h1 {
    font-size: 72px;
    text-align: center;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 4px;
  }
  
  .hero-alt-content div:not(.medicina-epilogue-container) {
    font-size: 20px;
    line-height: 1.6;
  }
  
  @media (max-width: 900px) {
    .hero-alt-content h1 {
      font-size: 40px;
    }
  }
  @media (max-width: 700px) {
    .hero-alt-content h1 {
      font-size: 2rem;
      margin-bottom: 18px;
    }
  }
  @media (max-width: 480px) {
    .hero-alt-content h1 {
      font-size: 16px;
    }
  }
  
  .hero-alt-section {
    display: block;
    width: 100%;
  }
  .hero-alt-content {
    display: block;
    width: 100%;
    margin-bottom: 48px;
  }
  .medicina-section {
    display: block;
    width: 100%;
  }
  
  
  @media (max-width: 900px) {
    .medicines-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 700px) {
    .medicines-grid {
      grid-template-columns: 1fr;
    }
    .hero-alt-content {
      margin-bottom: 32px;
    }
  }
  
  .container, .hero-alt-section, .hero-alt-content, .medicina-section {
    padding-left: 64px;
    padding-right: 64px;
    padding-top: 100px;
    padding-bottom: 64px;
  }
  
  @media (max-width: 900px) {
    .container, .hero-alt-section, .hero-alt-content, .medicina-section {
      padding-left: 32px;
      padding-right: 32px;
      padding-top: 64px;
      padding-bottom: 32px;
    }
  }
  
  @media (max-width: 600px) {
    .container, .hero-alt-section, .hero-alt-content, .medicina-section {
      padding-left: 16px;
      padding-right: 16px;
      padding-top: 32px;
      padding-bottom: 16px;
    }
  }
  
  @media (max-width: 600px) {
    .medicina-epilogue-container {
      padding: 12px 8px;
      margin-top: 24px;
    }
  }
  
  /* Utilitários para remover inline styles do index.html */
  .hero-invite-small-mt { margin-top: 18px; }
  .ayahuasca-title-no-margin { margin: 0; }
  .hero-alt-headline {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: #fff;
  }
  .hero-alt-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  /* Modal de vídeo */
  .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,20,10,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
  }
  .video-modal-close {
    position: absolute;
    top: -32px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
  }
  .video-modal-iframe {
    width: 70vw;
    height: 40vw;
    max-width: 900px;
    max-height: 70vh;
    border-radius: 18px;
    box-shadow: 0 4px 32px #000a;
  }
  
  .medicina-intro {
    margin-top: 60px;
  }
  
  /* Modal de detalhes do Guardião */
  .guardiao-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(10,20,10,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
  }
  .guardiao-modal-content {
    background: rgba(20,30,20,0.98);
    border: 2.5px solid var(--color-primary);
    border-radius: 24px;
    box-shadow: 0 8px 48px 8px rgba(212,175,55,0.28), 0 4px 24px rgba(0,0,0,0.22);
    padding: 40px 32px 32px 32px;
    max-width: 98vw;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeIn 0.3s;
  }
  .guardiao-modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.85;
    transition: opacity 0.2s;
  }
  .guardiao-modal-close:hover {
    opacity: 1;
  }
  .guardiao-modal-img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(212,175,55,0.18), 0 1px 4px rgba(212,175,55,0.10);
    object-fit: cover;
    border: 3px solid var(--color-primary);
  }
  .guardiao-modal-nome {
    font-family: var(--font-secondary);
    color: var(--color-primary);
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-align: center;
  }
  .guardiao-modal-funcao {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1.08rem;
    opacity: 0.92;
    margin-bottom: 18px;
    text-align: center;
  }
  .guardiao-modal-desc {
    font-family: var(--font-primary);
    color: #e4cfa3;
    font-size: 1.08rem;
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
  }
  @media (max-width: 600px) {
    .guardiao-modal-content {
      padding: 24px 8px 18px 8px;
      min-width: 0;
      max-width: 96vw;
    }
    .guardiao-modal-img {
      width: 72px;
      height: 72px;
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .guardiao-mini.kleber {
    width: 140px;
    height: 140px;
    box-shadow: 0 0 32px 8px rgba(212,175,55,0.25), 0 4px 32px 0 rgba(212,175,55,0.18);
    position: relative;
  }
  .guardiao-mini.kleber img {
    border-radius: 24px;
    box-shadow: 0 0 32px 8px #d4af37cc, 0 4px 32px 0 rgba(212,175,55,0.18);
  }
  .guardiao-mini.kleber .xama-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffe066 0%, #d4af37 100%);
    color: #232d23;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px #d4af37aa;
    border: 2px solid #fffbe6;
    letter-spacing: 1px;
    z-index: 10;
    text-shadow: 0 1px 4px #fffbe6cc;
  }
  .guardiao-modal-content.kleber {
    border: 3px solid #ffe066;
    box-shadow: 0 0 32px 8px #ffe06655, 0 4px 32px 0 rgba(212,175,55,0.18);
  }
  .guardiao-modal-nome.kleber {
    color: #ffe066;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
  }
  @media (max-width: 700px) {
    .guardiao-mini.kleber {
      width: 100px;
      height: 100px;
    }
  }
  
  .guardiao-xama-card {
    margin-top: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: none;
    /* Remover sombra/glow */
    box-shadow: none;
    border-radius: 32px;
    padding: 48px 40px;
    margin: 0 auto 48px auto;
    max-width: 900px;
    position: relative;
  }
  .guardiao-xama-foto-area {
    position: relative;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .guardiao-xama-foto {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    box-shadow: none;
    object-fit: cover;
    border: none;
    margin-top: 0;
  }
  .guardiao-xama-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
  .guardiao-xama-nome {
    color: #ffe066;
    font-size: 2.1rem;
    font-family: var(--font-secondary);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-shadow: none;
    text-align: left;
  }
  .guardiao-xama-funcao {
    color: #fff;
    font-size: 1.08rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
  }
  .guardiao-xama-historia {
    color: #e4cfa3;
    font-size: 1.08rem;
    font-family: var(--font-primary);
    line-height: 1.6;
    margin-top: 8px;
    text-align: left;
  }
  @media (max-width: 900px) {
    .guardiao-xama-card {
      flex-direction: column;
      align-items: center;
      padding: 32px 12px;
      gap: 18px;
    }
    .guardiao-xama-foto-area {
      min-width: 0;
      width: 100%;
      align-items: center;
    }
    .guardiao-xama-foto {
      width: 120px;
      height: 120px;
    }
    .guardiao-xama-info {
      align-items: center;
      width: 100%;
      text-align: center;
    }
    .guardiao-xama-nome, .guardiao-xama-funcao, .guardiao-xama-historia {
      text-align: center;
      width: 100%;
    }
  }
  
  .recomendacoes-title {
    color: #ffe066;
    font-size: 2rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
  }
  
  .footer-doacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 32px 0 0 0;
    padding: 24px 0 0 0;
  }
  .footer-doacao-title {
    color: #ffe066;
    font-size: 1.25rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .footer-doacao-qrcode-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-doacao-qrcode {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 2px 16px #0008;
    background: #fff;
    padding: 8px;
  }
  .footer-doacao-desc {
    color: #fffbe6;
    font-size: 1rem;
    text-align: center;
    margin-top: 6px;
  }
  @media (max-width: 600px) {
    .footer-doacao-qrcode { width: 90px; height: 90px; }
    .footer-doacao-title { font-size: 1.05rem; }
  }
  
  .footer-doacao-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: rgba(20,30,20,0.88);
    border: 1.5px solid #ffe06644;
    border-radius: 14px;
    box-shadow: 0 2px 12px #0004;
    padding: 18px 18px;
    margin: 28px auto 0 auto;
    max-width: 340px;
    width: 100%;
  }
  .footer-doacao-qrcode {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0006;
    background: #fff;
    padding: 4px;
  }
  .footer-doacao-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-width: 120px;
  }
  .footer-doacao-title {
    color: #ffe066;
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  .footer-doacao-desc {
    color: #fffbe6;
    font-size: 0.92rem;
    text-align: left;
    margin-top: 2px;
  }
  @media (max-width: 700px) {
    .footer-doacao-card {
      flex-direction: column;
      align-items: center;
      padding: 12px 4px;
      gap: 8px;
      max-width: 98vw;
    }
    .footer-doacao-info {
      align-items: center;
      min-width: 0;
      width: 100%;
    }
    .footer-doacao-desc {
      text-align: center;
    }
    .footer-doacao-qrcode {
      width: 64px;
      height: 64px;
    }
  }
  
  .footer-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    margin-bottom: 32px;
  }
  @media (max-width: 900px) {
    .footer-main-row {
      flex-direction: column;
      align-items: center;
      gap: 18px;
      margin-bottom: 24px;
    }
  }
  
  .footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-main-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-main-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  @media (max-width: 900px) {
    .footer-main-row, .footer-main-container {
      flex-direction: column;
      align-items: center;
      gap: 18px;
      margin-bottom: 24px;
    }
    .footer-main-row {
      justify-content: center;
    }
    .footer-main-col {
      align-items: center;
      width: 100%;
    }
    .footer-doacao-card {
      margin: 0 auto;
    }
  }
  
  .popup-doacao-btn {
    position: fixed;
    left: 48px;
    bottom: 48px;
    z-index: 9999;
    background: #ffe066;
    color: #232d23;
    border: 2px solid #ffe066;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 16px #0008;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
  }
  
  @keyframes pulse-glow {
    0% {
      transform: scale(1);
      box-shadow: 0 2px 16px rgba(255, 224, 102, 0.4);
    }
    50% {
      transform: scale(1.1);
      box-shadow: 0 4px 24px rgba(255, 224, 102, 0.7);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 2px 16px rgba(255, 224, 102, 0.4);
    }
  }
  .popup-doacao-btn:hover {
    background: #232d23;
    color: #ffe066;
    box-shadow: 0 4px 24px #ffe06655;
  }
  .popup-doacao-card {
    position: fixed;
    left: 24px;
    bottom: 120px;
    z-index: 9999;
    background: rgba(20,30,20,0.98);
    border: 2px solid #ffe06688;
    border-radius: 16px;
    box-shadow: 0 2px 24px #000a;
    padding: 24px 22px 18px 22px;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.25s, transform 0.25s;
  }
  .popup-doacao-closed .popup-doacao-card {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
  }
  .popup-doacao-closed .popup-doacao-btn {
    display: flex;
  }
  .popup-doacao-card .popup-doacao-fechar {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #ffe066;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .popup-doacao-card .popup-doacao-fechar:hover {
    opacity: 1;
  }
  .popup-doacao-qrcode {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0006;
    background: #fff;
    padding: 4px;
  }
  .popup-doacao-title {
    color: #ffe066;
    font-size: 1.08rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-align: center;
  }
  .popup-doacao-desc {
    color: #fffbe6;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 2px;
  }
  @media (max-width: 700px) {
    .popup-doacao-btn {
      left: 24px;
      transform: none;
      bottom: 18px;
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      z-index: 10001;
    }
    .popup-doacao-texto {
      display: none;
    }
    .popup-doacao-card {
      left: 24px;
      right: 24px;
      width: auto;
      max-width: none;
      transform: none;
      bottom: 80px;
      min-width: 0;
      padding: 24px 12px 18px 12px;
      border-radius: 18px;
      box-shadow: 0 4px 32px #000a;
      z-index: 10000;
    }
    .popup-doacao-qrcode {
      width: 100px;
      height: 100px;
    }
    .popup-doacao-card .popup-doacao-fechar {
      top: 10px;
      right: 10px;
      font-size: 2rem;
      z-index: 10002;
    }
  }
  
  .popup-doacao-texto {
    position: fixed;
    left: 94px;
    bottom: 54px;
    z-index: 9999;
    color: #ffe066;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    pointer-events: none;
    animation: fade-in-out 3s infinite;
  }
  
  @keyframes fade-in-out {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  
  /* Modal da Cerimônia */
  .cerimonia-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .cerimonia-modal-content {
    background: rgba(20, 30, 20, 0.98);
    border: 2px solid #ffe066;
    border-radius: 20px;
    padding: 32px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
  }
  
  .cerimonia-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #ffe066;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10001;
  }
  
  .cerimonia-modal-close:hover {
    opacity: 1;
  }
  
  .cerimonia-modal-title {
    color: #ffe066;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  
  .cerimonia-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 24px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  }
  
  .cerimonia-video-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
  }
  
  .cerimonia-modal-desc {
    color: #e4cfa3;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-primary);
  }
  
  @media (max-width: 768px) {
    .cerimonia-modal-content {
      padding: 20px;
      margin: 20px;
    }
    
    .cerimonia-modal-title {
      font-size: 1.4rem;
      margin-bottom: 16px;
    }
    
    .cerimonia-video-iframe {
      height: 250px;
    }
    
    .cerimonia-modal-desc {
      font-size: 0.9rem;
    }
  }
  
  .btn-voltar-topo {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #ffe066;
    color: #232d23;
    border: 2px solid #ffe066;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 16px #0008;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .btn-voltar-topo.mostrar {
    opacity: 1;
    pointer-events: auto;
  }
  .btn-voltar-topo:hover {
    background: #232d23;
    color: #ffe066;
  }
  
  @keyframes bounce-topo {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-10px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-6px); }
    80% { transform: translateY(0); }
  }
  
  .btn-voltar-topo.mostrar {
    opacity: 1;
    pointer-events: auto;
    animation: bounce-topo 1.4s infinite;
  }
  
  .btn-voltar-topo .voltar-topo-texto {
    display: none;
    margin-left: 10px;
    font-size: 1rem;
    color: #232d23;
    background: #ffe066;
    border-radius: 8px;
    padding: 4px 12px;
    box-shadow: 0 2px 8px #0002;
    white-space: nowrap;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.2s;
    opacity: 0;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
  }
  .btn-voltar-topo:hover .voltar-topo-texto {
    display: inline-block;
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
  
  /* === PLAYER DE MÚSICA CENTRALIZADO === */
  .music-player-container {
    position: fixed;
    top: 32px;
    left: 32px;
    bottom: unset;
    right: unset;
    transform: none;
    z-index: 1002;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    pointer-events: none;
  }
  .music-player {
    background: rgba(35, 35, 35, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 24px #0004;
    display: flex;
    gap: 12px;
    padding: 6px 14px;
    pointer-events: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .music-player button {
    background: none;
    border: none;
    outline: none;
    color: #d4af37;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .music-player #play-pause-btn {
    font-size: 2.1rem;
    margin: 0 4px;
  }
  .music-player button:active {
    color: #fff;
  }
  @media (max-width: 600px) {
    .music-player {
      padding: 10px 16px;
      gap: 16px;
    }
    .music-player-container {
      bottom: 80px;
    }
  }
  /* Ajuste para não sobrepor botões de doação e voltar ao topo */
  #popup-doacao, .btn-voltar-topo {
    z-index: 1003;
  }
  
  #autoplay-warning {
    display: none;
    font-size: 0.82rem;
    color: #ffd700;
    margin-top: 6px;
    text-shadow: 0 1px 4px #000a;
    text-align: center;
    width: 100%;
    animation: blink-autoplay 1.2s infinite alternate;
    line-height: 1.3;
    white-space: pre-line;
  }
  @keyframes blink-autoplay {
    from { opacity: 1; }
    to { opacity: 0.35; }
  }
  .music-player-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  @media (max-width: 600px) {
    .music-player-container {
      top: 12px;
      left: 50%;
      right: unset;
      transform: translateX(-50%);
      max-width: 95vw;
      min-width: 180px;
      width: max-content;
      margin: 0 auto;
      position: fixed;
      z-index: 1002;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .music-player {
      padding: 6px 8px;
      gap: 8px;
      min-width: 180px;
      justify-content: center;
    }
    #autoplay-warning {
      position: static;
      top: unset;
      left: unset;
      transform: none;
      width: 100%;
      min-width: unset;
      margin-top: 4px;
      text-align: center;
    }
    .hero-menu {
      margin-top: 70px;
    }
  }
  
  @media (max-width: 600px) {
    .hero-logo-img {
      margin-top: 105px;
    }
    .hero-content {
      padding-bottom: 80px;
      padding-top: 8px;
    }
    .hero-title,
    .hero-support,
    .hero-invite,
    .hero-invite-small {
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .hero-btn {
      margin-top: 12px;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 600px) {
    .hero-menu {
      margin-top: 60px;
    }
  }

  /* === SEÇÃO ONDE ATUAMOS === */
  .onde-atuamos-section {
    padding: 60px 0;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
  }

  .onde-atuamos-title {
    font-family: 'IM Fell English', 'Montserrat', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .egregora-desc {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #e4cfa3;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .estados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .estado-card {
    background: rgba(212,175,55,0.08);
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }

  .estado-card:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.12);
    transform: translateY(-2px);
  }

  .estado-nome {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .cidades-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .cidade {
    background: rgba(212,175,55,0.15);
    color: #e4cfa3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.2s ease;
  }

  .cidade:hover {
    background: rgba(212,175,55,0.25);
    color: #fff;
  }

  .egregora-cta {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.1);
  }

  @media (max-width: 768px) {
    .onde-atuamos-section {
      padding: 40px 20px;
      margin: 20px;
    }
    
    .onde-atuamos-title {
      font-size: 2.2rem;
    }
    
    .egregora-desc {
      font-size: 1.1rem;
    }
    
    .estados-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .estado-card {
      padding: 20px;
    }
    
    .cidades-list {
      gap: 6px;
    }
    
    .cidade {
      font-size: 0.85rem;
      padding: 5px 10px;
    }
  }

  @media (max-width: 480px) {
    .onde-atuamos-title {
      font-size: 1.8rem;
    }
    
    .egregora-desc {
      font-size: 1rem;
    }
    
    .estado-nome {
      font-size: 1.2rem;
    }
  }