/**
 * @fileoverview Venezuela Productos Template Styles
 * 
 * This file contains CSS styles specific to the ve/productos.php template.
 * It includes template-specific styles that are not shared across other templates.
 * 
 * Used by: ve/productos.php
 * 
 * Key Features:
 * - Product header and image styles
 * - Timeline product layout
 * - Video background styles
 * - Template-specific responsive breakpoints
 */

/* Product Header Styles */
.scaem-docsingle-header {
    margin-top: 0;
    margin-bottom: 50px;
    box-shadow: 0 0 20px 0 rgba(165, 165, 165, 0.5);
}

.scaem-docsingle-header:before {
    background: transparent;
}

/* Separator Styles */
.separador {
    display: block;
    width: 100%;
    height: 2px;
    background-size: 15px 40%;
    background-image: linear-gradient(to right, transparent 50%, #ddd 50%);
}

/* Product Type Title Styles */
.scaem-sectiontitle.titulo-tipo-producto h2 {
    padding-top: 30px;
    font-size: 30px;
}

.scaem-sectiontitle.titulo-tipo-producto i {
    color: #fff;
    font-size: 20px;
    vertical-align: middle;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100px;
    background-color: var(--secthemecolor);
    text-align: center;
}

.scaem-title.subtitulo-tipo-producto h3 span {
    font-size: 20px;
}

/* Timeline Product Styles */
.main-timeline-productos {
    position: relative;
    padding-top: 50px;
}

.main-timeline-productos:before {
    top: 0;
    content: "";
    left: 50%;
    width: 3px;
    height: 100%;
    position: absolute;
    background: url(../../images/howitswork/img-01.png);
}

.main-timeline-productos .col-sm-12:last-child .scaem-docsingle-header {
    margin-bottom: 0px;
}

.scaem-workingtimeline .main-timeline .timeline:last-child {
    padding: 0 0 50px;
}

.scaem-workingtimeline .main-timeline .timeline-content + .timeline-content .scaem-contentwithimg span {
    color: #b9b7b7;
    font-size: 60px;
}

/* Price Note Styles */
.nota-precio {
    border-radius: 0.17rem;
    padding: 0.22rem 0.42rem;
    background-color: var(--secthemecolor);
    color: #fff;
    font-weight: 500;
    margin-left: 15px;
}

.nota-precio ~ .nota-precio {
    margin-left: 7px;
}

/* Gold Animation Styles */
.gold {
    background: linear-gradient(45deg, rgba(186, 148, 62, 1) 0%, rgba(236, 172, 32, 1) 20%, rgba(186, 148, 62, 1) 39%, rgba(249, 244, 180, 1) 50%, rgba(186, 148, 62, 1) 60%, rgba(236, 172, 32, 1) 80%, rgba(186, 148, 62, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s infinite;
    background-size: 200%;
    background-position: left;
}

@keyframes shine {
    50% {
        background-position: right;
    }

    100% {
        background-position: left;
    }
}

/* Video Background Styles */
#scaem-compra {
    position: relative;
}

#scaem-compra .scaem-haslayout {
    background-color: var(--fourthemecolor);
}

#video-compra {
    background-color: var(--fourthemecolor);
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video-compra video {
    min-width: 100%;
    min-height: 100%;
    opacity: .15;
}

/* Background Light */
.bglight {
    background-image: url(assets/images/bglight.jpg);
}

/* Content Description Styles */
.scaem-docsingle-content .scaem-description {
    margin-bottom: 20px;
}

.scaem-docsingle-content .scaem-description p {
    display: initial !important;
}

/* Responsive Styles */
@media (max-width: 420px) {
    .scaem-docsingle-content .scaem-title h2 {
        text-align: center;
    }

    .scaem-docsingle-content .scaem-title h2 a {
        width: auto !important;
        white-space: initial !important;
        display: inline;
        text-align: left;
    }

    .scaem-docsingle-content .scaem-title {
        padding-right: 0 !important;
    }
}

@media (max-width: 500px) {
    .scaem-docsingleimg {
        margin-right: 0;
        width: 100%;
    }

    #video-compra video {
        min-width: auto;
        height: 100% !important;
        opacity: .15;
    }

    .nota-precio {
        margin-left: 0;
        width: auto;
        white-space: nowrap;
    }
}