/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background: beige;
  color: #333;
}

/* NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px 0;

  background: linear-gradient(to right, #fff, #fff8dc, #fff);
  border-bottom: none;

}

.nav-logo img {
    /* Medidas para deixar pequeno e delicado */
    height: 45px;          /* Altura ideal para navbars */
    width: auto;           /* Mantém a proporção sem achatar */
    
    /* Forma e Bordas */
    border-radius: 50%;    /* Deixa o logo circular (combina muito com artes religiosas) */
    border: 2px solid #FFD700; /* Uma moldura dourada fina para combinar com o site */
    
    /* Espaçamento */
    margin-right: 80px;    /* Afasta o logo do primeiro link (Início) */
    
    /* Sombra suave para dar profundidade */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
    /* Suavidade ao carregar */
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.nav-logo img:hover {
    transform: scale(1.1); /* Aumenta levemente ao passar o mouse */
    border-color: #DAA520; /* Escurece um pouco o dourado no hover */
}

/* MENU */
.menu {
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS */
.menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  color: #333;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* 🔥 EFEITO NEON + ZOOM */
.menu a:hover {
 background-color: #FFD700; 
    color: #000;

  transform: scale(1.2); /* 🔥 AUMENTA O TAMANHO */
    color: white;

  text-shadow: 
    0 0 5px gold,
    0 0 10px #ffea00,
    0 0 20px #ffd700,
    0 0 30px #ffea00,
    0 0 40px #ffd700;


  padding: 5px 10px;
  border-radius: 10px;
}

/* SPLASH SCREEN */

#splash-screen{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: beige;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;

    transition: opacity 1s ease;
}

#splash-screen img{
    width: 180px;
    height: auto;

    border-radius: 50%;

    animation: logoEntrada 2s ease;
}

@keyframes logoEntrada{

    0%{
        opacity: 0;
        transform: scale(0.5);
    }

    100%{
        opacity: 1;
        transform: scale(1);
    }

}

button{
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: white;
    background-color: gold;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

strong,
b {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: #222;
}

img{
    height: 300px;
}

.galeria-container {
    display: flex;
    justify-content: space-between; /* Espalha os itens de ponta a ponta */
    align-items: flex-start;
    width: 100%;           /* Ocupa 100% da largura da tela */
    max-width: 1200px;     /* Limite opcional para não esticar demais em monitores gigantes */
    margin: 0 auto;        /* Centraliza o container na página */
    padding: 20px;
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

figure {
    flex: 1;               /* Faz com que cada card cresça igualmente para preencher o espaço */
    margin: 10px;          /* Espaçamento entre os cards */
    text-align: center;
    display: flex;
    flex-direction: column;
}

figure img {
    width: 100%;           /* A imagem preenche o card */
    aspect-ratio: 3 / 4;   /* FORÇA todas as imagens a terem a mesma proporção (ex: 3x4) */
    object-fit: cover;     /* Faz a imagem preencher o espaço sem distorcer (corta as bordas se necessário) */
    border: 3px solid #FFD700;
    border-radius: 12px;   /* Cantos arredondados mais suaves */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Sombra leve para dar profundidade */
}

figcaption {
    margin-top: 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 700;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.9)),
              url('banner2.png');
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: #2c2c2c;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* SEÇÕES */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h1,
.section h2 {
  color: #DAA520;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

/* DARK */
.section.dark {
  background: beige;
  color: white;
}

/* GALERIA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid gold;
}

/* FOOTER */
footer {
  background: beige;
  color: gold;
  text-align: center;
  padding: 20px;
}

p{
    font-family: 'Inter', sans-serif;
    color: #444;
    font-weight: 400;
    line-height: 1.8;
}

.sobre-texto p,
.doutrina-texto p,
.orientacoes-texto p {
  text-align: justify; /* Alinha o texto para ambos os lados, criando um visual mais limpo */
}

.sobre-container {
    display: flex;          /* Ativa o modo lado a lado */
    align-items: center;    /* Alinha verticalmente o texto com o meio da imagem */
    justify-content: space-between; /* Espalha os dois lados */
    padding: 50px;          /* Espaço interno para não grudar nas bordas */
    gap: 40px;              /* Espaço entre o texto e a imagem */
    max-width: 1200px;      /* Largura máxima do conteúdo */
    margin: 0 auto;         /* Centraliza a seção inteira na página */
    background-color: beige;
}

.sobre-texto {
    flex: 1.2;               /* O texto ganha um pouco mais de largura que a imagem */
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.9;
}

.sobre-imagem {
    flex: 1;                /* Faz a imagem ocupar o mesmo espaço que o texto */
    display: flex;
    justify-content: center;
}

.sobre-imagem img {
width: 100%;            /* Faz a imagem ser responsiva */
    max-width: 550px;       /* Evita que ela fique gigante em telas grandes */
    height: 800px;          /* Define uma altura fixa para um visual mais robusto */
    object-fit: cover;      /* O pulo do gato: corta a imagem para preencher o espaço sem distorcer */
    
    /* Arredondamento elegante */
    border-radius: 30px;
}

/* === LOCALIZAÇÃO === */
.localizacao-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 30px auto 0;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.localizacao-info {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  background: white;
  border: 1px solid #ffe08a;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(218,165,32,0.1);
}

.info-item strong {
  display: block;
  color: #b8860b;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
  line-height: 1.6;
}

.link-whatsapp {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.link-whatsapp:hover {
  text-decoration: underline;
}

.btn-mapa-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}

.btn-mapa-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(37,211,102,0.5);
}

.mapa-wrapper {
  flex: 1.4;
  min-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #FFD700;
  box-shadow: 0 8px 30px rgba(218,165,32,0.2);
}

/* === BOTÃO WHATSAPP FLUTUANTE === */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1a1a1a;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* === BOTÃO VOLTAR AO TOPO === */
#btn-topo {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(218,165,32,0.45);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#btn-topo.visivel {
  opacity: 1;
  transform: translateY(0);
}

#btn-topo:hover {
  transform: scale(1.1);
}

/* ==========================
   ORIENTAÇÕES AOS VISITANTES
========================== */

.orientacoes-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;

    max-width:1200px;
    margin:0 auto;
    padding:50px;
}

.orientacoes-imagem{
    flex:1;
}

.orientacoes-imagem img{
    width:100%;
    max-width:550px;
    height:800px;
    object-fit:cover;

    border-radius:30px;
}

.orientacoes-texto{
    flex:1.2;
}

.orientacoes-texto p{
    font-family:'Inter', sans-serif;
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:25px;
}

@media (max-width:768px){

    .orientacoes-container{
        flex-direction:column;
        padding:25px;
    }

    .orientacoes-imagem img{
        max-width:100%;
        height:auto;
    }

}

/* === ANIMAÇÃO PULSO WHATSAPP === */
@keyframes wppPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  animation: wppPulse 2.2s infinite;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .localizacao-container {
    flex-direction: column;
  }
}