.legal-modern {
    background: #ffffff;
}

/* HERO */
.legal-modern__hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.legal-logo {
    width: 60px;
    margin-bottom: 10px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 900;
    color: #fecf0c;
    letter-spacing: .1em;
}

.legal-modern__hero h1 {
    font-size: 34px;
    font-weight: 900;
    margin: 10px 0;
}

.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: 16px;
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid #eee;
    transition: .3s;
}

.legal-card:hover {
    transform: translateY(-3px);
    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: 8px;
}

.legal-card p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

/* ANIMACIONES */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

.legal-contact-block {
    margin-top: 12px;
}

.legal-contact-block div {
    margin-bottom: 6px;
    font-size: 14.5px;
}

.legal-contact-block strong {
    display: block;
    color: #000;
    margin-bottom: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
    .legal-modern__hero h1 {
        font-size: 26px;
    }
}