/* --- PÁGINA CÓDIGO DE PROTECCIÓN AL CONSUMIDOR --- */
.proteccion-page-wrapper {
    background-color: #ffffff;
    font-family: sans-serif;
    color: #444444;
}

/* 1. HERO BANNER */
.proteccion-hero-section {
    position: relative;
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.proteccion-hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.proteccion-hero-title {
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 10px 24px;
    margin: 0;
    letter-spacing: 1px;
}

.proteccion-hero-notch {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #F69C00;
    z-index: 3;
}

/* 2. CUERPO DE CONTENIDO */
.proteccion-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px 70px 20px;
}

.proteccion-intro-text {
    font-size: 14px;
    color: #555555;
    margin-bottom: 25px;
}

.proteccion-title-sub {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #888888;
    text-transform: uppercase;
    margin: 25px 0 6px 0;
}

.proteccion-line-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 15px 0;
    width: 200px;
}

/* LISTAS CON VIÑETA CUADRADA NARANJA */
.proteccion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.proteccion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #F69C00;
    text-transform: uppercase;
}

.proteccion-orange-square {
    width: 10px;
    height: 10px;
    background-color: #F69C00;
    display: inline-block;
    flex-shrink: 0;
}

/* PARÁGRAFOS LEGALES Y ENLACES NARANJAS */
.proteccion-legal-body {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
}

.proteccion-legal-body a,
.proteccion-orange-link {
    color: #F69C00;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.proteccion-legal-body a:hover,
.proteccion-orange-link:hover {
    color: #d88300;
}

.proteccion-block-spacing {
    margin-top: 35px;
}

@media (max-width: 768px) {
    .proteccion-hero-content { left: 5%; right: 5%; }
    .proteccion-hero-title { font-size: 30px; }
}