/* Importa a fonte principal */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* ======= BASE GERAL ======= */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #fff170 0%, #ffeb8f 30%, rgb(255, 225, 91) 60%, #ffdd45 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* ======= BANNER PRINCIPAL ======= */
#banner {
    width: 100%;
    height: 600px;
    background-image: url('../img/bg_index.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #facc00;
    margin: 0;
}

@media (max-width: 992px) {
    #banner {
        height: 400px;
        background-size: contain;
    }
}

@media (max-width: 600px) {
    #banner {
        height: 250px;
        background-size: cover;
    }
}

/* ======= BANNER SOBRE NÓS ======= */
#banner_abaut_us {
    width: 100%;
    height: 600px;
    background-image: url('../img/bg_sobre_nos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #facc00;
    margin: 0;
}

@media (max-width: 992px) {
    #banner_abaut_us {
        height: 400px;
        background-size: contain;
    }
}

@media (max-width: 600px) {
    #banner_abaut_us {
        height: 250px;
        background-size: cover;
    }
}

/* ======= VÍDEO FIXO ======= */
.video-cantinho {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: 230px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    background: #000;
}

.fechar-video {
    position: absolute;
    top: 4px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 960px) {
    .video-cantinho {
        width: 100%;
        height: auto;
        bottom: 0;
        right: 0;
    }

    iframe {
        width: 100% !important;
        height: auto !important;
    }
}

/* ======= BLOCO DE INFORMAÇÕES ======= */
.info-conteiner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.info-bloco {
    display: flex;
    align-items: center;
    background-color: #fff6a3;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    width: 300px;
    gap: 12px;
    flex-direction: row;
}

@media (max-width: 600px) {
    .info-bloco {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
}

/* ======= FORMULÁRIO + DETALHES ======= */
.evento-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 20px;
}

/* DETALHES DO EVENTO */
.detalhes-evento {
    background-color: #fff6a3;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
    flex: 1;
    margin-bottom: 40px;
}

.detalhes-evento h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-align: center;
    font-weight: 600;
}

.detalhes-evento h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #444;
}

.detalhes-evento p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: justify;
}

.detalhes-evento ul {
    padding-left: 20px;
    margin-top: 10px;
}

.detalhes-evento ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    list-style-type: disc;
}

/* ======= FORMULÁRIO ======= */
#form_container {
    background-color: #fff6a3;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    flex: 1;
    width: 100%;
}

#form_header {
    text-align: center;
    margin-bottom: 20px;
}

#form_title {
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    color: #2c2c2c;
}

#form_title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #000000;
    left: 0;
    bottom: -8px;
    border-radius: 4px;
}

#input_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.input_box {
    display: flex;
    flex-direction: column;
}

.input-field {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 15px -4px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.form-control {
    flex-grow: 1;
    border: none;
    padding: 12px 10px;
    font-size: 1rem;
    border-radius: 8px;
    background-color: transparent;
}

.form-control:focus {
    outline: 2px solid #6366f1;
}

.btn-default {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.btn-default:hover {
    background-color: #555555;
}

/* ======= LOGO DA SEÇÃO DE DETALHES ======= */
#estacio_logo_texto {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
}

#estacio_logo_texto img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ======= RODAPÉ ======= */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px 10px;
    z-index: 1000;
}

/* ======= EXTRA ======= */
#inspiracao {
    text-align: center;
}

#lista {
    margin-left: 30px;
}

/* ======= RESPONSIVIDADE GERAL ======= */
@media (max-width: 960px) {
    .evento-form-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .detalhes-evento h2 {
        font-size: 1.5rem;
    }

    .detalhes-evento h3 {
        font-size: 1.2rem;
    }

    .detalhes-evento p, .detalhes-evento ul li {
        font-size: 1rem;
    }

    #form_title {
        font-size: 1.5rem;
    }

    .btn-default {
        font-size: 0.95rem;
    }

    .info-conteiner {
        padding: 10px;
    }

    .info-bloco {
        padding: 12px;
    }

    footer {
        font-size: 0.9rem;
    }
}

/* Banner topo */
/* Carrossel */

.carousel {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 300px;
  margin: 0 auto 2em auto;
  overflow: hidden;
  background: linear-gradient(to right, #fff6a3, #fff6a3);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-inner {
  display: flex;
  gap: 1em;
  align-items: center;
  width: 90%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-inner::-webkit-scrollbar {
  display: none;
}

.carousel-inner img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: grayscale(70%);
  user-select: none;
}

.carousel-inner img.active {
  width: auto;
  max-height: 280px;
  height: auto;
  filter: grayscale(0%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  cursor: default;
  z-index: 10;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(212, 175, 55, 0.7);
  border: none;
  color: white;
  font-size: 2.5em;
  padding: 0 0.3em;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 20;
}

.carousel-btn.prev {
  left: 1em;
}

.carousel-btn.next {
  right: 1em;
}

.carousel-btn:hover {
  background-color: rgba(212, 175, 55, 0.9);
}

/* Modal */

.modal {
  display: none; /* modal começa escondido */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.8);
  transition: opacity 0.4s ease;
  object-fit: contain;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 1010;
}

.modal-close:hover {
  color: #d4af37;
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(212, 175, 55, 0.7);
  border: none;
  color: white;
  font-size: 3em;
  padding: 0 0.4em;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 1010;
  transition: background-color 0.3s ease;
}

#modal-prev {
  left: 15px;
}

#modal-next {
  right: 15px;
}

.modal-nav:hover {
  background-color: rgba(212, 175, 55, 0.9);
}
input[name="matricula_indicador" ], [name="nome_indicador"] {
  width: 100%;           /* ocupa toda a largura do container pai */
  padding: 8px 12px;     /* espaço interno confortável */
  border: 1.8px solid #ccc;  /* borda cinza clara */
  border-radius: 6px;    /* cantos arredondados */
  background-color: #fff; /* fundo branco */
  font-size: 1rem;       /* tamanho da fonte confortável */
  font-family: Arial, sans-serif; /* alguém me lemvbra de trocar isso dps */
  box-shadow: 1px 1px 5px rgba(0,0,0,0.05); /* sombra suave */
  transition: border-color 0.3s ease;
  box-sizing: border-box; /* pra não ultrapassar o container */
}

input[name="matricula_indicador" ]:focus, input[name="nome_indicador"]:focus {
  outline: none;            /* remove contorno padrão */
 outline: 2px solid #6366f1;
}

.contador-kit {
  background-color: #ecd504;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px;
  margin: 25px 0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.kit-exclusivo {
  background-color: #fffbe6;
  padding: 3em 2em;
  margin: 3em auto 0;
  border-radius: 12px;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.kit-exclusivo h3 {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 0.5em;
}

.kit-descricao {
  font-size: 1.1em;
  margin-bottom: 2em;
  color: #000000;
}

.kit-itens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.kit-item {
  width: 160px;
  text-align: center;
}
.kit-item p {
  text-align: center;
}

.kit-item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5em;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kit-item p {
  font-size: 1em;
  color: #333;
  font-weight: 500;
}
