body {

    background: url('../../images/lp-avanti/bkg-lp-sep.jpg');
    background-size: cover;

    /*margin: 0;*/
    font-family: 'Roboto', sans-serif;
    /*background: #f2f2f2;*/
}

img {
    max-width: 100%;
}

p {
    margin: 0 0 15px 0;
}

h2,
h3 {
    display: block;
    margin-bottom: 15px;
}

/* CONTAINER */
.container {
    background: #f2f2f2;
    color: #004426;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 20px;
}

/* HERO */
.hero {
    background: #0b6b3a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* GRID */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px;
    margin-top: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
}

/* IMAGENS */
.img-box {
    width: 100%;
    border-radius: 10px;
}

.img-box-plano {
    text-align: center;
    /*padding: 50px;*/
}

/* TITULOS */
.title {
    font-weight: bold;
    margin: 20px 0 10px;
    color: #004426;
    border-bottom: 2px solid #004426;
    padding-bottom: 5px;
}

/* LISTA */
.list {
    list-style: none;
    padding: 0;
}

.list li {
    padding: 5px 0;
    font-size: 14px;
}

/* BENEFICIOS */
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #e9eceb;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.benefit i {
    font-size: 20px;
    color: #004426;
    margin-top: 2px;
}

.benefit strong {
    color: #004426;
}

/* DIREITA */
.right-grid {
    /*display: grid;
    gap: 20px;*/
}

.cnt-redes-sociais,
.cnt-button-caa {
    text-align: center;
    padding: 20px 0;
}

.btn-redes-sociais {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;
    border-radius: 30px;

    background: linear-gradient(45deg, #004426, #006c3a, #009e52);
    color: #fff;

    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

    transition: all 0.3s ease;
}

/* Ícone */
.btn-redes-sociais i {
    font-size: 18px;
}

/* Hover */
.btn-redes-sociais:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #006c3a, #00b35f, #00d46e);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }
    .btn-redes-sociais {
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

}