/* ===== CSS PARA PÁGINA DE POLÍTICA DE MENORES ===== */
/* Extra Rápido Los Motilones - Transporte de menores */

:root {
    --rojo-corporativo: #e31e24;
    --rojo-oscuro: #b71c1c;
    --gris-oscuro: #111;
    --gris-medio: #333;
    --gris-claro: #f8f9fa;
    --texto-oscuro: #222;
    --texto-claro: #666;
    --sombra-suave: 0 15px 35px rgba(0,0,0,0.08);
    --sombra-intensa: 0 20px 40px rgba(227,30,36,0.15);
}

/* ===== HERO ===== */
.hero-menores {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(227,30,36,0.75)), url('../img/slidenu.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-menores h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-menores p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SECCIÓN PRINCIPAL ===== */
.menores-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.menores-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== TARJETA PRINCIPAL ===== */
.menores-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--sombra-intensa);
    border: 1px solid rgba(227,30,36,0.1);
    position: relative;
    overflow: hidden;
}

.menores-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #e31e24, #ff6b6b, #e31e24);
}

/* ===== ENCABEZADO ===== */
.menores-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 3px solid #e31e24;
    flex-wrap: wrap;
}

.menores-icono {
    width: 90px;
    height: 90px;
    background: #e31e24;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 45px;
    box-shadow: 0 15px 30px rgba(227,30,36,0.3);
    transform: rotate(3deg);
    transition: all 0.3s;
}

.menores-icono:hover {
    transform: rotate(0deg) scale(1.05);
}

.menores-titulo h2 {
    margin: 0 0 5px;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.menores-titulo p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.menores-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge-menores {
    background: #f0f0f0;
    color: #333;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-menores i {
    color: #e31e24;
}

.badge-menores.importante {
    background: #e31e24;
    color: white;
}

.badge-menores.importante i {
    color: white;
}

/* ===== LISTA DE POLÍTICAS ===== */
.politicas-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.politica-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
    border-left: 5px solid transparent;
}

.politica-item:hover {
    background: white;
    border-left: 5px solid #e31e24;
    box-shadow: var(--sombra-suave);
    transform: translateX(5px);
}

.politica-icono {
    width: 50px;
    height: 50px;
    background: rgba(227,30,36,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31e24;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.politica-item:hover .politica-icono {
    background: #e31e24;
    color: white;
}

.politica-contenido {
    flex: 1;
}

.politica-contenido p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.politica-contenido strong {
    color: #e31e24;
    font-weight: 600;
}

/* ===== TARJETA DE CONTACTO ===== */
.contacto-menores {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0 20px;
    border: 2px dashed #e31e24;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contacto-menores-icono {
    width: 80px;
    height: 80px;
    background: #e31e24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.contacto-menores-info {
    flex: 1;
}

.contacto-menores-info h4 {
    color: #e31e24;
    margin: 0 0 10px;
    font-size: 20px;
}

.contacto-menores-info p {
    margin: 5px 0;
    color: #555;
}

.contacto-menores-info i {
    color: #e31e24;
    width: 25px;
}

/* ===== LÍNEA DE EMERGENCIA ===== */
.emergencia-box {
    background: #fff3cd;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergencia-icono {
    width: 70px;
    height: 70px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #856404;
    font-size: 32px;
}

.emergencia-contenido h4 {
    color: #856404;
    margin: 0 0 5px;
    font-size: 20px;
}

.emergencia-contenido p {
    margin: 0;
    color: #856404;
    font-size: 18px;
    font-weight: 700;
}

.emergencia-contenido small {
    color: #856404;
    opacity: 0.8;
}

/* ===== BOTONES ===== */
.menores-acciones {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.btn-menores {
    padding: 15px 35px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-pdf {
    background: #e31e24;
    color: white;
    box-shadow: 0 8px 20px rgba(227,30,36,0.3);
}

.btn-volver {
    background: #6c757d;
    color: white;
    box-shadow: 0 8px 20px rgba(108,117,125,0.3);
}

.btn-menores:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-menores h1 {
        font-size: 38px;
    }
    
    .menores-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .hero-menores {
        padding: 60px 0;
    }
    
    .hero-menores h1 {
        font-size: 32px;
    }
    
    .menores-section {
        padding: 60px 0;
    }
    
    .menores-card {
        padding: 25px;
    }
    
    .menores-header {
        flex-direction: column;
        text-align: center;
    }
    
    .menores-icono {
        margin: 0 auto;
    }
    
    .menores-badges {
        justify-content: center;
    }
    
    .politica-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contacto-menores {
        flex-direction: column;
        text-align: center;
    }
    
    .emergencia-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-menores h1 {
        font-size: 28px;
    }
    
    .hero-menores p {
        font-size: 16px;
    }
    
    .menores-titulo h2 {
        font-size: 24px;
    }
    
    .menores-acciones {
        flex-direction: column;
    }
    
    .btn-menores {
        width: 100%;
        justify-content: center;
    }
}