/* ===== CSS PARA PÁGINA DE OBJETOS PROHIBIDOS ===== */
/* Extra Rápido Los Motilones - Estilos exclusivos para objetos.html */

: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-objetos {
    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-objetos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 70%);
}

.hero-objetos h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.hero-objetos p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN PRINCIPAL ===== */
.objetos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.objetos-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== TARJETA DE INTRODUCCIÓN ===== */
.intro-card {
    background: white;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: var(--sombra-intensa);
    border: 1px solid rgba(227,30,36,0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e31e24, #ff6b6b, #e31e24);
}

.intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--texto-oscuro);
    margin: 0;
}

.intro-card i {
    color: var(--rojo-corporativo);
    margin-right: 8px;
}

/* ===== LISTA DE OBJETOS PROHIBIDOS ===== */
.objetos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.objeto-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--sombra-suave);
    border: 1px solid #eee;
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.objeto-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-intensa);
    border-color: rgba(227,30,36,0.2);
}

.objeto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #e31e24;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.objeto-item:hover::before {
    transform: scaleY(1);
}

.objeto-icon {
    width: 60px;
    height: 60px;
    background: rgba(227,30,36,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31e24;
    font-size: 28px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.objeto-item:hover .objeto-icon {
    background: #e31e24;
    color: white;
    transform: rotate(5deg);
}

.objeto-content {
    flex: 1;
}

.objeto-numero {
    display: inline-block;
    background: #e31e24;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.objeto-content p {
    margin: 0;
    color: var(--texto-oscuro);
    line-height: 1.7;
    font-size: 15px;
}

.objeto-content strong {
    color: #e31e24;
}

/* ===== SECCIÓN DE ADVERTENCIA ===== */
.advertencia-card {
    background: linear-gradient(135deg, #fff3cd, #fff9e6);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--sombra-intensa);
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.advertencia-icono {
    width: 100px;
    height: 100px;
    background: #e31e24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    box-shadow: 0 10px 25px rgba(227,30,36,0.3);
}

.advertencia-contenido {
    flex: 1;
}

.advertencia-contenido h3 {
    color: #856404;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.advertencia-contenido p {
    color: #856404;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-objetos h1 {
        font-size: 38px;
    }
    
    .objetos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advertencia-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-objetos {
        padding: 60px 0;
    }
    
    .hero-objetos h1 {
        font-size: 32px;
    }
    
    .objetos-section {
        padding: 60px 0;
    }
    
    .intro-card {
        padding: 25px;
    }
    
    .objeto-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .objeto-item::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 576px) {
    .hero-objetos h1 {
        font-size: 28px;
    }
    
    .hero-objetos p {
        font-size: 16px;
    }
    
    .advertencia-icono {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}