* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #000;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  background: transparent;
  color: #fff;
  padding: 35px 20px;

  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

.header.fixed {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header.fixed .top h1 {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.top {
  display: flex;
  flex-direction: column; /* 👈 quebra em linhas */
  justify-content: center;
  align-items: center;
}

.title,
.title_2 {
  display: block; /* 👈 comportamento normal */
  letter-spacing: 4px;
}

.title {
  font-size: 14px;
}

.title_2 {
  font-size: 8px;
  margin-bottom: 6px; /* espaço entre linhas */
}
/* MENU DESKTOP */
.nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
}

/* DIVISOR DESKTOP */
.nav a::after {
  content: "|";
  margin-left: 25px;
  opacity: 0.6;
}

.nav a:last-child::after {
  content: "";
}

/* HAMBURGER */
.hamburger {
  position: relative;
  z-index: 3000;
}
.nav.active ~ .header {
  background: transparent;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .top {
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    margin-top: 20px;
    gap: 15px;
    text-align: center;
  }

  .nav.active {
    display: flex;
  }

  .nav a::after {
    content: "";
  }

  .nav a {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
  }
}
/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa a tela toda */
  min-height: 100vh;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

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

/* Overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 👈 mesma altura da imagem */
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.subtitle {
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

.title-main {
  font-size: 64px;
  font-weight: 800;
  margin: 0;
}

.title-highlight {
  font-size: 56px;
  font-weight: 800;
  color: #f5c400;
  margin: 10px 0 30px;
}

/* Botões */
.carousel-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn.primary {
  background: #f5c400;
  color: #000;
  font-weight: 900;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 900;
}

/* =========================
   📱 MOBILE CLEAN FIX
   ========================= */
@media (max-width: 768px) {
  /* HEADER */
  .header {
    padding: 15px 15px;
  }

  .header.fixed {
    padding: 10px 15px;
  }

  /* TITULOS */
  .top {
    align-items: flex-start;
  }

  .title {
    font-size: 12px;
  }

  .title_2 {
    font-size: 8px;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3000;
  }

  /* MENU MOBILE */
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    top: 32px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 32px);
    gap: 25px;

    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 2000;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-size: 18px;
    border: none;
  }

  .nav a::after {
    display: none;
  }

  /* CAROUSEL */
  .carousel {
    aspect-ratio: auto;
    height: 80vh;
  }

  .title-main {
    font-size: 32px;
  }

  .title-highlight {
    font-size: 28px;
  }

  .carousel-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .carousel-buttons {
    justify-content: center; /* 👈 centraliza */
    align-items: center; /* 👈 garante alinhamento */
  }
}

/* =========================
   SCROLL INDICATOR — SPRING
   ========================= */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;

  width: 26px;
  height: 42px;

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;

  display: flex;
  justify-content: center;
  padding-top: 6px;

  opacity: 0.9;

  animation: mouseSpring 1.8s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rodinha */
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;

  animation: wheelSpring 1.8s infinite;
}

/* MOLA DO MOUSE (CONTAINER) */
@keyframes mouseSpring {
  0% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, 12px);
  }

  60% {
    transform: translate(-50%, 6px); /* volta (mola) */
  }

  80% {
    transform: translate(-50%, 10px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

/* MOLA DA RODINHA (INTERNA) */
@keyframes wheelSpring {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
  }

  70% {
    transform: translateY(5px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 18px;
    transform: translateX(-50%) scale(0.9);
  }
}

/* =========================
   GRID DE IMAGENS
   ========================= */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;

  padding: 0;
  margin: 0;
  background: #000;
}

/* Item */
.grid-item {
  position: relative;
  overflow: hidden; /* 🔑 impede sair do grid */
}

/* Imagem */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 0.5s ease;
}

/* Hover */
.grid-item:hover img {
  transform: scale(1.08); /* zoom suave */
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 0; /* 🔥 remove espaço entre grids */
    padding: 0; /* 🔥 remove espaço lateral */
  }

  .grid-item {
    width: 100%;
  }

  .grid-item img {
    width: 100%;
    height: 100%;
  }
}

.grid-item {
  margin: 0;
  padding: 0;
  line-height: 0; /* evita micro espaços */
}

/* OVERLAY DO GRID (SEM MEXER NO CSS EXISTENTE) */
.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 30px;

  color: #fff;
  background: rgba(0, 0, 0, 0.45);
}

/* ÍCONE */
.grid-overlay i {
  font-size: 48px;
  color: #f5c400;
  margin-bottom: 15px;
}

/* TÍTULO */
.grid-overlay h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* TEXTO */
.grid-overlay p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .grid-overlay i {
    font-size: 40px;
  }

  .grid-overlay h3 {
    font-size: 18px;
  }

  .grid-overlay p {
    font-size: 13px;
  }
}

/* BOTÃO RADIO ONLINE */
.radio-btn {
  margin-top: 20px;

  padding: 12px 36px;
  border-radius: 50px; /* pontas bem arredondadas */

  background: #fff;
  color: #000;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;

  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/* HOVER */
.radio-btn:hover {
  background: #f5c400;
  color: #000;
  transform: translateY(-2px); /* leve lift elegante */
}
/* ÍCONE MICROFONE */
.grid-overlay i {
  font-size: 48px;
  margin-bottom: 15px;

  transform: scale(1);
  transition: transform 0.5s ease;
}

/* QUANDO PASSA O MOUSE NO GRID */
.grid-item:hover .grid-overlay i {
  transform: scale(1.08); /* mesmo efeito da imagem */
}

/* =========================
   CTA VOLUNTÁRIOS
   ========================= */
.cta-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

/* Fundo */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Overlay cor (tipo primary) */
.overlay-color {
  position: absolute;
  inset: 0;
  background: rgba(245, 196, 0, 0.9); /* amarelo igreja */
  mix-blend-mode: multiply;
}

/* Overlay escuro */
.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Conteúdo */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

/* Título */
.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* Botão */
.cta-btn {
  display: inline-block;
  background: #000;
  color: #fff;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;

  padding: 16px 50px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .cta-section {
    padding: 90px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-btn {
    padding: 14px 40px;
  }
}

.contact-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
  border-top: 1px solid #111;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #aaa;
  line-height: 1.6;
}

.contact-extra {
  margin-left: 68px;
  margin-bottom: 30px;
}

.phone {
  font-weight: 700;
  font-size: 18px;
}

.email {
  color: #666;
}

.contact-link {
  margin-left: 68px;
  color: #f5c400;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
}

.contact-link:hover {
  color: #fff;
}

/* MAPA */
.contact-map {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.contact-map:hover {
  filter: grayscale(0);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map {
    width: 100%;
    height: 300px;
  }

  .contact-extra,
  .contact-link {
    margin-left: 0;
  }
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  transition: transform 0.3s ease;
}

.grid-item:hover .icon-circle svg {
  transform: scale(1.1);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

/* iframe ocupa tudo */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* efeito hover igual ao site */
.map-wrapper:hover iframe {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.map-wrapper {
  margin-left: 250px; /* ajuste fino */
}

.localizacao {
  display: flex;
  align-items: center;
}

/* TEXTO BEM À ESQUERDA */
.local-texto {
  flex: 1;
  margin-right: 40px; /* espaço controlado */
}

/* MAPA MAIS À DIREITA */
.map-wrapper {
  flex: 1.2;
}

@media (max-width: 768px) {
  .localizacao {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .local-texto {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .local-texto h3,
  .local-texto p {
    text-align: center;
  }

  .map-wrapper {
    width: 100%;
    max-width: 420px;
    height: 280px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  /* Bloco principal */
  .localizacao {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Força o ícone ir para cima */
  .local-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .icon-circle {
    order: -1; /* 👈 sobe o ícone */
    margin-bottom: 16px;
  }

  /* Textos */
  .local-texto h3,
  .local-texto p {
    text-align: center;
  }

  /* Mapa */
  .map-wrapper {
    margin-top: 24px;
  }
}
/* =========================
   FOOTER
   ========================= */
.footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
  border-top: 1px solid #222;
  font-family: "Montserrat", sans-serif;
}

/* Top */
.footer-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Logo */
.footer-logo {
  height: 80px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.footer-name {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.footer-brand:hover {
  opacity: 1;
  filter: grayscale(0);
}

.footer-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Social */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f5c400;
  color: #000;
}

/* Ícones simples (emoji ou font-icon depois se quiser) */
.icon {
  font-size: 18px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  font-size: 12px;
  color: #777;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5c400;
}

/* =========================
   📱 MOBILE
   ========================= */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

/* Estilo comum para todos os ícones */
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  margin: 0 10px;
}

.icon:hover {
  transform: scale(1.2); /* Efeito de aumentar ao passar o mouse */
}

/* Instagram usando SVG como máscara (permite mudar a cor) */
.icon.instagram {
  background-color: #ffff9a; /* Cor amarela que você definiu */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E")
    no-repeat center;
}

/* YouTube */
.icon.youtube {
  background-color: #ffff9a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.42a2.78 2.78 0 0 0-1.94 2C1 8.11 1 12 1 12s0 3.89.46 5.58a2.78 2.78 0 0 0 1.94 2c1.72.42 8.6.42 8.6.42s6.88 0 8.6-.42a2.78 2.78 0 0 0 1.94-2C23 15.89 23 12 23 12s0-3.89-.46-5.58z'%3E%3C/path%3E%3Cpolygon points='9.75 15.02 15.5 12 9.75 8.98 9.75 15.02'%3E%3C/polygon%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.42a2.78 2.78 0 0 0-1.94 2C1 8.11 1 12 1 12s0 3.89.46 5.58a2.78 2.78 0 0 0 1.94 2c1.72.42 8.6.42 8.6.42s6.88 0 8.6-.42a2.78 2.78 0 0 0 1.94-2C23 15.89 23 12 23 12s0-3.89-.46-5.58z'%3E%3C/path%3E%3Cpolygon points='9.75 15.02 15.5 12 9.75 8.98 9.75 15.02'%3E%3C/polygon%3E%3C/svg%3E")
    no-repeat center;
}

/* Facebook */
.icon.facebook {
  background-color: #ffff9a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center;
}

.audio-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;

  background: rgba(0, 0, 0, 0.85);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  z-index: 4000;
}

.audio-bar button {
  background: none;
  border: none;
  color: #f5c400;
  font-size: 14px;
  cursor: pointer;
}

.radioOnline {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 2px 4px;
  color: #f5c400;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}

.radio-icon {
  width: 12px; /* 👈 tamanho pequeno */
  height: 12px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .top-player {
    width: 100%;
    height: 32px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
    z-index: 5;
  }

  .menu {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 36px; /* 👈 empurra pra baixo do player */
    width: 100%;
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .header {
    top: 32px; /* 👈 fica abaixo do player */
  }

  .header.fixed {
    top: 32px; /* 👈 mantém quando fixa */
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
    /* 32px player + ~68px header */
  }
}

.cultos-page {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Ajuste para Desktop: Empurra a seção para baixo do menu (que é absoluto) */
@media (min-width: 769px) {
  .cultos-page {
    margin-top: 140px; /* Altura aproximada do Header + Audio Bar */
    min-height: calc(100vh - 140px); /* Garante que ocupe o resto da tela */
  }
}

.cultos-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.cultos-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.3);
  display: block;
}

.cultos-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.cultos-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cultos-hero {
  padding: 60px 20px 30px;
  text-align: center;
}

.cultos-hero h1 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
  font-weight: bold;
  text-align: center;
}

.cultos-frase {
  padding: 20px;
}

.cultos-frase .frase {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cultos-frase .referencia {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Estilos específicos para Quienes Somos */
.quienes-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.quienes-content .texto-principal,
.quienes-content .texto-invitacion {
  margin-bottom: 40px;
}

.quienes-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.quienes-content strong {
  color: #ffb700;
  font-weight: bold;
}

.quienes-content .texto-invitacion {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quienes-content .texto-invitacion h2 {
  font-size: 28px;
  color: #ffb700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.quienes-content .destaque-final {
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
  padding-top: 20px;
}

/* Estilos para Misión, Visión y Valores */
.mvv-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.mvv-section > h2 {
  font-size: 32px;
  color: #ffb700;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: bold;
}

.mvv-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  backdrop-filter: blur(5px);
}

.mvv-item h3 {
  font-size: 24px;
  color: #ffb700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: bold;
}

.mvv-item p {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.mvv-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-item ul li {
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.mvv-item ul li::before {
  content: "•";
  color: #ffb700;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .quienes-content {
    padding: 30px 15px;
  }

  .quienes-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .quienes-content .texto-invitacion h2 {
    font-size: 24px;
  }

  .quienes-content .destaque-final {
    font-size: 18px;
  }

  .mvv-section {
    padding: 40px 15px;
  }

  .mvv-section > h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .mvv-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .mvv-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .mvv-item p,
  .mvv-item ul li {
    font-size: 16px;
    line-height: 1.7;
  }
}

.cultos-lista {
  padding: 40px 20px;
  display: grid;
  gap: 40px;
}

.culto-titulo {
  color: #ffb700;
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.culto-horario {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cultos-online {
  padding: 40px 20px 60px;
}

.btn-online {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffb700;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.btn-online:hover {
  background: #ffd04d;
}

@media (max-width: 768px) {
  .cultos-hero h1 {
    font-size: 28px;
  }

  .culto-titulo {
    font-size: 20px;
  }

  .culto-horario {
    font-size: 16px;
  }
}

/* Estilos para página de Anexos */
.anexos-lista {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.anexos-container h2 {
  font-size: 28px;
  color: #ffb700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.select-anexos {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px 20px;
  font-size: 18px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 183, 0, 0.5);
  border-radius: 10px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffb700' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  padding-right: 50px;
}

.select-anexos:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 183, 0, 0.7);
}

.select-anexos:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffb700;
  box-shadow: 0 0 10px rgba(255, 183, 0, 0.3);
}

.select-anexos option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.mapa-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mapa-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 183, 0, 0.3);
}

.mapa-iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

.endereco-section {
  padding: 40px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.endereco-container h2 {
  font-size: 28px;
  color: #ffb700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.endereco-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.endereco-link:hover {
  transform: scale(1.05);
}

.endereco-texto {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  cursor: pointer;
}

.endereco-texto strong {
  color: #ffb700;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .anexos-lista {
    padding: 30px 15px;
  }

  .anexos-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .select-anexos {
    font-size: 16px;
    padding: 12px 15px;
    padding-right: 45px;
  }

  .mapa-section {
    padding: 30px 15px;
  }

  .mapa-iframe {
    height: 400px;
  }

  .endereco-section {
    padding: 30px 15px 40px;
  }

  .endereco-container h2 {
    font-size: 24px;
  }

  .endereco-texto {
    font-size: 16px;
    padding: 20px;
  }

  .endereco-texto strong {
    font-size: 18px;
  }
}

/* Estilos para página de Rádio */
.radio-page {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

@media (min-width: 769px) {
  .radio-page {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
  }
}

.radio-content {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.radio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.radio-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.radio-logo {
  text-align: center;
  padding-top: 20px;
}

.logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.radio-player {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(5px);
}

#controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.volumen {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.volumen i {
  color: #ffb700;
  font-size: 20px;
}

.volumen input[type="range"] {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

.volumen input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #ffb700;
  border-radius: 50%;
  cursor: pointer;
}

.volumen input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #ffb700;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.player-controls i {
  color: #ffb700;
  font-size: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.player-controls i:hover {
  transform: scale(1.1);
  color: #ffd04d;
}

.player-controls .fa-play-circle,
.player-controls .fa-pause-circle {
  font-size: 80px;
}

#currentPlay {
  color: #fff;
  text-align: center;
  font-size: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

#progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.2);
}

#progress::-webkit-progress-value {
  background: #ffb700;
}

.radio-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  color: #ffb700;
  font-size: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: #ffd04d;
  transform: scale(1.1);
}

.radio-right {
  width: 100%;
}

.radio-chat {
  width: 100%;
  min-height: 500px;
  border: 2px solid rgba(255, 183, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

@media (max-width: 968px) {
  .radio-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .radio-chat {
    min-height: 400px;
  }

  .player-controls i {
    font-size: 50px;
  }

  .player-controls .fa-play-circle,
  .player-controls .fa-pause-circle {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .radio-content {
    padding: 30px 15px;
  }

  .radio-player {
    padding: 20px;
  }

  .logo-img {
    max-width: 250px;
  }

  .player-controls {
    gap: 20px;
  }

  .player-controls i {
    font-size: 40px;
  }

  .player-controls .fa-play-circle,
  .player-controls .fa-pause-circle {
    font-size: 60px;
  }

  .social-link {
    font-size: 35px;
  }
}
