/* --- ESTILOS PÁGINA SEGURIDAD --- */

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #444;
}

.servicio-detalle {
    margin-bottom: 100px;
}

.detalle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reverse .detalle-grid {
    direction: rtl; /* Invierte el orden visual de la rejilla */
}

.reverse .detalle-texto {
    direction: ltr; /* Devuelve el texto a su dirección normal */
}

.numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--naranja);
    opacity: 0.2;
    display: block;
    margin-bottom: -20px;
}

.detalle-texto h3 {
    font-size: 1.8rem;
    color: var(--oscuro);
    margin-bottom: 20px;
    position: relative;
}

.detalle-texto p {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.detalle-imagen img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.compromiso-seguridad {
    margin: 80px 0;
    text-align: center;
}

.caja-destacada {
    background: var(--gradiente-logo);
    color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.3);
}

.caja-destacada h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.caja-destacada p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .detalle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .reverse .detalle-grid {
        direction: ltr;
    }
    .detalle-imagen img {
        height: 250px;
    }
}