/* --- Estilos para la Descripción de Producto Huella 3D --- */

/* Contenedor principal para la descripción */
.descripcion-producto-h3d {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* --- NUEVO: Estilo para el banner de introducción --- */
.intro-banner {
    background-color: #f0f8ff; /* Un azul muy claro y suave */
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    margin: 20px 0 40px 0; /* Espacio arriba y abajo */
}

.intro-banner h2 {
    font-size: 26px;
    color: #005bb5; /* Azul oscuro */
    margin-top: 0;
    margin-bottom: 10px;
}

.intro-banner p {
    font-size: 17px;
    color: #333;
    max-width: 700px;
    margin: 0 auto; /* Centra el párrafo si es más corto que el contenedor */
}
/* --- FIN DEL CÓDIGO NUEVO --- */


/* Títulos de sección generales */
.descripcion-producto-h3d h2.section-title {
    text-align: center;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Estilo para la lista "Cómo Funciona" */
.descripcion-producto-h3d .como-funciona-lista {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.descripcion-producto-h3d .como-funciona-lista li {
    counter-increment: steps-counter;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
    font-size: 16px;
}

.descripcion-producto-h3d .como-funciona-lista li::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    background-color: #0073e6;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Contenedor de las tarjetas de características */
.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Estilo de cada tarjeta */
.feature-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-card .card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    color: #005bb5;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
    font-size: 15px;
}

.feature-card ul li {
    margin-bottom: 8px;
}

/* Sección de Seguridad y Recomendaciones */
.safety-section {
    margin-top: 50px;
    padding: 25px;
    background-color: #fffaf0; /* Color crema/amarillo claro */
    border-left: 5px solid #ffab00; /* Borde ámbar */
    border-radius: 5px;
}

.safety-section h3 {
    margin-top: 0;
}

/* Llamada a la Acción Final */
.final-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px 25px;
    background-color: #0073e6;
    color: white;
    border-radius: 10px;
}

.final-cta h2 {
    color: white;
    margin: 0;
    font-size: 26px;
}
.final-cta p {
    margin-top: 5px;
    font-size: 16px;
    opacity: 0.9;
}

/* --- Media Query para diseño adaptable a móviles --- */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
    .intro-banner h2 {
        font-size: 22px; /* Ajusta el tamaño del título en móvil */
    }
    .intro-banner p {
        font-size: 16px; /* Ajusta el tamaño del texto en móvil */
    }
}