/* ============================================================
   POUSADA SÃO JOSÉ - LOVABLE EDITORIAL STYLE
   Design minimalista e elegante
   ============================================================ */

/* ==================== RESET & VARIÁVEIS ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores do tema Lovable - neutras e suaves */
  --cor-fundo: #faf8f5;
  --cor-cream: #f3efe8;
  --cor-branco: #ffffff;
  --cor-texto: #1c1917;
  --cor-texto-suave: #78716c;
  --cor-ouro: #b8956c;
  --cor-ouro-escuro: #96784f;
  --cor-overlay: rgba(12, 10, 9, 0.55);
  --cor-overlay-forte: rgba(12, 10, 9, 0.72);

  /* Tipografia editorial */
  --fonte-titulo: 'Playfair Display', Georgia, serif;
  --fonte-corpo: 'Inter', system-ui, -apple-system, sans-serif;

  /* Design tokens */
  --raio: 16px;
  --raio-lg: 24px;
  --raio-pill: 999px;
  --transicao: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sombra-card: 0 8px 32px rgba(28, 25, 23, 0.08);
  --sombra-nav: 0 -4px 24px rgba(28, 25, 23, 0.12);

  /* Layout */
  --bottom-nav-altura: 72px;
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: calc(var(--bottom-nav-altura) + 1rem);
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  body {
    padding-bottom: var(--bottom-nav-altura);
  }
}

main {
  flex: 1 0 auto;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transicao), opacity var(--transicao);
}

ul { list-style: none; }

/* ==================== CONTAINER ==================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 4.5rem 0;
}

.section--cream {
  background: var(--cor-cream);
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header--center {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cor-ouro);
  margin-bottom: 0.6rem;
}

.section__title {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cor-texto);
  margin-bottom: 0.75rem;
}


.section__desc {
  color: var(--cor-texto-suave);
  font-size: 0.95rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cor-ouro-escuro);
}

.link-arrow:hover {
  color: var(--cor-texto);
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--raio-pill);
  cursor: pointer;
  transition: all var(--transicao);
  box-shadow: var(--sombra-card);
  user-select: none;
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .btn {
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
  }
}

.btn:active {
  transform: scale(0.97);
}

.btn--whatsapp {
  background: var(--cor-branco);
  color: var(--cor-texto);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--dark {
  background: var(--cor-texto);
  color: var(--cor-branco);
}

.btn--dark:hover {
  background: #292524;
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}


/* ==================== HEADER - TARJA 50PX + LOGO ABAIXO ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 149, 108, 0.15);
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  height: 55px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5px 2rem;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Botão da Rádio no Header */
.header__radio-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 36px;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  background: rgba(10, 31, 61, 0.9);
  border: 1px solid rgba(253, 184, 30, 0.3);
  border-radius: 18px;
  color: #FDB81E;
  cursor: pointer;
  transition: all var(--transicao);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
  box-shadow: 0 2px 8px rgba(10, 31, 61, 0.2);
  backdrop-filter: blur(10px);
}

.header__radio-btn:hover {
  background: rgba(30, 58, 95, 0.95);
  border-color: rgba(253, 184, 30, 0.5);
  box-shadow: 0 3px 12px rgba(10, 31, 61, 0.3);
}

.header__radio-btn.playing {
  background: rgba(253, 184, 30, 0.95);
  color: #0a1f3d;
  border-color: rgba(253, 184, 30, 0.8);
}

.header__radio-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(253, 184, 30, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transicao);
}

.header__radio-btn.playing .header__radio-play {
  background: rgba(10, 31, 61, 0.15);
}

.header__radio-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform var(--transicao);
}

.header__radio-btn.playing .header__radio-icon {
  animation: rotate-header-icon 2s linear infinite;
}

@keyframes rotate-header-icon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.header__radio-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header__radio-live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.header__radio-dot {
  width: 5px;
  height: 5px;
  background: #ff4444;
  border-radius: 50%;
  animation: blink-dot 1.5s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.header__radio-btn.playing .header__radio-dot {
  background: #00ff00;
}

.header__radio-live-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.header__radio-name {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .header__radio-btn {
    height: 34px;
    padding: 0.3rem 0.65rem 0.3rem 0.3rem;
    left: 1rem;
  }
  
  .header__radio-play {
    width: 26px;
    height: 26px;
  }
  
  .header__radio-icon {
    width: 11px;
    height: 11px;
  }
  
  .header__radio-name {
    font-size: 0.7rem;
  }
  
  .header__radio-live-text {
    font-size: 0.5rem;
  }
}

@media (max-width: 480px) {
  .header__radio-btn {
    height: 32px;
    padding: 0.25rem 0.6rem 0.25rem 0.25rem;
    gap: 0.4rem;
  }
  
  .header__radio-play {
    width: 24px;
    height: 24px;
  }
  
  .header__radio-icon {
    width: 10px;
    height: 10px;
  }
  
  .header__radio-name {
    font-size: 0.65rem;
  }
  
  .header__radio-dot {
    width: 4px;
    height: 4px;
  }
  
  .header__radio-live-text {
    font-size: 0.48rem;
  }
}

.header__logo-box {
  width: 160px;
  height: 160px;
  background: var(--cor-branco);
  border-radius: 0 0 24px 24px;
  box-shadow: 
    0 8px 32px rgba(28, 25, 23, 0.1),
    0 2px 8px rgba(184, 149, 108, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 55px;
  border: 2px solid rgba(184, 149, 108, 0.1);
  border-top: none;
  z-index: 101;
  overflow: hidden;
  opacity: 1;
}

.header.scrolled .header__logo-box {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
  pointer-events: none;
}

@media (min-width: 1141px) {
  .header__logo-box {
    left: calc(50% - 570px + 26px);
    transform: translateX(0);
  }
  
  .header.scrolled .header__logo-box {
    transform: translateY(-20px);
  }
  
  .header__logo-box:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 1140px) and (min-width: 768px) {
  .header__logo-box {
    left: 2rem;
    transform: translateX(0);
  }
  
  .header.scrolled .header__logo-box {
    transform: translateY(-20px);
  }
  
  .header__logo-box:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 767px) {
  .header__logo-box {
    left: 1rem;
    transform: translateX(0);
  }
  
  .header.scrolled .header__logo-box {
    transform: translateY(-20px);
  }
}

.header__logo-box:hover {
  box-shadow: 
    0 12px 40px rgba(28, 25, 23, 0.15),
    0 4px 12px rgba(184, 149, 108, 0.2);
  border-color: rgba(184, 149, 108, 0.25);
}

.header.scrolled .header__logo-box:hover {
  pointer-events: none;
}

.header__logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  background: transparent;
  mix-blend-mode: darken;
}

.header__nav {
  display: none;
}

.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  transition: all var(--transicao);
  margin-left: auto;
}

.header__menu-toggle:hover {
  transform: scale(1.1);
}

.header__menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: linear-gradient(135deg, var(--cor-texto) 0%, var(--cor-ouro-escuro) 100%);
  border-radius: 2px;
  transition: all var(--transicao);
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
  
  /* Esconder botão reservar mobile em desktop */
  .header__btn-reserve-mobile {
    display: none !important;
  }
  
  .header__nav {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-right: 0;
  }
  
  .header__nav a {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cor-texto);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transicao);
    padding: 0.5rem 0.875rem;
  }
  
  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%);
    transition: transform var(--transicao);
  }
  
  .header__nav a:hover {
    color: var(--cor-ouro-escuro);
  }
  
  .header__nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
  
  /* Botão Reserve Agora no menu */
  .header__btn-reserve {
    background: linear-gradient(135deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%) !important;
    color: var(--cor-branco) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--raio-pill);
    margin-left: 0.75rem;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 4px 12px rgba(184, 149, 108, 0.3);
    transition: all var(--transicao) !important;
  }
  
  .header__btn-reserve::after {
    display: none !important;
  }
  
  .header__btn-reserve:hover {
    background: linear-gradient(135deg, var(--cor-ouro-escuro) 0%, #8B7355 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 108, 0.4);
    color: var(--cor-branco) !important;
  }
}

/* Menu mobile elegante - Offcanvas */
@media (max-width: 767px) {
  .header__container {
    padding: 0 1rem;
    justify-content: flex-end;
  }
  
  /* Esconder menu toggle (hambúrguer) */
  .header__menu-toggle {
    display: none !important;
  }
  
  /* Esconder nav offcanvas */
  .header__nav {
    display: none !important;
  }
  
  /* Botão Reservar Mobile visível */
  .header__btn-reserve-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%);
    color: var(--cor-branco);
    border-radius: var(--raio-pill);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transicao);
    box-shadow: 0 4px 12px rgba(184, 149, 108, 0.3);
    text-decoration: none;
    margin-left: auto;
  }
  
  .header__btn-reserve-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 108, 0.4);
  }
  
  .header__btn-reserve-mobile svg {
    width: 16px;
    height: 16px;
  }
  
  .header__logo-box {
    width: 100px;
    height: 100px;
    border-radius: 0 0 16px 16px;
    padding: 0;
    top: 55px;
    left: 1rem;
    margin-left: 0;
    overflow: hidden;
  }
  
  .header__nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--cor-texto);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(184, 149, 108, 0.15);
    transition: all var(--transicao);
    border-radius: 8px;
  }
  
  .header__nav a:last-child {
    border-bottom: none;
  }
  
  .header__nav a:hover,
  .header__nav a:active {
    background: rgba(184, 149, 108, 0.08);
    color: var(--cor-ouro-escuro);
    padding-left: 1.75rem;
  }
  
  /* Botão Reserve Agora no mobile */
  .header__btn-reserve {
    background: linear-gradient(135deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%) !important;
    color: var(--cor-branco) !important;
    padding: 1rem 1.5rem !important;
    border-radius: var(--raio-pill) !important;
    margin-top: 1rem;
    font-weight: 600 !important;
    text-align: center;
    box-shadow: 0 4px 16px rgba(184, 149, 108, 0.3);
    border: none !important;
  }
  
  .header__btn-reserve:hover,
  .header__btn-reserve:active {
    background: linear-gradient(135deg, var(--cor-ouro-escuro) 0%, #8B7355 100%) !important;
    color: var(--cor-branco) !important;
    padding-left: 1.5rem !important;
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(184, 149, 108, 0.4);
  }
}

/* ==================== EVENTOS DESTAQUE (ABAIXO DO BANNER) ==================== */
.eventos-destaque {
  background: var(--cor-cream);
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(184, 149, 108, 0.1);
}

@media (min-width: 768px) {
  .eventos-destaque {
    padding: 2rem 0 2.5rem;
  }
}

.eventos-destaque__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .eventos-destaque__content {
    margin-bottom: 2rem;
  }
}

.eventos-destaque__title {
  font-family: var(--fonte-titulo);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cor-texto);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .eventos-destaque__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .eventos-destaque__title {
    font-size: 2.5rem;
  }
}

.eventos-destaque__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cor-texto-suave);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .eventos-destaque__desc {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

/* Cards dos Eventos */
.eventos-destaque__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .eventos-destaque__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .eventos-destaque__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .eventos-destaque__cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.evento-destaque-card {
  background: var(--cor-branco);
  border-radius: var(--raio);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  border: 1px solid rgba(184, 149, 108, 0.1);
  transition: all var(--transicao);
  cursor: pointer;
}

.evento-destaque-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.12);
  border-color: var(--cor-ouro);
}

.evento-destaque-card__imagem {
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cor-ouro-escuro) 0%, var(--cor-ouro) 100%);
  position: relative;
}

.evento-destaque-card__imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transicao);
}

.evento-destaque-card:hover .evento-destaque-card__imagem img {
  transform: scale(1.05);
}

.evento-destaque-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.evento-destaque-card__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cor-cream);
  width: 100%;
}

.evento-destaque-card__mes {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cor-ouro-escuro);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.evento-destaque-card__dia {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cor-texto);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.evento-destaque-card__content h3 {
  font-family: var(--fonte-titulo);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cor-texto);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.evento-destaque-card__content p {
  font-size: 0.75rem;
  color: var(--cor-texto-suave);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Conteúdo ao lado do card */
.biblia-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.biblia-content__text {
  max-width: 600px;
}

.biblia-content__text .section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cor-ouro);
  margin-bottom: 0.6rem;
}

.biblia-content__text .section__title {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cor-texto);
  margin-bottom: 1rem;
}

.biblia-content__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cor-texto-suave);
}

.biblia-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .biblia-content__grid {
    gap: 1.5rem;
  }
}

.biblia-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--sombra-card);
  transition: all var(--transicao);
  aspect-ratio: 4/3;
}

.biblia-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.15);
}

.biblia-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transicao);
}

.biblia-grid-item:hover img {
  transform: scale(1.05);
}

/* ==================== HERO - BANNER EDITORIAL ==================== */
.hero {
  color: var(--cor-branco);
  margin-top: 55px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 55px;
  }
}

.hero__carousel {
  position: relative;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__carousel {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .hero__carousel {
    height: 380px;
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 0;
}

.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  filter: brightness(0.95) contrast(1.05);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 10, 9, 0.72) 0%, rgba(12, 10, 9, 0.25) 55%, transparent 100%),
    linear-gradient(to top, rgba(12, 10, 9, 0.5) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}


.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  max-width: 100%;
  animation: fadeUp 0.9s ease-out;
}

@media (min-width: 1024px) {
  .hero__overlay {
    padding: 2.5rem 2rem 3rem;
  }
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero__label {
    font-size: 0.875rem;
    letter-spacing: 0.25em;
  }
}

.hero__title {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

.hero__location {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero__location {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero__location {
    font-size: 1.25rem;
  }
}


/* Cards abaixo do banner */
.hero__cards-wrap {
  background: var(--cor-cream);
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

.hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-card {
  position: relative;
  height: 140px;
  border-radius: var(--raio);
  overflow: hidden;
  transition: transform var(--transicao);
}

.hero-card:hover {
  transform: translateY(-3px);
}

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

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.85) 0%, rgba(12, 10, 9, 0.15) 60%);
}

.hero-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem;
  color: var(--cor-branco);
}

.hero-card__content h3 {
  font-family: var(--fonte-titulo);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.hero-card__content p {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}


.hero-card__link {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.7;
}

/* ==================== SOBRE ==================== */
.sobre__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.sobre__layout:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .sobre__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .sobre__layout--reverse .sobre__media {
    order: -1;
  }
}

.sobre__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-card);
}

.sobre__content p {
  color: var(--cor-texto-suave);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.sobre__content p:last-of-type {
  margin-bottom: 0;
}

.sobre__content strong {
  color: var(--cor-texto);
  font-weight: 600;
}

.sobre__content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: none;
}

.sobre__content ul li {
  color: var(--cor-texto-suave);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.sobre__content ul li::before {
  content: "✓";
  position: absolute;
  left: -1.5rem;
  color: var(--cor-ouro);
  font-weight: 700;
  font-size: 1.1rem;
}

.sobre__content ul li:last-child {
  margin-bottom: 0;
}

.sobre__content .section__title {
  margin-bottom: 1rem;
}


/* ==================== RÁDIO CONEXÃO CATÓLICA ==================== */
.radio-banner {
  background: linear-gradient(135deg, #0a1f3d 0%, #1e3a5f 50%, #2d4a6f 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .radio-banner {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner {
    padding: 2.5rem 0;
  }
}

.radio-banner__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 767px) {
  .radio-banner__wrapper {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .radio-banner__wrapper {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }
}

.radio-banner__content {
  max-width: 650px;
}

@media (max-width: 767px) {
  .radio-banner__content {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__content {
    text-align: left;
    max-width: 100%;
  }
}

.radio-banner__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDB81E;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .radio-banner__label {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
}

.radio-banner__title {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cor-branco);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .radio-banner__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__title {
    font-size: 2.25rem;
  }
  
  .radio-banner__highlight {
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .radio-banner__title {
    font-size: 3rem;
  }
}

.radio-banner__highlight {
  color: #FDB81E;
  display: inline-block;
}

.radio-banner__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .radio-banner__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__desc {
    font-size: 1.05rem;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .radio-banner__desc {
    font-size: 1.125rem;
    max-width: 580px;
  }
}

.radio-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #FDB81E;
  color: #0a1f3d;
  border: none;
  border-radius: 8px;
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transicao);
  box-shadow: 0 4px 12px rgba(253, 184, 30, 0.3);
}

@media (max-width: 767px) {
  .radio-banner__btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }
}

.radio-banner__btn:hover {
  background: #ffc742;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 184, 30, 0.5);
}

.radio-banner__btn:active {
  transform: translateY(0);
}

.radio-banner__btn.playing {
  background: #e5a519;
  animation: pulse-radio 2s ease-in-out infinite;
}

@keyframes pulse-radio {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(253, 184, 30, 0.4), 0 0 0 0 rgba(253, 184, 30, 0.7);
  }
  50% {
    box-shadow: 0 4px 12px rgba(253, 184, 30, 0.4), 0 0 0 15px rgba(253, 184, 30, 0);
  }
}

.radio-banner__btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transicao);
}

@media (max-width: 767px) {
  .radio-banner__btn-icon {
    width: 18px;
    height: 18px;
  }
}

.radio-banner__btn.playing .radio-banner__btn-icon {
  animation: rotate-icon 2s linear infinite;
}

@keyframes rotate-icon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.radio-banner__btn-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.radio-banner__stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .radio-banner__stats {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__stats {
    gap: 1.25rem;
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .radio-banner__stats {
    gap: 2rem;
  }
}

.radio-banner__stat {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(253, 184, 30, 0.2);
  backdrop-filter: blur(10px);
  min-width: 120px;
  transition: all var(--transicao);
}

@media (max-width: 767px) {
  .radio-banner__stat {
    padding: 1rem 1.25rem;
    min-width: 100px;
    flex: 1;
    max-width: 140px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__stat {
    padding: 1.25rem 1.75rem;
    min-width: 140px;
  }
}

.radio-banner__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(253, 184, 30, 0.4);
  transform: translateY(-4px);
}

.radio-banner__stat-value {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 700;
  color: #FDB81E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .radio-banner__stat-value {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__stat-value {
    font-size: 1.75rem;
  }
}

.radio-banner__stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .radio-banner__stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .radio-banner__stat-label {
    font-size: 0.8rem;
  }
}


/* ==================== ACOMODAÇÕES ==================== */
.suites {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .suites {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .suites {
    grid-template-columns: repeat(3, 1fr);
  }
}

.suite-card {
  background: var(--cor-branco);
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.05);
  transition: box-shadow var(--transicao), transform var(--transicao);
}

.suite-card:hover {
  box-shadow: var(--sombra-card);
  transform: translateY(-4px);
}

.suite-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.suite-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.suite-card:hover .suite-card__img img {
  transform: scale(1.05);
}

.suite-card__body {
  padding: 1.25rem;
}

.suite-card__body h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.suite-card__body p {
  font-size: 0.85rem;
  color: var(--cor-texto-suave);
  line-height: 1.5;
}


/* ==================== CAFÉ DA MANHÃ ==================== */
.cafe__destaque {
  margin-bottom: 1.25rem;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-card);
}

.cafe__destaque img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.cafe__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cafe__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cafe__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cafe__item {
  border-radius: var(--raio);
  overflow: hidden;
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
}

.cafe__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cafe__item:hover img {
  transform: scale(1.04);
}

.cafe__item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cor-texto-suave);
  text-align: center;
}


/* ==================== GALERIA ==================== */
.galeria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .galeria__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .galeria__item--wide {
    grid-column: span 2;
  }
}

.galeria__item {
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
  margin: 0;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria__item--wide img {
  aspect-ratio: 21 / 9;
  min-height: 200px;
}

.galeria__item:hover img {
  transform: scale(1.05);
}

.galeria__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cor-branco);
  background: linear-gradient(to top, rgba(12, 10, 9, 0.75), transparent);
}


/* ==================== CONTATO ==================== */
.contato__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 767px) {
  .contato__layout {
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .contato__layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.contato__map {
  width: 100%;
  min-height: 400px;
  height: 100%;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-card);
}

@media (max-width: 767px) {
  .contato__map {
    min-height: 300px;
    border-radius: 12px;
  }
}

.contato__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

@media (max-width: 767px) {
  .contato__map iframe {
    min-height: 300px;
  }
}

.contato__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contato__lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .contato__lista {
    gap: 1.5rem;
  }
}

.contato__lista li {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 767px) {
  .contato__lista li {
    gap: 1rem;
  }
}

.contato__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%);
  border-radius: 12px;
  color: var(--cor-branco);
  box-shadow: 0 4px 12px rgba(184, 149, 108, 0.3);
}

@media (max-width: 767px) {
  .contato__icon {
    width: 42px;
    height: 42px;
  }
}

.contato__icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .contato__icon svg {
    width: 20px;
    height: 20px;
  }
}

.contato__lista strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cor-ouro-escuro);
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .contato__lista strong {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

.contato__lista p {
  font-size: 1rem;
  color: var(--cor-texto-suave);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .contato__lista p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.contato__lista a {
  color: var(--cor-texto-suave);
  text-decoration: none;
  transition: color var(--transicao);
}

.contato__lista a:hover {
  color: var(--cor-ouro-escuro);
}

.contato__btn-rotas {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--cor-ouro) 0%, var(--cor-ouro-escuro) 100%);
  color: var(--cor-branco);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transicao);
  box-shadow: 0 4px 12px rgba(184, 149, 108, 0.3);
}

@media (max-width: 767px) {
  .contato__btn-rotas {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
}

.contato__btn-rotas:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 108, 0.4);
}

.contato__btn-rotas:active {
  transform: translateY(0);
}

.contato__btn-rotas svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .contato__btn-rotas svg {
    width: 18px;
    height: 18px;
  }
}

  min-height: 110px;
}

.form__feedback {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.3em;
}

.form__feedback--success {
  color: #16a34a;
}

.form__feedback--error {
  color: #dc2626;
}

/* ==================== RODAPÉ ==================== */
.footer {
  background: linear-gradient(135deg, #1a1715 0%, #2d2825 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cor-ouro), transparent);
  opacity: 0.3;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__main {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col--about {
  max-width: 100%;
}

.footer__logo {
  height: auto;
  width: 100%;
  max-width: 280px;
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  .footer__logo {
    max-width: 320px;
  }
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer__title {
  font-family: var(--fonte-titulo);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cor-branco);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--cor-ouro);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transicao);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--cor-ouro);
  transform: translateX(4px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cor-ouro);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transicao);
}

.footer__contact a:hover {
  color: var(--cor-ouro);
}

.footer__btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: var(--cor-branco);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transicao);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  margin-bottom: 1rem;
}

.footer__btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer__btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__social-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer__dev {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ==================== NAVEGAÇÃO INFERIOR - LOVABLE STYLE ==================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.25rem;
  padding: 0.6rem 0.5rem calc(0.6rem + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(28, 25, 23, 0.06);
  box-shadow: var(--sombra-nav);
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--cor-texto-suave);
  border-radius: var(--raio-pill);
  transition: all var(--transicao);
  min-width: 60px;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.bottom-nav__item svg {
  opacity: 0.7;
}

.bottom-nav__item:hover,
.bottom-nav__item--active {
  color: var(--cor-texto);
}

.bottom-nav__item--active {
  background: var(--cor-cream);
}

.bottom-nav__item--active svg {
  opacity: 1;
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== OTIMIZAÇÕES MOBILE ==================== */
@media (max-width: 639px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero__carousel {
    height: 300px;
  }

  .hero__overlay {
    padding: 0.75rem 1rem 1.25rem;
    max-width: 75%;
  }

  .hero__arrow {
    width: 32px;
    height: 32px;
  }

  .bottom-nav__item span {
    font-size: 0.6rem;
  }

  .bottom-nav__item {
    padding: 0.4rem 0.65rem;
    min-width: 56px;
  }

  .bottom-nav__item--cta {
    padding: 0.5rem 1rem;
  }
}


/* ==================== ACESSIBILIDADE & PERFORMANCE ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* iOS specific */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

/* Print */
@media print {
  .bottom-nav,
  .hero__arrow,
  .hero__dots,
  .btn {
    display: none !important;
  }
}


/* ==================== BÍBLIA SAGRADA ==================== */
.biblia-section {
  background: var(--cor-branco);
  padding: 2.5rem 0;
}

.biblia-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .biblia-layout {
    grid-template-columns: 450px 1fr;
    gap: 3rem;
  }
}

.biblia-card {
  max-width: 450px;
  background: linear-gradient(135deg, #B8956C 0%, #8B7355 100%);
  border-radius: 24px;
  padding: 1.58rem;
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.3);
  color: var(--cor-branco);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.biblia-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.biblia-card__header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.33rem;
}

.biblia-card__title {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--cor-branco);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .biblia-card__title {
    font-size: 1.75rem;
  }
}

.biblia-card__subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
  font-weight: 300;
}

.biblia-card__form {
  position: relative;
  z-index: 1;
  margin-bottom: 1.33rem;
}

.biblia-form-group {
  margin-bottom: 0.79rem;
}

.biblia-form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  opacity: 0.95;
}

.biblia-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--cor-branco);
  font-size: 1rem;
  font-family: var(--fonte-corpo);
  font-weight: 500;
  transition: all var(--transicao);
}

.biblia-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.biblia-input:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.biblia-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--cor-branco);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.biblia-sugestoes {
  display: none;
  position: relative;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.biblia-sugestoes.active {
  display: block;
}

.biblia-sugestao-item {
  padding: 0.75rem 1rem;
  color: var(--cor-texto);
  cursor: pointer;
  transition: all var(--transicao);
  border-bottom: 1px solid rgba(184, 149, 108, 0.2);
}

.biblia-sugestao-item:last-child {
  border-bottom: none;
}

.biblia-sugestao-item:hover {
  background: rgba(184, 149, 108, 0.15);
}

.biblia-sugestao-item strong {
  color: var(--cor-ouro-escuro);
  font-weight: 600;
}

.biblia-sugestao-item small {
  display: block;
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
  margin-top: 0.25rem;
}

.biblia-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--cor-branco);
  font-size: 1rem;
  font-family: var(--fonte-corpo);
  font-weight: 500;
  transition: all var(--transicao);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.biblia-select:focus option:checked,
.biblia-select option:focus,
.biblia-select option[selected] {
  background: linear-gradient(135deg, #B8956C 0%, #8B7355 100%) !important;
  color: var(--cor-branco) !important;
}

/* Para Firefox */
.biblia-select option:checked {
  background: #B8956C !important;
  color: var(--cor-branco) !important;
}

/* Para Chrome/Edge */
.biblia-select:focus option:checked {
  background: linear-gradient(135deg, #B8956C 0%, #8B7355 100%) !important;
  color: var(--cor-branco) !important;
}

.biblia-select:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.biblia-select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--cor-branco);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.biblia-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.biblia-select option {
  background: var(--cor-branco);
  color: #8B7355;
  padding: 0.75rem;
  font-weight: 500;
}

.biblia-select option:hover {
  background: linear-gradient(135deg, #B8956C 0%, #8B7355 100%);
  color: var(--cor-branco);
}

.biblia-select option:checked {
  background: #B8956C;
  color: var(--cor-branco);
  font-weight: 600;
}

/* Sobrescrever a cor de seleção padrão (azul) */
.biblia-select option:focus {
  background: #B8956C !important;
  color: var(--cor-branco) !important;
}

.biblia-select option::selection {
  background: #B8956C !important;
  color: var(--cor-branco) !important;
}

.biblia-select option::-moz-selection {
  background: #B8956C !important;
  color: var(--cor-branco) !important;
}

.biblia-btn {
  width: 100%;
  padding: 0.79rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: rgba(28, 25, 23, 0.3);
  backdrop-filter: blur(10px);
  color: var(--cor-branco);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--fonte-corpo);
  cursor: pointer;
  transition: all var(--transicao);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.biblia-btn:hover:not(:disabled) {
  background: rgba(28, 25, 23, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.biblia-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.biblia-card__quote {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 1.33rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.biblia-card__quote p {
  font-family: var(--fonte-titulo);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: var(--cor-branco);
}

.biblia-card__quote cite {
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.85;
  display: block;
}

/* Modal da Bíblia */
.biblia-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 115, 85, 0.95);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.biblia-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.biblia-modal__content {
  background: #FAF8F5;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(139, 115, 85, 0.4);
  animation: slideUp 0.3s ease;
  position: relative;
  border: 3px solid #B8956C;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.biblia-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(184, 149, 108, 0.2);
  border: 2px solid rgba(184, 149, 108, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--cor-branco);
  cursor: pointer;
  transition: all var(--transicao);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 300;
}

.biblia-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--cor-branco);
  transform: rotate(90deg) scale(1.1);
}

.biblia-modal__header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, #B8956C 0%, #8B7355 100%);
  color: var(--cor-branco);
}

.biblia-modal__header h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  padding-right: 40px;
}

.biblia-modal__body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  background: #FAF8F5;
}

.biblia-modal__body p {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--cor-texto);
  margin-bottom: 1.5rem;
}

.biblia-modal__body .versiculo {
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'Crimson Text', Georgia, serif;
}

.biblia-modal__body .versiculo-num {
  display: inline-block;
  min-width: 40px;
  font-weight: 700;
  color: #8B7355;
  margin-right: 0.75rem;
  font-size: 1rem;
  background: rgba(184, 149, 108, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 767px) {
  .biblia-card {
    padding: 2rem 1.5rem;
  }
  
  .biblia-modal__content {
    width: 95%;
    max-height: 90vh;
  }
  
  .biblia-modal__header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .biblia-modal__header h3 {
    font-size: 1.25rem;
  }
  
  .biblia-modal__body {
    padding: 1.5rem;
  }
}


/* ==================== AJUSTES MOBILE - LOGO E ALINHAMENTO ==================== */
@media (max-width: 767px) {
  /* Mostrar logo no mobile - alinhada à esquerda */
  .header__logo-box {
    display: flex !important;
    width: 100px !important;
    height: 100px !important;
    left: 1rem !important;
    transform: none !important;
    margin-left: 0 !important;
  }
  
  /* Ajustar hero - remover espaço extra */
  .hero {
    margin-top: 55px !important; /* Apenas a altura do header */
  }
  
  /* Carousel com altura reduzida */
  .hero__carousel {
    height: 350px !important;
  }
  
  /* Botão rádio mobile ajustado */
  .header__radio-btn {
    left: 0.75rem !important;
  }
  
  .hero__title {
    font-size: 1.75rem !important;
  }
  
  .hero__location {
    font-size: 1rem !important;
  }
}

@media (max-width: 375px) {
  .hero__title {
    font-size: 1.5rem !important;
  }
}


/* ==================== CENTRALIZAR HERO MOBILE ==================== */
@media (max-width: 767px) {
  /* Hero overlay posicionado com espaço do topo */
  .hero__overlay {
    position: absolute !important;
    top: 28% !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0.75rem 1rem 1.5rem !important;
    margin: 0 auto !important;
    background: none !important;
  }
  
  .hero__label {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
  }
  
  .hero__title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90% !important;
    display: block !important;
    width: 100% !important;
  }
  
  .hero__location {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 85% !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* Botão centralizado */
  .hero__overlay .btn {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
  }
}
