/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 24 2026 | 21:13:47 */
.ui_header {
	position: fixed;
  	top: 0;
	left:0;
  	width: 100%;
	transform: translateY(0%);
	transition: transform 0.3s ease!important;
   z-index: 1000;
	height: 117px;
}

@media (max-width: 767px) {	
  .ui_header {
    height: 90px;
  }
}

/* Cuando se oculta */
.header-hidden {
  transform: translateY(-100%);
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-item {
    cursor: pointer;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;	
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: #53BCD6;
    border-radius: 50%;
    padding: 10px 15px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-image: url('https://ciudadesqueintegran.com/wp-content/uploads/2026/03/Page-1.svg')!important;
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
}



/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-modal iframe {
        height: 250px;
    }
}













.contenedor-cards {
    display: -webkit-flex;
	display: flex;
	align-items: center;
    gap: 20px;
}

.card {
	width: 33.33%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid;
	overflow: hidden;
}

.card > div {
	border-bottom: 1px solid red;
}
.card-1 > div {
	border-bottom: 1px solid #3072C9;
}
.card-2 > div {
	border-bottom: 1px solid #53BCD6;
}
.card-3 > div {
	border-bottom: 1px solid #FFA316;
}
.card > div:last-child {
	border-bottom: none;
}

.card h2 {    
    color:#fff;
	text-align: center;
	padding: 15px;
	font-family: var(--e-global-typography-281f9ef-font-family), Sans-serif;
    font-size: var(--e-global-typography-94682c4-font-size);
    line-height: var(--e-global-typography-94682c4-line-height);
} 

/* CARD 1 */
.card-1 {
	border-color:#3072C9;
}

.card-1 h2 {
	background-color: #3072C9;
}

.card-1 .btn, .card-1 .btn:hover {
	background-color: #3072C9;
	color: #fff;
}

/* CARD 2 */
.card-2 {
	border-color:#53BCD6;
}

.card-2 h2 {
	background-color: #53BCD6;
}

.card-2 .btn, .card-2 .btn:hover {
	background-color: #53BCD6;
	color: #fff;
}

/* CARD 3 */
.card-3 {
	border-color:#FFA316;
}

.card-3 h2 {
	background-color: #FFA316;
}

.card-3 .btn, .card-3 .btn:hover {
	background-color: #FFA316;
	color: #fff;
}

.categoria-padre {
	padding: 15px;
	gap: 15px;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.categoria-padre.con-hijos {
	display: block;
}

.categoria-padre.con-hijos h3 {
	margin-bottom: 10px;
}

.categoria-padre h3 {
    font-size: 16px;
	font-family: var(--e-global-typography-281f9ef-font-family), Sans-serif;
    font-size: var(--e-global-typography-281f9ef-font-size);
    line-height: var(--e-global-typography-281f9ef-line-height);
}

.categoria-padre ul {
    list-style: none;
    padding-left: 0;
}

.categoria-padre li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
	padding-left: 10px;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	font-family: var(--e-global-typography-3d19575-font-family), Sans-serif;
    font-size: var(--e-global-typography-3d19575-font-size);
    line-height: var(--e-global-typography-3d19575-line-height);
}

.btn {
    background: #0b5ed7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--e-global-typography-3d19575-font-family), Sans-serif;
    font-size: var(--e-global-typography-3d19575-font-size);
    line-height: var(--e-global-typography-3d19575-line-height);
}

.btn:hover {
    background: #084298;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .contenedor-cards {
		flex-direction: column;
	}

	.card {
		width: 100%;		
	}
}

