/* ============================
   TÉRMINOS Y CONDICIONES – Exclusivas.cl
   ============================ */

/* Fondo general y tipografía base */
body {
    background-color: #fafaf8; /* fondo crema sutil */
    color: #222;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.legal-container {
    max-width: 900px;
    margin: 80px auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 60px 50px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

/* Encabezado principal */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-title {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.legal-version {
    color: #777;
    font-size: 15px;
}

/* Estilo general de secciones */
.section {
    margin-top: 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.25);
    display: inline-block;
    padding-bottom: 6px;
}

/* Subtítulos internos */
.subsection-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #222;
}

/* Texto legal y párrafos */
.legal-text {
    margin-top: 8px;
    margin-bottom: 24px;
    text-align: justify;
    color: #222;
}

.legal-text.highlight {
    background-color: #fffbe9;
    padding: 6px 10px;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

/* Listas */
.legal-list {
    margin: 15px 0 30px 25px;
    color: #222;
}

.legal-list li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Caja de aviso destacado */
.disclaimer-box {
    background-color: #fffef9;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 60px;
}

.disclaimer-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.disclaimer-box ul {
    margin-top: 15px;
    padding-left: 25px;
}

.disclaimer-box li {
    margin-bottom: 10px;
}

/* Caja de contacto final */
.contact-box {
    background: #fdfcf8;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 20px;
}

/* Mayúsculas pequeñas */
.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adaptación responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
        margin: 40px 10px;
    }

    .legal-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* Ajustes de encabezado (para dar aire) */
header.header {
    margin-bottom: 20px;
}

.legal-title {
    margin-top: 30px;
    margin-bottom: 20px;
}

