/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 08 2025 | 15:36:21 */
/* Contenedor principal */
li{
	list-style-type: none;
}
.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bx-wrapper{
	border-radius: 50px;
}

.bx-wrapper img{
	margin-right: 100px;
}
.bx-wrapper .blue-rectangle{
	display: none;
}
.bx-wrapper .bx-loading {
    display: none !important;
    background: none !important;
}
/* Lista de títulos de productos padres */
.parent-title-list {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 15px 0;
    margin: 0;
    list-style: none;
    width: 100%;
    scroll-snap-type: x mandatory;
}
/* Agrega una flecha o bullet a cada opción del menú dropdown */
.dropdown-item {
    position: relative;
    padding-left: 20px; /* Espacio para la flecha */
}

.dropdown-item::before {
    content: "\25B6"; /* Unicode para una flecha hacia la derecha ▶ */
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #FFC700; /* Color amarillo */
}
.parent-title-item {
    flex: 0 0 calc(20% - 25px); 
    min-width: 240px;
    cursor: pointer;
    padding: 12px 20px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    font-size: 22px; 
    font-weight: 500;
    color: white;
    scroll-snap-align: center; 
    transition: all 0.3s ease;
    line-height: 1.2;
	font-weight: bold;
}
.parent-title-item.active {
    color: #FFC700;
}
.parent-title-item.active .dropdown-menu,
.parent-title-item.active .dropdown-menu * {
    color: #F7DA01;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 20px;
}

/* Al pasar el mouse, el item hijo se pinta de amarillo */
.parent-title-item.active .dropdown-menu .dropdown-item:hover {
    color: #FFC700;
}
.dropdown-item {
    transition: color 0.3s;
}
.dropdown-item:hover {
    cursor: pointer;
}
.dropdown-menu.height-slider{
	height: 50px;
}
.paragraph-slider{
	color: #081C40; 
}
.text-content{
 	padding: 10px 50px 10px 30px;
	color:#081C40;
}
.text-content p{
 	padding-bottom: 0.1rem;
	line-height: inherit;
}
.text-content h1{
	color: #081C40;
	line-height: 2.7rem;
	font-size: 40px;
}
.text-content img{
	margin-right: 10px;
}
.text-content .content-image-responsive {
	display: none;
    }
.content-image{
	position: relative;
	z-index: 1;
}
.text-content .content-image-mobile {
	display: none;
}
/* Carrusel de imágenes */
.image-slider {
    margin: 0;
    padding: 0;
    position: relative;
}

.image-slider li {
    margin: 0 15px;
    padding: 20px;
    background: none;
    flex-direction: row-reverse;
    align-items: center;
}

.custom-arrow {
    width: 0;
    height: 0;
	color: #1A1F3B;
    border-style: solid;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.prev-arrow {
    border-width: 15px 20px 15px 0;
    border-color: transparent #1A1F3B transparent transparent;
    left: 10px;
	z-index: 1;
	margin-left: -30px;
}

.next-arrow {
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #1A1F3B;
    right: 10px;
	margin-right: -30px;
}
.slider-grid:empty {
    display: none !important;
}

.parent-title-item:not([data-id]) {
    opacity: 0.5;
    pointer-events: none;
}
 .loader-container {
        position: relative;
        min-height: 300px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #FFC700;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .loader-text {
        position: absolute;
        bottom: 30%;
        color: #081C40;
        font-weight: bold;
        font-size: 1.2em;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
.text-content #wp-information{
	width: 20%;
}

.text-content #wp-information2{
	width: 90%;
}

.text-content .wp-imagesinfo p{
	display: flex;
	flex-direction: row;
	width: 45%;
}
.text-content .wp-imagesinfo2 p{
	display: flex;
	flex-direction: row;
	width: 60%;
}

@media (max-width: 768px) {
    
    /* Slider principal */
    .bx-wrapper {
        width: 100%;
        height: auto !important;
        min-height: 0;
        overflow-x: auto !important; 
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0px 0px 20px 0px;
    }
    
    .bx-wrapper .blue-rectangle {
        display: none;
    }
        .image-slider {
        display: flex;
        align-items: flex-start; /* Clave: los slides crecen según su contenido */
        min-height: 0; /* Evita restricciones en altura */
        width: max-content !important;
        padding: 0 5%;
    }
    .image-slider li {
		width: 90vw !important
		min-width: 90vw;
        height: auto;
        margin: 0 !important;
        padding: 15px;
        transform: none;
        display: inline-block;
        overflow: visible;
		vertical-align: top;
        min-height: 100px !important;
    }

    .slider-container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0;
        overflow: visible;
    }

    .slider-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
		padding: 0 2%;
		height: auto; !important
        min-height: auto !important;
		
    }
    
    .text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 90%;
        padding: 10px;
        box-sizing: border-box;
        height: auto !important;
        overflow-y: visible;
		max-height: none !important;
    }
    
    .text-content h1 {
        order: 0;
        font-size: 1.2rem;
		line-height: normal;
        width: 100%;
        text-align: center !important;
        margin-left: 0 !important;
        padding: 0 15px !important;
    }

    .text-content p {
        order: 2;
        width: 100%;
		height: auto;
        text-align: center !important;
		line-height: normal;
		font-size: 0.8rem;
    }
   
	.text-content div{
		order: 3;
		width: 180%;
		display: flex;
		flex-direction: row;
	}
	
    /* Imágenes */
    .image-content {
		display: none;
    }
    
    .text-content .content-image-mobile {
        display: none;
    }

    .text-content .content-image-responsive {
        display: block;
        max-width: 40%;
        height: auto;
        object-fit: contain;
		margin: 0 auto 15px !important;
    }
    
    /* Ajustes específicos para imágenes de WordPress */
	.text-content #wp-information{
	    float: none !important;
        margin: 0 auto 15px !important;
        display: block;
        max-width: 80% !important;
        height: auto !important;
		width: 40%
	}
    /* Elementos generales */
    .text-content > * {
        text-align: center !important;
        justify-content: center !important;
    }
	
	.custom-arrow{
		display: none;
	}
    
}
/* Contenedor principal */
.parent-title-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Más padding para las flechas */
    box-sizing: border-box;
    display: flex;
    align-items: center; /* Centrado vertical */
    min-height: 80px; /* Altura mínima para contener flechas */
}

/* Flechas más pequeñas */
.scroll-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.scroll-arrow:hover {
    opacity: 1;
}

.left-arrow {
    border-width: 12px 16px 12px 0; /* Tamaño reducido */
    border-color: transparent #F7DA01 transparent transparent;
    left: 15px;
    margin-left: -20px; /* Ajuste posición */
}

.right-arrow {
    border-width: 12px 0 12px 16px; /* Tamaño reducido */
    border-color: transparent transparent transparent #F7DA01;
    right: 15px;
    margin-right: -20px;
}

.scroll-arrow.disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.titles-slider-wrapper{
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
    /* Contenedor principal móvil */
    .parent-title-wrapper {
        padding: 0 15px !important;
        overflow: visible;
        width: 100vw;
        margin-left: -15px;
    }

    .parent-title-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 10px 0;
        margin: 0;
        scroll-padding: 15px;
    }

    .parent-title-item {
        scroll-snap-align: center;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        padding: 15px 20px;
        font-size: 26px;
        text-align: center;
        white-space: normal;
        box-sizing: border-box;
        position: relative;
		font-weight: bold;
    }

    .parent-title-item.active .dropdown-menu {
        position: fixed;
        bottom: 0;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 20px;
        z-index: 1000;
    }

    .scroll-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 5px;
    }
	
	.scroll-arrow.disabled {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
    /* Ajuste de scroll snap */
    .parent-title-list::-webkit-scrollbar {
        display: none;
    }

    .parent-title-item:first-child {
        scroll-snap-align: start;
        margin-left: 15px;
    }

    .parent-title-item:last-child {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {

    .parent-title-wrapper {
        overflow: visible !important;
        padding: 0 10px !important;
    }

    .parent-title-item {
        position: static !important;
        min-height: 60px;
        display: flex !important;
        align-items: center;
		flex-direction: column;
        justify-content: center;
        padding: 15px 20px !important;
        margin: 0 5px !important;
    }

    .dropdown-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        margin-top: -10px !important;
        padding: 20px 15px !important;
		text-align: left;
    }

    .dropdown-item {
        color: #FFC700 !important;
        padding: 12px 10px !important;
		text-align: left;
    }

    .dropdown-item::before {
        left: -5px;
    }
    .parent-title-item.active {
        z-index: 2 !important;
    }
	.parent-title-item.active .dropdown-menu *{
		font-size: 1rem;
	}
}