body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    margin: 0 0 0 0;
    padding: 0;
    background-color: #000000;
}

.vantagens {
    max-width: 100%;
    /* ou o que fizer sentido no seu layout */
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.text {
    flex: 1 1 45%;
    /* Cresce, encolhe, largura base 45% */
    min-width: 250px;
    /* Garante que no celular quebre a linha */
    color: #ffffff;
    padding: 20px;
    text-align: left;

}

.text h2 {
    font-size: 30px;
    padding-left: 79px;
    color: rgb(231, 255, 95);
    margin-bottom: 20px;
}

.text ul {
    list-style-type: circle;
    padding-left: 100px;
    font-size: 20px;
    color: #ffffff;


}



.container-vantagens {
    flex: 1 1 45%;
    min-width: 200px;

    padding: 20px;
    text-align: center;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    /* deixa a container usar a largura disponível */
    height: 300px;
    box-sizing: border-box;


}

.box {
    min-width: 200px;
    padding: 20px 20px;
    text-align: center;
    gap: 10px;
    background-color: #151546;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    color: rgb(0, 0, 0);
    align-content: center;
}



.header {
    /* background-color: black; */
    background-image: url('../img/wallpaper1.jpg');
    background-size: cover;
    padding-bottom: 20px;

    position: relative;
}

.image-header {
    padding-top: 35px;
    padding-bottom: 20px;
    display: block;
    margin: 0 auto;
    width: 30%;
}

.subtitle {
    padding: 10px;
    border-radius: 15px;
    align-items: center;
    background-color: #000000;
    margin-top: 30px;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 15px;
}

.text-header {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    margin-top: 10px;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.85);
}

.part-1 {
    padding: 20px;
    background-color: #000000;
    margin-top: -30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.603);
    z-index: 1;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.85);
    color: #ffffff;
}

.part-1 h2 {
    text-align: center;
    font-size: 30px;
    margin-top: 40px;
    color: rgb(255, 255, 255);
}

.part-1 p {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 90px;
    text-align: justify;
}



.container-flex {
    text-align: center;
    margin-top: 20px;
    background-color: #151546;
    padding: 60px;
    border-radius: 15px;
}

.images-example {
    display: inline-block;
    width: 40%;
    margin: 20px 5px;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.603);
    border-radius: 15px;
}

.part-3 {
    background-color: black;
    color: #ffffff;
    text-align: center;

}

.part-3 h2 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button {
    background-color: #00923d;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 20px 40px 20px 40px;
    margin-bottom: 30px;
    gap: 10px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    font-size: 40px;
    transition: transform 0.1s ease;
    box-shadow: 0 4px 8px rgba(0, 200, 83, 0.2);
    user-select: none;
}

.button img {
    width: 70px;
    height: 70px;
}

.button:active {
    transform: scale(1.1);
}

.button:hover {
    transform: scale(1.1);
}

.footer {
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 70px;
}





@media (max-width: 600px) {
    .image-header {
        width: 70%;
    }

    .title-header {
        margin: 0 40px 0 40px;
        font-size: 25px;
    }

    .subtitle {
        margin-left: 0%;
        margin-right: 0%;
    }

    .text-header {
        font-size: 15px;
        margin: 0 30px 0 30px;
    }

    .part-1 h2 {
        font-size: 25px;
        margin: 40px 40px 0 40px;
    }

    .part-1 p {
        text-align: center;
        font-size: 15px;
        margin: 20px 40px;
    }

    .container-flex {
        padding: 5px;
    }

    .text ul {
        text-align: left;
        padding-left: 20px;
        font-size: 15px;

    }
    .text h2 {
        font-size: 25px;
        padding-left: 20px;
    }

    .container-vantagens {
        flex: 1 1 45%;
        /* tenta ocupar 45% do espaço disponível */
        min-width: 250px;
        /* não fica menor que 250px */
        padding: 20px;
        text-align: center;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        /* permite quebrar linha */
        gap: 10px;
        width: 100%;
        /* ocupa toda largura disponível */
        box-sizing: border-box;
        height: auto;
        /* altura automática para ajustar conteúdo */
    }

    .box {
        flex: 1 1 calc(50% - 10px);
        /* metade da largura do container menos gap */
        min-width: 140px;
        /* nunca fica menor que 140px */
        padding: 20px;
        text-align: center;
        background-color: #151546;
        border-radius: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
        color: #000;
        box-sizing: border-box;
    }


    .button {
        font-size: 20px;
        padding: 10px 20px;
    }

    .button img {
        width: 50px;
        height: 50px;
    }








    .footer {
        margin-top: 70px;
        font-size: 12px;
        padding: 5px 0;
    }

}
