/* ==================================================
   RESET / BASE
================================================== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #0a0024;
  background-color: #fff;
}

/* ==================================================
   HERO
================================================== */
header.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 5%;
  background: linear-gradient(to right, #ffffffb4, #370350);
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  header.hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ==================================================
   LOGO
================================================== */
@keyframes pulse-glow {
  0% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.4); }
  100% { transform: scale(1); filter: brightness(1); }
}

.logo-container1 img {
  max-width: 250px;
  height: auto;
  display: block;
  animation: pulse-glow 2.2s ease-in-out 3;
}


/* ==================================================
   MENU TOPO DIREITO
================================================== */


/* menu fixo direita topo */
.menu-topo {
  position: fixed;
  top: 14px;
  right: 30px;
  z-index: 1000;
}

/* esconde checkbox */
#menu-toggle {
  display: none;
}

/* botão ☰ */
.menu-icon {
  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(200, 200, 200, 0.5); /* cinza claro 50% */
  color: #222;

  padding: 10px 18px;
  border-radius: 14px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  backdrop-filter: blur(6px); /* efeito vidro */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
}

.menu-icon:hover {
  background: rgba(180, 180, 180, 0.7);
  transform: translateY(-2px);
}

/* menu */
.menu-links {
  position: absolute;
  top: 54px;
  right: 0;
  background: rgba(1, 122, 96, 0.5); /* cinza claro 50% */
  backdrop-filter: blur(8px);          /* efeito glass */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(1, 110, 138, 0.521);
  padding: 10px;
  min-width: 150px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: #08012e;
  font-size: 14px;
  border-radius: 8px;
}

.menu-links a:hover {
  background: rgba(255, 255, 255, 0.521);
  transform: translateX(3px);
}

/* logo */
.menu-links img {
  width: 120px;
  margin: 6px auto 10px;
}

/* abre menu */
#menu-toggle:checked + .menu-icon + .menu-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



/* ==================================================
   TEXTOS
================================================== */
@keyframes slideInFromRight {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.textos {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: slideInFromRight 1s ease-out;
}

.textos h1,
.textos h2 {
  text-align: center;
  max-width: 800px;
  word-wrap: break-word;
}

.textos h1 { font-size: 20px; margin-bottom: 10px; }
.textos h2 { font-size: 18px; font-weight: normal; }

h3.textos,
h4.textos {
  text-align: center;
  font-weight: normal;
}

h3.textos {
  font-family: 'Poppins', 'Arial Rounded MT Bold', sans-serif;
  font-size: 16px;
  margin: 15px;
}

h4.textos {
  font-size: 14px;
  margin: 15px;
}

/* ==================================================
   BOTÕES
================================================== */
.cta-btn {
  display: block;
  margin: 20px auto;
  padding: 15px 25px;
  background: linear-gradient(125deg, #20a7f5, #06fc06);
  color: #15012b;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  width: 90%;
  max-width: 300px;
}

/* ==================================================
   GALERIA
================================================== */
.galeria-section {
  padding: 40px 5%;
  background-color: #f9f9f9;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 16px;
}

/* Tablets */
@media (max-width: 1024px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr; /* UMA IMAGEM POR VEZ */
  }
}


.galeria-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}

/* ==================================================
   MODAL
================================================== */
.modal-imagem {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.9);
  justify-content: center;
  align-items: center;
}

.modal-imagem img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.modal-nav.esquerda { left: 20px; }
.modal-nav.direita  { right: 20px; }

/* ==================================================
   VÍDEO
================================================== */
.video-wrapper {
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================================================
   WHATSAPP FLOAT
================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* ==================================================
   MENU SOCIAL
================================================== */
@keyframes fumaca {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.menu-social {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 25px;
  background: url("img/menu_social.png") center / contain no-repeat;
  overflow: hidden;
}

.menu-social::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -40%;
  width: 200%;
  height: 80px;
  background: url("img/fumaca.png") repeat-x center / contain;
  opacity: .35;
  animation: fumaca 12s linear infinite;
}

.redes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-social img {
  width: 85px;
  transition: transform .3s;
}

.menu-social a:hover img {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .menu-social {
    flex-direction: column;
    padding-bottom: 100px;
  }

  .menu-social img {
    width: 70px;
  }
}

/* ==================================================
   FOGUETE
================================================== */
@keyframes vibrar {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.foguete {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.foguete img {
  width: 100px;
  animation: vibrar 1.2s infinite;
}

@media (max-width: 768px) {
  .foguete {
    position: static;
    margin-top: 20px;
    transform: none;
  }

  .foguete img {
    width: 80px;
    animation: none;
  }
}

/* ==================================================
   FOOTER
================================================== */
footer {
  background: linear-gradient(to bottom,#fff,#dbdbdb,#71f703);
  padding: 30px 0;
  text-align: center;
}

footer p { color: #6403e4; }
footer a { color: #0869fa; }

.end {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}
