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

/* ========================================
   VARIÁVEIS CSS CONSOLIDADAS (CUSTOM PROPERTIES)
   ======================================== */
:root {
  /* Cores principais - Consolidadas */
  --color-primary: #d4af37;
  --color-primary-light: #e6c252;
  --color-primary-dark: #b8941f;
  --color-secondary: #c4b896;
  --color-accent: #ffe066;
  --color-accent-light: #fff8b3;
  --color-accent-dark: #5d8a3a;

  /* Cores de fundo - Consolidadas */
  --bg-primary: #0a1a0a;
  --bg-secondary: #2d3e2d;
  --bg-light: #f5f1e8;
  --bg-dark: #232d23;
  --bg-card: #2a3a2a;

  /* Cores de texto - Consolidadas */
  --text-primary: #c4b896;
  --text-secondary: #a09579;
  --text-light: #f5f1e8;
  --text-dark: #2d3e2d;
  --text-muted: #a0b098;

  /* Cores de borda */
  --border-color: #3a4a3a;

  /* 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 ROBUSTO
     ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Reset mais robusto baseado no estudo.html */
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  height: 100%;
  width: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

/* Reset para elementos de formulário */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reset para listas */
ul,
ol {
  list-style: none;
}

/* Reset para links */
a {
  text-decoration: none;
  color: inherit;
}

a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reset para imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reset para tabelas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-primary);
}

body {
  background: var(--bg-primary);
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

/* Overlay de fundo */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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 {
  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 {
  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 {
  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 {
  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;
}

/* ========================================
     HERO SECTION
     ======================================== */
.hero-section,
.hero-alt-section {
  position: relative;
  min-height: 50vh;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero-full-bg {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../assets/images/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: 100%;
  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: 100px 18px 0 18px;
  text-align: center;
  min-height: 80vh;
}

.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);
}

/* ========================================
     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,
.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 {
  background: #8b4513;
  color: #fff;
  border: none;
}

.hero-alt-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('../assets/images/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-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;
  }
}

/* ========================================
     FOOTER
     ======================================== */

/* ========================================
     MENU HERO
     ======================================== */
.hero-menu {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 26, 10, 0.55);
  padding: 18px 24px;
  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);
  border: 1.5px solid #e4cfa3;
  white-space: normal;
  flex-wrap: wrap;
  max-width: 90vw;
  box-sizing: border-box;
  width: fit-content;
}

.hero-menu ul {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-menu li {
  margin: 0;
  padding: 0;
}

.hero-menu a {
  color: #e4cfa3;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    text-shadow var(--transition-fast);
  padding: 2px 6px;
  border-radius: 6px;
  display: block;
}

.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);
}

.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: 100%;
  height: calc(100vh + env(safe-area-inset-top) + env(safe-area-inset-bottom));
  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: 8%;
  --start-left: 8%;
  animation-delay: 0s, 0.2s;
}
.firefly:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 25%;
  --start-left: 25%;
  animation-delay: 4.2s, 0.7s;
}
.firefly:nth-child(3) {
  width: 1px;
  height: 1px;
  left: 42%;
  --start-left: 42%;
  animation-delay: 8.1s, 1.1s;
}
.firefly:nth-child(4) {
  width: 2px;
  height: 2px;
  left: 18%;
  --start-left: 18%;
  animation-delay: 2.7s, 0.5s;
}
.firefly:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 65%;
  --start-left: 65%;
  animation-delay: 10.7s, 1.3s;
}
.firefly:nth-child(6) {
  width: 2px;
  height: 2px;
  left: 35%;
  --start-left: 35%;
  animation-delay: 6.3s, 0.9s;
}
.firefly:nth-child(7) {
  width: 1px;
  height: 1px;
  left: 78%;
  --start-left: 78%;
  animation-delay: 12.5s, 0.4s;
}
.firefly:nth-child(8) {
  width: 2px;
  height: 2px;
  left: 55%;
  --start-left: 55%;
  animation-delay: 9.9s, 1.7s;
}
.firefly:nth-child(9) {
  width: 3px;
  height: 3px;
  left: 12%;
  --start-left: 12%;
  animation-delay: 3.1s, 0.8s;
}
.firefly:nth-child(10) {
  width: 1px;
  height: 1px;
  left: 88%;
  --start-left: 88%;
  animation-delay: 11.7s, 1.5s;
}
.firefly:nth-child(11) {
  width: 2px;
  height: 2px;
  left: 32%;
  --start-left: 32%;
  animation-delay: 7.4s, 0.6s;
}
.firefly:nth-child(12) {
  width: 3px;
  height: 3px;
  left: 72%;
  --start-left: 72%;
  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) + 5%);
  }
  50% {
    left: calc(var(--start-left) - 3%);
  }
  75% {
    left: calc(var(--start-left) + 2%);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    bottom: 90vh;
    left: calc(var(--start-left) + 1%);
    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 {
    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 {
    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;
  }
}

/* Mobile grande */
@media (max-width: 768px) {
  .container,
  .ayahuasca-section,
  .medicina-section {
    padding: 32px 3vw;
  }
  .ayahuasca-section,
  .medicina-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;
  }

  .medicine-block img {
    width: 100% !important;
    max-width: 95vw !important;
  }

  .footer-main {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer-col {
    align-items: center;
  }
}

/* Mobile médio */
@media (max-width: 700px) {
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
  .hero-content {
    padding-bottom: 120px;
    min-height: 40vh;
  }

  .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 */
@media (max-width: 768px) {
  .hero-menu ul {
    gap: 3px;
  }
}

/* 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-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: 8px 12px;
    box-sizing: border-box;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 12px;
    font-size: 16px;
    line-height: 0.8;
    white-space: normal;
    height: auto;
    min-height: 50px;
  }

  .hero-menu a {
    display: inline-block;
    padding: 6px 8px;
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
  .container,
  .ayahuasca-section,
  .medicina-section {
    padding: 18px 2vw;
  }

  .hero-subtitle {
    font-size: 13px;
  }
  .hero-btn {
    font-size: 13px;
    padding: 7px 14px;
  }
  .hero-alt-section h1 {
    font-size: 16px;
  }

  .hero-menu {
    font-size: 15px;
    gap: 8px;
    padding: 4px 1vw;
  }

  .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;
}

.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.1),
    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.1);
  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.1);
  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: 100%;
  padding: 64px 0 32px 0;
  background: url('../assets/images/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: 100%;
  min-width: 100%;
  max-width: 100%;
  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: calc(100vh + env(safe-area-inset-top) + env(safe-area-inset-bottom));
  background: rgba(10, 20, 10, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom)
    env(safe-area-inset-left);
}
.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: 100%;
  height: calc(100vh + env(safe-area-inset-top) + env(safe-area-inset-bottom));
  background: rgba(10, 20, 10, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom)
    env(safe-area-inset-left);
}
.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.1);
  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(0.4, 0, 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;
  position: static;
  left: unset;
  transform: none;
  clear: both;
}
@keyframes blink-autoplay {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.35;
  }
}
.music-player-container {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
}

@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;
  }
}

/* ========================================
   SEÇÃO CÍRCULO (restaurada para recomendações)
   ======================================== */
.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;
}

/* ========================================
   CLASSES UTILITÁRIAS TAILWIND CONSOLIDADAS
   ======================================== */

/* Componentes personalizados */
.hero-gradient {
  background: linear-gradient(to bottom right, rgba(10, 26, 10, 0.95), rgba(45, 80, 22, 0.7), rgba(93, 138, 58, 0.6));
}

.text-glow {
  text-shadow:
    0 0 12px rgba(184, 148, 31, 0.6),
    0 2px 16px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 15px rgba(212, 175, 55, 0.2);
}

.card-glass {
  background: rgba(42, 58, 42, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(58, 74, 58, 0.2);
  border-radius: 12px;
}

/* Utilitários personalizados */
.text-shadow-glow {
  text-shadow:
    0 0 8px rgba(184, 148, 31, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.bg-texture {
/* background-image: url('bg-texture.png'); */
  background-repeat: repeat;
  background-size: cover;
}

/* Classes Tailwind essenciais */
.overflow-x-hidden { overflow-x: hidden; }
.min-h-screen { min-height: 100vh; }
.fixed { position: fixed; }
.top-4 { top: 16px; }
.right-4 { right: 16px; }
.z-50 { z-index: 50; }
.z-40 { z-index: 40; }
.z-10 { z-index: 10; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-xs { max-width: 320px; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.p-6 { padding: 24px; }
.text-center { text-align: center; }
.text-lg { font-size: 18px; line-height: 28px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.text-3xl { font-size: 30px; line-height: 36px; }
.text-4xl { font-size: 36px; line-height: 40px; }
.text-5xl { font-size: 48px; line-height: 1; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }
.space-y-6 > * + * { margin-top: 24px; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.opacity-80 { opacity: 0.8; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.object-cover { object-fit: cover; }
.w-24 { width: 96px; }
.h-24 { height: 96px; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:text-xl { font-size: 20px; line-height: 28px; }
  .md\:text-4xl { font-size: 36px; line-height: 40px; }
  .md\:text-5xl { font-size: 48px; line-height: 1; }
  .md\:max-w-md { max-width: 448px; }
  .md\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:gap-12 { gap: 48px; }
  .lg\:hidden { display: none; }
}

@media (max-width: 1023px) {
  .lg\:hidden { display: block; }
}

@media (max-width: 1023px) {
  .hidden.lg\:block { display: none; }
}

@media (min-width: 1024px) {
  .hidden.lg\:block { display: block; }
}
