/* Estilos específicos para la página de styleSPACE */

.hr-stylespace {
    background: transparent;
    border: none;
    border-top: 6px solid #c62828;
    height: 0;
    margin: 6rem 0;
    width: 100%
}

@keyframes electricidad-stylespace {
    0% {
        filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 6px #b71c1c) brightness(1.2);
    }

    50% {
        filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #b71c1c) brightness(1.6);
    }

    100% {
        filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 6px #b71c1c) brightness(1.2);
    }
}

.texto-electricidad-stylespace {
    animation: electricidad-stylespace .8s linear infinite;
    color: #ffffff !important;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 0 8px #b71c1c, 0 0 2px #fff;
    will-change: filter
}

/* --- ENCABEZADO --- */
#encabezados-stylespace {
    background-color: #c62828;
    border-bottom: 6px solid #b71c1c;
}

#encabezados-stylespace .contenido.encabezado-flex-responsive {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100vw;
}

#encabezados-stylespace .producto-header-flex {
    padding-left: 5%;
    padding-right: 5%;
}

#marca-stylespace {
    background-color: #c62828 !important;
}

#encabezados-stylespace h1 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

#encabezados-stylespace .contenido-producto p,
#encabezados-stylespace .contenido-producto strong {
    color: #ffffff !important;
}

#encabezados-stylespace .caracteristicas-producto {
    background-color: #c62828 !important;
    line-height: 1.65;
    color: #ffffff !important;
    border: 2.5px solid #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

#encabezados-stylespace .caracteristicas-producto strong,
#encabezados-stylespace .caracteristicas-producto b {
    color: #ffffff;
}

#encabezados-stylespace .caracteristicas-producto p {
    color: #f9fafb !important;
}

#encabezados-stylespace .bi,
#encabezados-stylespace svg {
    color: #fff !important;
    fill: #fff !important;
    margin-right: 6px;
    vertical-align: -0.125em;
    display: inline-block;
}

/* --- SECCIONES Y CONTENIDO --- */
.page-stylespace section h2,
.page-stylespace .jumbotron h2,
.page-stylespace .container-fluid h2 {
    font-size: 1.75rem;
    color: #c62828;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Excepción para h2 en Jumbotron o específicos */
.page-stylespace .jumbotron h2 {
    text-align: left;
}

/* --- TARJETAS DE DETALLES --- */
.tarjeta-detalles-sin-borde {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    border: none;
    padding: 1.5rem;
}

.tarjeta-detalles-sin-borde:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.2);
}

.tarjeta-detalles-sin-borde .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tarjeta-detalles-sin-borde h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c62828;
    margin: 0 0 1rem 0;
    border-bottom: 3px solid #c62828;
    padding-bottom: 0.5rem;
}

.tarjeta-detalles-sin-borde p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.tarjeta-detalles-sin-borde figure {
    margin: 0 0 1rem 0;
    overflow: hidden;
    border-radius: 8px;
}

.tarjeta-detalles-sin-borde figure img {
    width: 100%;
    height: auto;
    display: block;
}

.tarjetas-detalles-contenedor {
    margin-bottom: 6rem !important;
    padding-bottom: 3rem !important;
}

.gap-tarjetas-stylespace {
    gap: 2rem;
}

/* --- ZONA DE DESCARGA --- */
.descarga-container {
    display: flex;
    gap: 1rem;
}

.descarga-container>div {
    flex: 1;
}

.btn-descarga {
    width: 100%;
    height: 100%;
}

.btn-descarga svg {
    margin-right: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tarjeta-detalles-sin-borde {
        padding: 1.25rem;
    }

    .tarjetas-detalles-contenedor {
        margin-bottom: 4rem !important;
        padding-bottom: 2rem !important;
    }
}