/* ===== Reset Básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #212529; /* Tonalidade mais escura para melhorar a legibilidade */
    background: linear-gradient(135deg, #f9f9f9, #e8f5e9); /* Ajuste no fundo */
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
}



/* ===== Container Geral ===== */

.bemvindo {
    padding: 4em 2em;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 3rem;
}

.container2 {
    width: 90%;
    
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}


.bemvindo h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    color: #28a745;
    margin-bottom: 2rem;
    position: relative;
}

.bemvindo h1::after {    
    width: 80px;
    height: 4px;
    background: #28a745;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.bemvindo p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
}

.bemvindo p::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #28a745;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.bemvindo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.42, 0, 0.58, 1), box-shadow 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    overflow: hidden;
}


.container {
    width: 90%;
    height: ;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* ===== Seção de Benefícios ===== */
.benefits {
    padding: 4em 2em;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 3rem;    
}

.benefits h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    color: #28a745;
    margin-bottom: 2rem;
    position: relative;
}

.benefits h2::after {    
    width: 80px;
    height: 4px;
    background: #28a745;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefits li {
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    color: #555;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.42, 0, 0.58, 1), box-shadow 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    overflow: hidden;
}

.benefits li:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}



/* ===== Botões ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cadastro-usuario {
    background: linear-gradient(90deg, #28a745, #218838, #1e7e34);
    background-size: 200%;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: background-position 0.4s ease;
}

.btn-cadastro-usuario:hover {
    transform: translateY(-5px);
    background: linear-gradient(to right, #218838, #1e7e34);
}



/* ===== Responsividade ===== */
@media (min-width: 768px) {
    .benefits h2 {
        font-size: 2rem;
    }

    

    .btn-cadastro-usuario {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .benefits ul {
        grid-template-columns: repeat(3, 1fr);
    }

    
    .btn-cadastro-usuario {
        font-size: 1.5rem;
        padding: 1.2rem 3rem;
    }
}
