:root {
    --blue: #016FB9;
    --blue-turq: #22AED1;
    --blue-light: #F0F8FF;
    --black: #000000;
    --blue-2: #2677A8;
    --blue-800: #075385;
    --white: #ffffff;
}

/* Classes for colors */
.blue {
    color: var(--blue)
}

.blue-turq {
    color: var(--blue-turq)
}

.blue-light {
    color: var(--blue-light)
}

.black {
    color: var(--black)
}

.blue-2 {
    color: var(--blue-2)
}

.blue-800 {
    color: var(--blue-800)
}

.white {
    color: var(--white)
}




body {
    font-family: "Montserrat", serif;
    line-height: 1.2;
    margin: 0;
}

.content {


    padding-top: 2em;
    padding-left: 2em;
    padding-right: 2em;
    flex-wrap: wrap;
    background-image: url("./img/background.jpg");
    /* URL da imagem */
    background-size: cover;
    /* Faz com que a imagem cubra toda a área */
    /* Centraliza a imagem */
}

/*------------------ Titles & Text ------------------ */

.h0 {

    font-size: 2.4em;
    font-weight: 600;
}

.h1 {

    font-size: 1.8em;
    font-weight: 600;
}

.h3 {

    font-size: 1.4em;
    font-weight: 600;
}

.h2 {

    font-size: 1.2em;
    font-weight: 600;
}

.small {
    font-size: 0.8em;

}


.text-center {
    text-align: center;
}

.highlight {
    font-weight: 600;
    color: var(--blue);
}

.text {

    font-size: 1.2em;
    width: -webkit-fill-available;
}

.img {

    max-width: 80%;
}


/* -------------- cards ------------- */

.card-feature {

    background-color: var(--blue-light);
    border-radius: 12px;
    padding: 30px 20px 30px 20px;
    width: -webkit-fill-available;
    max-width: 600px;
    margin: 0.4em;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.card-advantages {

    background-color: var(--blue-2);
    color: #F0F8FF;
    border-radius: 12px;
    padding: 30px 20px 30px 20px;
    width: -webkit-fill-available;
    margin: 0.2em;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.text-wrapper {
    justify-content: center;

}

.cta {
    background-color: var(--blue-light);
    border-radius: 12px;
    padding: 4em 2em 4em 2em;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);

}

/* -------------- buttons ------------- */

.primary {

    font-family: "Montserrat", sans-serif;
    background-color: var(--blue-800);
    color: var(--white);
    padding: 8px 16px 8px 16px;
    font-weight: 600;
    font-size: 1.2em;
    border-radius: 12px;

}

.input {

    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    border-radius: 12px;
    border: 1px solid var(--blue-light);
    padding-left: 1em;
    color: var(--blue-light);
    height: 95%;

}

input::-webkit-input-placeholder {
    color: var(--blue-light);
    /* Chrome/Opera/Safari */
}

input::-moz-placeholder {
    color: var(--blue-light);
    /* Firefox */
}

input:-ms-input-placeholder {
    color: var(--blue-light);
    /* Internet Explorer */
}



/* -------------- Width / height definitions ------------- */

.section {
    padding-top: 2em;
    padding-bottom: 2em;

}

.section-centered {
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
    justify-content: center;
    align-items: center;


}

.center-items {
    display: flex;
    justify-content: center;
}

.justify-items {
    justify-content: center;
}

.divider {
    height: 2em;
}

.w-full {

    width: 100%
}

.w-fill {

    width: -webkit-fill-available;
}

.w-80 {
    width: 80%
}

.h-full {

    width: 100%
}

.mb-1 {

    margin-bottom: 1em;
}

.mb-05 {

    margin-bottom: 0.5em;
}

.mb-2 {

    margin-bottom: 2em;
}



/* -------------- Navbar ------------- */


.nav-include {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-bottom: #016FB9;

}


.navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--blue-light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.logo {
    width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-right: 4em;
    justify-content: flex-end;
}

.nav-links li a {
    text-decoration: none;
    color: var(--blue);
    font-size: 1rem;
}

.hamburger {
    display: none;
    /* Esconde o botão em telas maiores */
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: var(--blue);
        /* Mostra o botão em telas menores */
    }

    .nav-links {
        flex-direction: column;
        display: none;
        /* Esconde o menu inicialmente */
        width: 100%;
        background-color: var(--blue-turq);
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
        /* Mostra o menu quando ativo */
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-links li a {
        text-decoration: none;
        color: var(--white);
        font-size: 1rem;
    }

}


/*----- Footer */

.footer {

    background: linear-gradient(90deg, #0174BD, #1DACD4);
    border-radius: 20px 20px 0px 0px;
    padding-top: 4em;
    padding-bottom: 0.5em;
    justify-items: center;

}

.footer-content {

    padding-bottom: 3.5em;

}



/*----- Links */

.disabled-link {
    cursor: not-allowed;
    /* Desativa o clique */
    color: gray !important;
    /* Indica visualmente que está desativado */
    text-decoration: none;
    cursor: not-allowed;
    /* Mostra o cursor de "não permitido" */
}


/* ------ Media queries ---- */

@media (min-width: 768px) {
    .card-wrapper {
        display: flex;
        justify-content: center;
        padding-left: 12%;
        padding-right: 12%;

    }

    .text-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .card-feature {
        width: 100%;
    }


    .card-advantages {
        width: 50%;
    }

    .footer_content {

        display: flex;
        justify-content: center;
        width: -webkit-fill-available;
        padding-left: 4em;
        padding-right: 4em;
        padding-bottom: 3.5em;
    }

    .content {

        padding-top: 2em;
        padding-left: 4em;
        padding-right: 4em;
    }

    .img {

        max-width: 30%;
    }
}