/* IMPORTAÇÃO DE FONTES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');


/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #222;
}


/* HEADER */
.topo {
  background: #0a1d3c;
  color: #fff;
  text-align: center;
  padding: 40px 20px 100px;
  position: relative;
  z-index: 1;
}

.topo > * {
  position: relative;
  z-index: 3;
}

.topo .logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 3px;
}

.topo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 0 0 5px;
  color: #e4b118;
  font-weight: 700;
}

.topo p {
  font-size: 15px;
  margin: 0;
}


/* ✅ BANNER AJUSTADO */
.banner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  top: -50px;
  width: calc(100% - 60px);
  max-width: 1100px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 420px;
  object-fit: cover;
 
  box-shadow: 0px 4px 20px rgba(0,0,0,0.25);
}


/* ✅ CARDS */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px auto 50px;
  max-width: 1200px;
  padding: 0 20px;
}

.card {
  background: #fff;
  width: 300px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: .3s ease;
}

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

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

.card h3 {
  color: #0a1d3c;
  margin: 10px 0 5px;
  font-size: 18px;
}

.card p {
  color: #e4b118;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ✅ BOTÃO DO CARD */
.verPost {
  display: inline-block;
  margin: 8px auto 15px;
  background: #0a1d3c;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: .2s;
}

.verPost:hover {
  background: #c9a94d;
}


/* ✅ ÁREA DE LOCALIZAÇÃO */
.localizacao {
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  padding: 0 15px;
}

.localizacao h2 {
  color: #0a1d3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.localizacao p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.mapa-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.abrir-mapa {
  display: inline-block;
  margin-top: 8px;
  background-color: #0a1d3c;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.abrir-mapa:hover {
  background-color: #c9a94d;
  color: #fff;
}



/* LOGIN & ADMIN */
.login-container,
.admin-panel {
  width: 90%;
  max-width: 400px;
  margin: 70px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 18px rgba(0,0,0,0.12);
  text-align: center;
}

.login-container input,
.admin-panel input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.login-container button,
.admin-panel button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  background: #0a1d3c;
  color: #fff;
  border-radius: 6px;
  transition: .2s;
}

.login-container button:hover,
.admin-panel button:hover {
  background: #c9a94d;
}

.admin-panel #lista div {
  margin-top: 10px;
  padding: 8px;
  background: #f2f2f2;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}


/* FOOTER */
footer {
  background: #0a1d3c;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer .admin-link {
  color: #e4b118;
  display: block;
  text-decoration: none;
  margin-top: 5px;
}


/* ✅ RESPONSIVO */
@media(max-width: 600px) {
  .topo h1 { font-size: 22px; }
  .banner {
    width: calc(100% - 30px);
    top: -30px;
  }
  .banner img { max-height: 260px; }
  .card { width: 100%; max-width: 300px; }
}
/* ÍCONES SOCIAIS */
.redes-footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 10px 0;
}

.social {
  width: 42px;
  height: 42px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transition: .2s;
  text-decoration: none;  
}
.foto-footer {
  width: 100px;                /* tamanho equilibrado */
  height: 100px;
  object-fit: cover;
  border-radius: 50%;          /* deixa a foto redonda */
  margin: 0 auto 15px;         /* centraliza e cria espaço abaixo */
  display: block;
  border: 3px solid #c9a94d;   /* moldura dourada elegante */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* === CARDS DE POSTS DO FACEBOOK === */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 50px 20px;
  background: #f7f7f7;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(10,29,60,0.08);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #0a1d3c;
}

.card h3 {
  font-size: 18px;
  color: #0a1d3c;
  margin: 12px 10px 8px;
  font-weight: 700;
}

.card p {
  font-size: 15px;
  color: #333;
  margin: 0 15px 10px;
  line-height: 1.4;
}

.card .verPost {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 10px;
  background: #0a1d3c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.card .verPost:hover {
  background: #c9a94d;
  color: #0a1d3c;
}

.card .comp-btn {
  background: #c9a94d;
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
  transition: background 0.3s ease, transform 0.2s;
}

.card .comp-btn:hover {
  background: #b8963f;
  transform: scale(1.05);
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .cards {
    gap: 15px;
    padding: 30px 10px;
  }

  .card {
    width: 100%;
    max-width: 340px;
  }

  .card img {
    height: 200px;
  }
}
.cards-section h2 {
  text-align: center;
  font-size: 26px;
  color: #0a1d3c;
  margin-top: 40px;
  font-weight: 700;
  position: relative;
}

.cards-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a94d;
  margin: 10px auto 0;
  border-radius: 2px;
}







/* BOTÃO COMPARTILHAR */
.comp-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: .2s;
  font-size: 15px;
}

.comp-btn:hover {
  background: #0a1d3c;
}
/* ===== Rodapé ===== */
footer {
  background: #0a1d3c;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  position: relative;
}

.footer-content p {
  margin: 3px 0;
}
.redes-footer {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 7px; /* controla o espaçamento entre os ícones */
}

.redes-footer a {
  color: #c9a94d;
  font-size: 30px; /* aumenta o tamanho dos ícones */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;       /* remove qualquer sublinhado */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
  text-decoration: none;       /* garante que o ícone não herde sublinhado */
}

}

.redes-footer a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}


footer .endereco a {
  color: #c9a94d;
  text-decoration: none;
}

footer .endereco a:hover {
  text-decoration: underline;
}

footer .admin-link {
  display: block;
  margin-top: 10px;
  color: #c9a94d;
  text-decoration: none;
  font-weight: 500;
}

footer .admin-link:hover {
  color: #fff;
}

/* ===== Botão Flutuante WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;       /* remove qualquer sublinhado */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
  text-decoration: none;       /* garante que o ícone não herde sublinhado */
}

/* === BOTÃO FLUTUANTE DE COMPARTILHAR === */
.share-float {
  position: fixed;
  bottom: 90px; /* acima do botão do WhatsApp */
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #c9a94d;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.share-float i {
  margin-top: 13px;
}

.share-float:hover {
  transform: scale(1.1);
  background-color: #b8963f;
}


/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 29, 60, 0.95);
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  z-index: 9999;
}

.cookie-banner button {
  background: #c9a94d;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background: #b58e3f;
}
/* ===== Carrossel ===== */
/* ===== Carrossel Deslizante ===== */
.carousel {
  position: relative;
  max-width: 900px;
  height: 420px;
  margin: 0 auto;
  overflow: hidden;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slides {
  min-width: 100%;
  flex-shrink: 0;
}

.slides img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  
}

/* Botões de navegação */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 35px;
  background-color: rgba(10, 29, 60, 0.35);
  border-radius: 50%;
  transition: all 0.3s ease;
  user-select: none;
  opacity: 0.6;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(10,29,60,0.8);
  opacity: 1;
}

/* Indicadores (pontinhos) */
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: #090c74;
}

/* Responsivo */
@media (max-width: 600px) {
  .carousel {
    height: 250px;
  }
  .slides img {
    height: 250px;
  }
  .prev, .next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
/* ===== Seção de introdução ===== */
.intro {
  max-width: 900px;
  margin: 50px auto 40px;
  text-align: center;
  padding: 0 15px;
  color: #222;
}

.intro h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0a1d3c;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
}

/* detalhe sutil dourado abaixo do título */
.intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a94d;
  margin: 8px auto 15px;
  border-radius: 3px;
}
/* ===== Convite para seguir nas redes ===== */
.social-invite {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
  color: #333;
  border-top: 2px solid #eee;
}

.social-invite h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #0a1d3c;
  margin-bottom: 10px;
  font-weight: 700;
}

.social-invite p {
  max-width: 750px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 26px;
  color: #c9a94d;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #0a1d3c;
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 600px) {
  .social-invite {
    padding: 40px 15px;
  }
  .social-links a {
    font-size: 24px;
    margin: 0 8px;
  }
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

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

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

.card-content {
  padding: 15px;
}

.card-content .data-post {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 14px;
  color: #333;
}

.verPost {
  display: inline-block;
  margin-top: 10px;
  background: #0a1d3c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.verPost:hover {
  background: #c9a94d;
  color: #fff;
}

