/* ========================================
   CSS para Páginas Legales - Ginger Gold
   ======================================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* Títulos principales */
.legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 35px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primer título sin margen superior */
.legal-content h2:first-child {
    margin-top: 0;
}

/* Subtítulos */
.legal-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Párrafos */
.legal-content p {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Listas ordenadas (numeradas) */
.legal-content ol {
    margin: 20px 0;
    padding-left: 25px;
    text-align: justify;
}

.legal-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Listas desordenadas (bullets) */
.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
    text-align: justify;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    list-style-type: disc;
}

/* Enlaces */
.legal-content a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Tablas (si las hay) */
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-content table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.legal-content table td:first-child {
    font-weight: 600;
    width: 30%;
    background-color: #f9f9f9;
}

/* Negritas */
.legal-content strong {
    font-weight: 700;
    color: #000;
}

/* Separadores visuales entre secciones */
.legal-content h2 + p {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .legal-content h2 {
        font-size: 16px;
    }
    
    .legal-content h3 {
        font-size: 15px;
    }
}
