@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&display=swap");

body,
h1,
h2,
h3,
h5,
p,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif, sans-serif;
}

/*SECTIOM BUTTOM*/
#buttom-inscricao {
    position: relative;
    width: 100%;
}

#buttom-inscricao .img-inscricao {
    width: 100%;
    display: block;
}

/* Botão centralizado */
#buttom-inscricao .btn-inscricao {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    background-color: #B9A972;
    color: #194A34;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover */
#buttom-inscricao .btn-inscricao:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: #a09164;
}

/* 🔥 RESPONSIVIDADE — AJUSTES PARA TELAS MENORES */
@media (max-width: 992px) {
    #buttom-inscricao .btn-inscricao {
        font-size: 1rem;
        padding: 12px 28px;
            left: 58%;
    }
}

@media (max-width: 768px) {
    #buttom-inscricao .btn-inscricao {
        font-size: 1rem;
        padding: 10px 25px;
        left: 58%;
    }
}

@media (max-width: 480px) {
    #buttom-inscricao .btn-inscricao {
        font-size: 0.80rem;
        padding: 8px 20px;
        border-radius: 8px;
        left: 70%;
        transform: translate(-95%, -50%);
    }

  .snowflake {
 
  color: white;
  animation: fall linear forwards;
}
}
/* Fundo da neve */
#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: white !important;
  filter: brightness(10);
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}


.btn-play-music {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  background: #B9A972;
  color: #194A34;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  z-index: 99999;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .btn-play-music {
    display: none;
  }
}






/* container do vídeo */
.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #f7f7f7; /* opcional */
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}







#insta-section {
    padding: 50px 20px;
    background: #1A4A34;
    text-align: center;
}

.insta-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    animation: fadeDown 1s ease forwards;
    opacity: 0;
    color: #f7f7f7;
}

/* grade de 5 em cima e 5 em baixo */
.insta-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insta-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* card estilizado */
.insta-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: appear 1s forwards;
}

/* efeito ao aparecer */
@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hover animado */
.insta-card:hover {
    transform: scale(1.05) rotate3d(1, 1, 0, 6deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* embed instagram */
.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
}

/* botão final */
.btn-instagram {
    margin-top: 40px;
    padding: 14px 35px;
    background: linear-gradient(45deg, #ff0077, #ff7a00);
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255,0,80,0.35);
    transition: 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 40px rgba(255,0,80,0.55);
}

/* animação título */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* responsivo */
@media (max-width: 1100px) {
    .insta-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .insta-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .insta-row {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* PAGINAÇÃO + CARROSSEL MOBILE */
@media (max-width: 480px) {

    .insta-grid {
        overflow: hidden;
        position: relative;
    }

    .insta-page {
        display: none;
        animation: slideIn 0.35s ease;
    }

    .insta-page.active {
        display: block;
    }

    /* Dots de paginação */
    .dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: #fff;
        opacity: 0.4;
        border-radius: 50%;
        transition: 0.3s;
    }

    .dot.active {
        opacity: 1;
        transform: scale(1.3);
    }

    /* Botões (mantidos) */
    .pagination-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .pagination-buttons button {
        padding: 12px 25px;
        background: #ffffff22;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
    }

}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}




/* 🎄 Footer com tema natalino */
.footer-maps {
    background: linear-gradient(180deg, #1A4A34);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    margin-top: 0;
    position: relative;
}

/* Título com emoji-pin */
.maps-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Wrapper do mapa */
.map-wrapper {
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Endereço */
.footer-address {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 300;
}

/* 🚗 Botão Traçar Rota */
.btn-rota {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #00c853; /* verde natal */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.btn-rota:hover {
    background: #009e42;
    transform: scale(1.05);
}


/* 📱 RESPONSIVIDADE */
@media (max-width: 768px) {
    .maps-title {
        font-size: 1.6rem;
    }

    .map-wrapper {
        height: 250px;
    }

    .footer-address {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 200px;
    }
}








