/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    color: #1e1e1e;
    background-color: #f9f9f9;
}

/* Header */
header {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100px;
    display: flex;
    position: fixed;
    align-items: center;
    background-color: #ffffff;
    padding: 1.5rem 8% 1.5rem;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h1 {
    font-weight: 700;
    color: #1e1e1e;
    font-family: 'Michroma';
    font-size: clamp(1.5em, 2vw, 2em);
}

header ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header a {
    text-decoration: none;
    color: #1e1e1e;    
    cursor: pointer;
    font-weight: 500;
    font-size: clamp(0.5em, 1.5vw, 1.2em);
    transition: color 0.3s ease;
    font-family: 'Poppins';
}

header a:hover {
    color: rgb(172, 212, 24); /* azul suave */
}

.container-header-logo {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: start;
}

.container-header-logo img {
    width: 20%;
}

/* Main containers */
main {
    width: 100%;
    padding: 0%;
    height: auto;
    display: flex;
    padding: 0px 0% 0px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

section {
    width: 83%;
    height: 75vh;
}

.container-inicio {
    width: 100%;
    display: flex;
    margin-top: 100px;
    align-items: center;
    padding: 0px 8% 0px;
    flex-direction: row;
    height: calc(100vh - 100px);
    justify-content: space-between;
}

.container-explicacao {
    gap: 30px;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    font-family: 'Poppins';
}

.container-explicacao h2 {
    font-size: clamp(2em, 3.5vw, 5rem);
    line-height: 1.2;
}

.container-explicacao span {
    color: rgb(172, 212, 24);
}

.container-explicacao li {
    list-style: none;
    font-weight: 300;
    font-size: clamp(0.8em, 1vw, 1.2em);
}

.container-explicacao button {
    color: #1e1e1e;
    cursor: pointer;
    font-weight: 300;
    border-radius: 3px;
    transition: 0.2s ease;
    font-family: 'Poppins';
    border: 1px solid #1e1e1e;
    background-color: transparent;
    font-size: clamp(0.9em, 1vw, 1.3em);
    padding: 18px clamp(90px, 8vw, 120px);
}

.container-explicacao button:hover {
    border: 1px solid rgb(172, 212, 24);
    color: rgb(172, 212, 24);

}

.container-imagens {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: start;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.container-imagens-brechos {
    width: 85%;
    display: flex;
    flex-direction: column;
}

.container-imagens-brechos img{
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.container-planos {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
    padding: 0px 8% 0px;
}

.container-planos h2 {
   color: #1e1e1e;
   margin-bottom: 30px;
   font-family: 'Poppins';
   font-size: clamp(1.6rem, 4vw, 4rem);
}

.container-card {
    width: clamp(320px, 50vw, 500px);
    height: clamp(200px, 40vh, 350px);
    overflow: auto;
}

.container-card .cards {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid black;
}

.container-card .cards img{
    height: 100%;
}


/* Footer */
footer {
    width: 100%;
    display: flex;
    color: black;
    align-items: start;
    padding: 5% 8% 10px;
    flex-direction: column;
    height: calc(70vh - 100px);
    background-color: #f9f9f9;
    border-top: 1px solid rgb(223, 223, 223);
    justify-content: space-between;
}

.container-informacoes {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: row;
    justify-content: space-between;
}

footer .informacoes {
    list-style: none;
}

footer .informacoes h3 {
    font-weight: 500;
    color: #a3a3a3;
    font-family: 'Poppins';
    font-size: clamp(0.8rem, 1vw, 1rem);
}

footer .informacoes li {
    margin-top: 15px;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: clamp(0.7rem, 1vw, 0.9rem);
}

.container-dados-seguranca {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: 'Poppins';
    justify-content: space-between;
}

.container-clausulas ul {
    gap: 50px;
    width: auto;    
    display: flex;
    list-style: none;
    color: #a3a3a3;
    align-items: center;
    flex-direction: row;
    transition: 0.3s ease;
    justify-content: space-between;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
}

.container-clausulas ul li:hover {
    cursor: pointer;
    color: rgb(172, 212, 24);
}

.container-criado-por ul {
    list-style: none;
    color: #a3a3a3;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
}

.container-logo-footer {
    gap: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.container-logo-footer h2 {
    font-weight: 600;
    color: #1e1e1e;
    font-family: 'Michroma';
    font-size: clamp(1.5rem, 2vw, 1.7rem);
}



@media (max-width: 600px) {

    header {
        align-items: center;
        justify-content: center;
    }

    header ul {
        display: none;
    }

    .container-inicio {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    
    .container-explicacao {
        gap: 30px;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        font-family: 'Poppins';
    }

    .container-explicacao h2 {
        text-align: center;
    }

    .container-explicacao li {
        text-align: center;
    }

    .container-imagens {
        width: 80%;
        height: auto;
        display: flex;
        align-items: start;
        position: relative;
        flex-direction: column;
        justify-content: start;
    }

    .container-imagens-brechos {
        width: 100%;
        display: flex;
        border-radius: 4px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .container-imagens-brechos img{
        width: 80%;
        height: 100%;
    }

    #imagem-secundaria{
        top: 45%;
        left: -5%;
        width: 60%;
        position: absolute;
    }

    footer {
        width: 100%;
        height: auto;
        display: flex;
        color: black;
        align-items: start;
        padding: 30px 30px 30px;
        flex-direction: column;
        background-color: #f9f9f9;
        justify-content: space-between;
    }

    .container-informacoes {
        gap: 50px;
        width: 100%;
        height: auto;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: space-between;
    }

    footer .informacoes {
        list-style: none;
    }

    footer .informacoes h3 {
        font-weight: 500;
        color: #a3a3a3;
        font-family: 'Poppins';
        font-size: clamp(1rem, 1vw, 1rem);
    }

    footer .informacoes li {
        margin-top: 20px;
        font-weight: 500;
        font-family: 'Poppins';
        font-size: clamp(0.9rem, 1vw, 0.9rem);
    }

    .container-dados-seguranca {
        width: 100%;
        height: auto;
        display: flex;
        margin-top: 50px;
        align-items: start;
        flex-direction: column;
        font-family: 'Poppins';
        justify-content: space-between;
    }

    .container-clausulas ul {
        gap: 10px;
        width: 100%;   
        height: auto; 
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        color: #a3a3a3;
        align-items: start;
        margin-bottom: 20px;
        transition: 0.3s ease;
        flex-direction: row;
        justify-content: left;
        font-size: clamp(0.7rem, 1vw, 0.9rem);
    }

    .container-clausulas ul li:hover {
        cursor: pointer;
        color: rgb(172, 212, 24);
    }

    .container-criado-por ul {
        list-style: none;
        color: #a3a3a3;
        font-size: clamp(0.7rem, 1vw, 0.9rem);
    }

    .container-logo-footer {
        gap: 10px;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }


}
