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

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

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

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

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

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

/* --- ENCABEZADO --- */
#encabezados-stylevision {
    background-color: #fcbc01;
    border-bottom: 6px solid #e6a800;
}

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

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

#marca-stylevision {
    background-color: #fcbc01 !important;
}

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

#encabezados-stylevision .contenido-producto p,
#encabezados-stylevision .contenido-producto strong {
    color: #ffffff !important;
    /* Solicitado por el usuario */
}

#encabezados-stylevision .caracteristicas-producto {
    background-color: #fcbc01 !important;
    line-height: 1.65;
    color: #ffffff !important;
    /* Solicitado por el usuario */
    border: 2.5px solid #fff;
}

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

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

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

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

/* Excepción para h2 en Jumbotron o específicos */
.page-stylevision .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(252, 188, 1, 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: #fcbc01;
    margin: 0 0 1rem 0;
    border-bottom: 3px solid #fcbc01;
    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-stylevision {
    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;
    }
}