/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 12 2026 | 05:09:33 */
/*----------------------------------------------------------*/
/*Banner													*/
/*----------------------------------------------------------*/

.cbo-banner-slide {
	display: flex !important;
	align-items: center;
	min-height: 480px;
	overflow: hidden;
}
.cbo-banner-col-content {
	flex: 1 1 50%;
	padding: 40px 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cbo-banner-col-image {
	flex: 1 1 50%;
	height: 600px;
	position: relative;
	overflow: hidden;
}
.cbo-banner-col-image img {
	width: 100%;
	height: 600px;
	object-fit: contain;
	display: block;
}
.cbo-banner-tag {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	color: #044a80;
	margin-bottom: 12px;
}

.banner-icon svg{
    width:1em;
    height:1em;
    fill:#044a80
}

.cbo-banner-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px 0;
	color: #111;
}
.cbo-banner-description {
	font-size: 16px;
	color: #444;
	margin: 0 0 24px 0;
}
.cbo-banner-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.cbo-banner-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	transition: opacity .2s ease;
}

.cbo-banner-btn.cbo-btn-primary {
	background-color: #044A80;
	color: #fff;
	transition:.3s all ease
}
.cbo-banner-btn.cbo-btn-secondary {
	background-color: #13A9C6;
	color: #fff;
	transition:.3s all ease
}

.cbo-banner-btn.cbo-btn-primary:hover, .cbo-banner-btn.cbo-btn-secondary:hover{
	background-color: #0066B4;
	color: #fff;
}


.cbo-homepage-slider .swiper-pagination-bullet-active {
	background-color: #0073aa;
}
.cbo-homepage-slider .swiper-button-next,
.cbo-homepage-slider .swiper-button-prev {
	color: #0073aa;
}

@media (max-width: 768px) {
	.cbo-banner-slide { flex-direction: column; min-height: auto; }
	.cbo-banner-col-content { padding: 30px 6%; flex: 1 1 100%; }
	.cbo-banner-col-image { flex: 1 1 100%; height: 300px; }
	.cbo-banner-title { font-size: 32px; }
}


/* ------------------------------------------------------------ */
/*Animacion texto banner*/
/* ------------------------------------------------------------ */

.cbo-banner-title {
    display: block;
    overflow: hidden;
}

/* Palabra completa: no se rompe entre lÃ­neas */
.cbo-word {
    display: inline-block;
    white-space: nowrap;
}

/* Cada carÃ¡cter individual */
.cbo-char {
    display: inline-block;
    opacity: 0;
    transform: perspective(600px) rotateX(90deg);
    transform-origin: 50% 100%;
    will-change: transform, opacity;
}

.cbo-space {
    display: inline-block;
}

.cbo-char-animate {
    animation: cboCharFlipIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cboCharFlipIn {
    0% {
        opacity: 0;
        transform: perspective(600px) rotateX(90deg) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: perspective(600px) rotateX(0deg) translateY(0);
    }
}

@media (max-width: 768px) {
    .cbo-char {
        animation-duration: 0.4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cbo-char {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Estado inicial de la imagen */
.cbo-banner-col-image img {
    opacity: 0;
    transform: scale(1.15);
    will-change: transform, opacity;
}

/* Estado animado */
.cbo-banner-col-image img.cbo-img-animate {
    animation: cboImageZoomFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cboImageZoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cbo-banner-col-image img {
        opacity: 1;
        transform: none;
        animation: none;
    }
}