/* Definindo variáveis CSS para cores, fontes, etc. */
:root {
    --font-weight-bold: 600;
    --font-weight-normal: 400;
    --primary-font: "Permanent Marker", cursive;
    --secondary-font: "Montserrat", sans-serif;
    --background-dark: #0b172f;
    --overlay-color: #1c375e;
}

/* Estilos base que não dependem da largura da tela */
#section1 {
    position: relative;
    background: url("../assets/img/IMG-20231006-WA0187.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
}

#section1:before,
#section2 {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#section1:before {
    background-color: var(--overlay-color);
    height: 100%;
    opacity: 0.2;
}

#section2 {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../assets/img/fundosection2.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}

#section4 {
    background: var(--background-dark);
    background-size: cover;
    position: relative;
}

#section4 h2 {
    color: white;
}

.time,
.cronometro,
.data-lancamento {
    display: flex;
    justify-content: center;
    gap: 0px 25px;
    margin-top: 0;
}

.cronometro {
    color: white;
}

.time {
    flex-direction: column;
    align-items: center;
}

.cronometro h1,
.time h1 {
    font-family: "Anton", sans-serif;
    font-weight: var(--font-weight-normal);
}

#sectionTime {
    padding: 2%;
}

.faltam,
.faltampt2 {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-normal);
    font-style: normal;
}

.faltam1 {
    font-family: var(--secondary-font);
    font-weight: 300;
    font-style: normal;
}

.php-email-form {
    width: 90%;
}

.botaoVenhaConosco,
.php-email-form,
.hero-container {
    margin-top: 3%;
}

.php-email-form input {
    border-radius: 50px;
    box-shadow: none;
    font-size: 16px;
    border: 0;
    padding: 0px 15px 2px 20px;
    width: 100%;
    height: 50px;
    margin: 0 2px;
}

.btn-quero {
    padding: 8px 30px !important;
    width: 100% !important;
}

.btn-quero4 {
    padding: 8px 30px !important;
    width: 100% !important;
}

/* Media query para telas médias e grandes */
@media (min-width: 400px) {

    h1 {
        font-weight: var(--font-weight-bold);
        font-size: 4rem;
        line-height: 70px;
    }

    #section1 .faltam {
        margin-top: 2%;
    }

    .faltam1 {
        font-size: 3rem;
        line-height: 50px;
    }

    .faltampt2 {
        font-family: var(--secondary-font);
        margin-top: 2%;
        font-optical-sizing: auto;
    }

    .lead {
        font-size: 2rem;
        font-weight: 300;
    }

    .botaoVenhaConosco .btn.btn-secondary {
        font-size: 1.5rem;
    }

    .centralizar-vertical {
        top: 50% !important;
    }

    #section2 h1 {
        font-weight: 600 !important;
        font-size: 2.7rem;
        line-height: 50px;
    }

    .php-email-form {
        margin-left: 5%;
    }

    @media(max-width:500px) {
        .centralizar-vertical {
            top: 60% !important;
        }
    }

    @media(max-width:768px) {
        .hero-container h2 {
            font-size: 2.7rem;
        }

        .php-email-form input {
            margin-top: 2%;
            margin-bottom: 5%;
        }

        .btn-quero {
            font-size: 2rem;
            width: 60% !important;
        }
    }

    @media (min-width: 768px) {
        .centralizar-vertical {
            top: 65% !important;
        }

        .php-email-form {
            margin-left: 20%;
        }

        .btn-quero {
            font-size: 1.5rem;
            width: 60% !important;
        }


    }

}

/* Media query para telas pequenas */
@media (max-width: 399px) {
    h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.15rem;
        font-weight: 300;
        line-height: 25px;
        padding: 3%;
    }

    #btn-quero-mobile {
        padding: 8px 30px;
        width: 100%;
        margin-top: 5%;
        font-size: 2rem;
        background: var(--background-dark);
        color: white;
    }

    .centralizar-vertical {
        top: 65% !important;
    }

}