/* ================================================
   ESTILOS PARA PÁGINAS LEGALES
   ================================================ */

.legal-page {
    background: #fff;
    padding: 80px 20px 60px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #8b6f7e;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 2px;
}

.legal-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #8b6f7e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.legal-page h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #a17c7c;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-page p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-page ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-page ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.legal-page ul li::before {
    content: "•";
    color: #a17c7c;
    font-size: 20px;
    position: absolute;
    left: 10px;
    top: -2px;
}

.legal-page ul li strong {
    color: #8b6f7e;
}

.legal-page a {
    color: #8b6f7e;
    text-decoration: none;
    border-bottom: 1px solid #a17c7c;
    transition: all 0.3s ease;
}

.legal-page a:hover {
    color: #a17c7c;
    border-bottom-color: #8b6f7e;
}

.legal-update {
    text-align: center;
    font-style: italic;
    color: #999;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 15px 40px;
    }
    
    .legal-page h1 {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
    }
    
    .legal-page h3 {
        font-size: 20px;
    }
    
    .legal-page p,
    .legal-page ul li {
        font-size: 14px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .legal-page h1 {
        font-size: 28px;
    }
    
    .legal-page h2 {
        font-size: 22px;
    }
}
