.legal-modern {
    background: #ffffff;
    color: #000;
}

/* HERO */
.legal-modern__hero {
    padding: 70px 20px 30px;
    text-align: center;
}

.legal-modern__hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.legal-modern__hero p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* CONTENT */
.legal-modern__content {
    padding: 20px 20px 60px;
}

.legal-modern__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* CARDS */
.legal-card {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.legal-card__number {
    font-size: 11px;
    font-weight: 900;
    color: #fecf0c;
    margin-bottom: 6px;
}

.legal-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXTO */
.legal-text p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-text ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.legal-text li {
    margin-bottom: 6px;
    font-size: 14.5px;
    color: #444;
}

/* CONTACTO */
.legal-contact-block {
    margin-top: 10px;
}

.legal-contact-block div {
    margin-bottom: 6px;
}

.legal-contact-block strong {
    display: block;
}

/* ANIMACIONES */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .legal-modern__hero h1 {
        font-size: 26px;
    }
}