/* HERO MODERNO */

:root {
  --gold: #b69958;
  --light-gold: #e6c780;
  --blue: #26486c;
  --light-blue: #3a6ea5;
  --dark-blue: #1a365c;
  --white: #fff;
  --black: #2c3e50;
}

.main-menu ul {
  display: flex;
  align-items: center;
  height: 90px; /* igual ao .header-bar */
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  transition: color 0.3s, background 0.3s;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.main-menu a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 60%, #fffbe7 100%);
  border-radius: 2px;
  transition: width 0.3s, left 0.3s;
  transform: translateX(-50%);
}

.main-menu a:hover,
.main-menu a:focus {
  color: var(--gold);
  background: rgba(182, 153, 88, 0.08);
}

.main-menu a:hover::after,
.main-menu a:focus::after {
  width: 70%;
}

.section-title {
  text-align: center;
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 48px 0 32px 0;
  letter-spacing: 1px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #20b358;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.contact-form {
  background: rgba(38, 72, 108, 0.85); /* Fundo azul escuro translúcido */
  backdrop-filter: blur(6px);
  max-width: 700px;
  margin: 40px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(38,72,108,0.18);
  border: 1.5px solid var(--gold);
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09); /* translúcido */
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  transition: border 0.2s, background 0.2s;
}

.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1.5px solid var(--light-gold);
  background: rgba(255,255,255,0.16);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  font-size: 1.08rem;
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.contact-form .submit-btn {
  background: var(--gold);
  color: var(--dark-blue);
  padding: 16px 0;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(182, 153, 88, 0.2);
  letter-spacing: 1px;
}
.contact-form .submit-btn:hover {
  background: var(--light-gold);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.contact-form .submit-btn:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .main-menu ul {
    display: flex;           /* Garante o layout em linha */
    flex-wrap: wrap;         /* Permite quebrar em mais de uma linha */
    gap: 0.5rem;             /* Espaço entre os itens */
    justify-content: center; /* Centraliza os itens */
    padding: 0 0.3rem;
    font-size: 1rem;         /* Fonte levemente menor para caber mais links */
  }

  .main-menu ul li {
    margin: 0;
    padding: 0 2px;
  }

  .main-menu ul a {
    padding: 8px 6px;
    display: inline-block;
    min-width: unset;
  }

  .header-bar {
    flex-direction: column; /* Empilha logo e menu se preferir */
  }
}

@media (max-width: 600px) {
  .main-menu ul {
    font-size: 0.92rem;
    gap: 0.2rem;
    padding: 0 0.1rem;
  }

  .main-menu ul a {
    padding: 7px 2px;
  }
}

.hero-modern {
  text-align: center;
  padding: 200px 20px 60px;
  color: #fff;
  margin-bottom: 40px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(38,72,108,0.18);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  margin-right: 32px; /* Ajuste conforme necessário */
}

.logo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer {
  background: var(--dark-blue);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centraliza verticalmente todo o conteúdo */
  text-align: center;
  padding: 40px 0 20px 0;
  gap: 16px; /* Pequeno espaçamento entre os blocos */
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  display: block;
  margin: 0 auto 16px auto;
  max-width: 250px;
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 6px 12px;
  background: #fff;
}

.footer-info {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-info p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 8px 0;
}

.social-icons {
  display: flex;
  align-items: center;         /* Garante alinhamento vertical absoluto */
  justify-content: center;
  gap: 32px;                   /* Ajuste conforme preferência visual */
  margin: 16px 0 0 0;
  padding: 0;
  width: 100%;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2rem;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--dark-blue);
  border-color: var(--light-gold);
  transform: translateY(-10px);
}

.copyright {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(182, 153, 88, 0.3);
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

/* Responsivo: mantém alinhado mesmo em telas pequenas */
@media (max-width: 700px) {
  .footer {
    gap: 10px;
    padding: 30px 0 16px 0;
  }
  .social-icons {
    gap: 18px;
  }
  .footer-info p {
    font-size: 1.08rem;
  }
  .footer-logo img {
    max-width: 200px;
  }

}

/* Overlay escuro para legibilidade do texto */
.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,32,39,0.4);
  z-index: 1;
  border-radius: 0 0 32px 32px;
  pointer-events: none;
}

/* Garante que o conteúdo fique acima do overlay */
.hero-modern > * {
  position: relative;
  z-index: 2;
}

/* BLOCO DE DESTAQUE DO TEXTO */
.hero-texto-destaque {
  display: inline-block;
  padding: 32px 40px;
  border: 2px solid rgba(255, 255, 255, 0.35); /* Borda branca sutil */
  border-radius: 18px;
  background: rgba(0,0,0,0.18); /* Fundo levemente escurecido */
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(2px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

header {
  background: var(--dark-blue);
  padding: 0.8rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--gold);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o conteúdo do header */
  /*background: var(--dark-blue);*/
  padding: 0 32px;
  height: 90px;
  /*box-shadow: 0 4px 24px rgba(0,0,0,0.06);*/
  position: relative;
}

.logo img {
  max-width: 140px;
  height: auto;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 12px;
  /*box-shadow: 0 2px 10px rgba(38,72,108,0.10);*/
  padding: 4px 8px;
  margin-right: 40px;
  display: block;
}

.main-menu a {
  color: var(--white);
}

.main-menu a:hover,
.main-menu a:focus {
  color: var(--gold);
  background: rgba(182, 153, 88, 0.08);
}

.main-menu a::after {
  background: linear-gradient(90deg, var(--gold) 60%, var(--light-gold) 100%);
}

/* Responsivo para telas menores */
@media (max-width: 700px) {
  .hero-texto-destaque {
    padding: 18px 10px;
  }
}

.hero-modern h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.18);
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold) 60%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold); /* Fallback para navegadores antigos */
}


.hero-modern p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.92;
}

.hero-modern .cta-button {
  background: var(--gold);
  color: var(--dark-blue);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(182, 153, 88, 0.4);
  animation: pulse 2s infinite;
  letter-spacing: 1px;
}

.hero-modern .cta-button:hover {
  background: var(--light-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(182, 153, 88, 0.6);
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
}

body {
  background: var(--dark-blue);
}

.hero-modern h1, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.sobre-nos-section {
    background: rgba(38, 72, 108, 0.85);
    margin: 4rem auto 2rem auto;
    padding: 50px 5% 40px 5%;
    border-radius: 20px;
    max-width: 1000px;
    box-shadow: 0 8px 32px rgba(38, 72, 108, 0.25);
    text-align: center; /* Centraliza todo o conteúdo */
}

.sobre-nos-container {
    display: flex;
    flex-direction: column; /* Imagem abaixo do texto por padrão */
    align-items: center;
    gap: 30px;
}

.sobre-nos-texto {
    flex: none;
    max-width: 700px;
    margin: 0 auto;
}

.sobre-nos-texto h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.sobre-nos-texto p {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.sobre-nos-texto ul {
    list-style: disc inside;
    color: var(--accent);
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-nos-texto li {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--light);
}

.sobre-nos-foto {
    flex: none;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.sobre-nos-foto img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(182, 153, 88, 0.15);
    border: 3px solid var(--gold);
}

@media (min-width: 900px) {
    .sobre-nos-container {
        flex-direction: row; /* Imagem ao lado do texto em telas largas */
        align-items: center;
        gap: 40px;
    }
    .sobre-nos-texto {
        max-width: 500px;
        margin: 0;
        text-align: left;
    }
    .sobre-nos-texto ul {
        text-align: left;
        max-width: none;
        margin: 0;
    }
    .sobre-nos-foto {
        max-width: 350px;
    }
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 24px;
  background: #1a365c;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  background: #f8f8f8;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
  border-radius: 14px 14px 0 0;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2.5px 8px rgba(0,0,0,0.07);
}

.gallery-item img:hover {
  transform: scale(1.06) rotateZ(-1deg);
}

.caption {
  display: block;
  text-align: center;
  padding: 10px 6px 12px 6px;
  color: #2d2e38;
  font-size: 1.04rem;
  background: linear-gradient(0deg, #fff 80%, transparent);
  border-radius: 0 0 14px 14px;
}
/* Força o overlay do LightGallery acima de tudo */
.lg-backdrop, .lg-outer {
  z-index: 9999 !important;
}

/* Harmoniza o fundo dos itens da galeria */
.gallery-item {
  background: var(--dark-blue);
}

/* Melhora o contraste das legendas */
.caption {
  color: var(--white);
  background: linear-gradient(0deg, rgba(38,72,108,0.98) 80%, transparent);
}

/* Esconde o 'checkbox' controlador */
.menu-toggle {
  display: none;
}

/* Ícone hambúrguer (botão do menu) */
.hamburger {
  display: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-left: 16px;
  z-index: 1201;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  transition: 0.4s;
}

/* Menu tradicional aparece só em telas grandes */
.main-menu {
  display: block;
}

/* MENU HAMBÚRGUER NO MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100vw;
    background: var(--dark-blue);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    z-index: 1200;
    transition: max-height 0.4s;
  }

  /* Menu aberto quando o checkbox está marcado */
  .menu-toggle:checked + .hamburger + .main-menu {
    display: block;
    animation: fadeInMenu 0.4s;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    margin: 0;
    width: 100%;
    height: auto;
  }

  .main-menu ul li {
    width: 100%;
    text-align: center;
  }

  .main-menu ul a {
    display: block;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--white);
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
  }
  .main-menu ul a:hover {
    background: var(--gold);
    color: var(--dark-blue);
  }
  .header-bar {
    flex-direction: row;
    height: 90px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
}

@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-24px);}
  to   { opacity: 1; transform: translateY(0);}
}

#agradecimento-modal { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh; 
  background: rgba(0,0,0,0.6); 
  z-index: 1000; 
  justify-content: center; 
  align-items: center;
}
#agradecimento-modal > div {
  background: #216685; 
  color: #fff; 
  padding: 35px 40px; 
  border-radius: 20px; 
  text-align: center; 
  max-width: 90vw; 
  box-shadow: 0 10px 35px rgba(0,0,0,0.5)
}
@media (max-width: 480px) {
  #agradecimento-modal > div {
    padding: 20px 10px;
    font-size: 1.05rem;
  }
}