/* =======================
   SECTION MODERNA
======================= */

.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 35px;
    
    background: #ffffff;
    border-radius: 16px;

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.04),
        0 2px 8px rgba(0,0,0,0.03);

    transition: all 0.3s ease;
}

/* HOVER SUAVE (efeito premium) */
.section:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.06),
        0 5px 15px rgba(0,0,0,0.05);
}


/* =======================
   VARIAÇÃO DE DESTAQUE
======================= */

.section.highlight {
    background: linear-gradient(
        135deg,
        #f8fff9,
        #ffffff
    );

    border-left: 5px solid #00c853;
}


/* =======================
   TIPOGRAFIA
======================= */

.section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111827;
}

.section p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 14px;
    line-height: 1.7;
}


/* =======================
   LISTAS
======================= */

.section ul {
    margin-top: 10px;
    padding-left: 20px;
}

.section li {
    margin-bottom: 10px;
    color: #374151;
    position: relative;
    padding-left: 8px;
}


/* =======================
   LINKS INTERNOS SEO
======================= */

.section a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,200,83,0.3);
    transition: 0.2s;
}

.section a:hover {
    border-bottom: 1px solid #ceffe2;
}


/* =======================
   ESPAÇAMENTO ENTRE SEÇÕES
======================= */

.section + .section {
    margin-top: 30px;
}


/* =======================
   CTA MELHORADA
======================= */

.cta {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 30px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #00c853,
        #00e676
    );

    color: white;
    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1rem;
    opacity: 0.95;
}


/* =======================
   RESPONSIVO
======================= */

@media (max-width: 768px) {

    .section {
        padding: 25px 20px;
        margin: 20px;
    }

    .section h1 {
        font-size: 1.6rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

}