.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 60px;
    color: #fff;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-title {
    opacity: 0.2;
}
/* Lista con iconos y borde lateral */
.list-icons {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list-icons li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.list-icons li i {
    position: absolute;
    padding-left: 30px;
    left: 0;
    top: 3px;
    color: #5e5e5e; /* azul Bootstrap / primary */
    font-size: 16px;
}

/* Borde lateral opcional */
.list-side-borders {
    border-left: 3px solid #aeaeae;
    padding-left: 15px;
}

/* Opcional: color primario */
.list-primary li i {
    color: #5e5e5e;
}
ul.list-icons {
    list-style: none; /* esto quita los puntos */
    padding-left: 0;  /* opcional, para que no quede indentado */
}
.map-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff; /* marco blanco opcional */
    transition: transform 0.3s ease;
    max-width: 400px;
}

.map-image-container:hover {
    transform: scale(1.02); /* pequeño efecto zoom en hover */
}
.img-fluid {
  transition: transform 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
}
/* Testimonials */
.testimonial {
	margin-bottom: 20px;
}
/* Style 4 */
.testimonial.testimonial-style-4 {
	border-radius: 6px;
	padding: 8px;
	border-top: 1px solid #DFDFDF;
	border-bottom: 1px solid #DFDFDF;
	border-left: 1px solid #ECECEC;
	border-right: 1px solid #ECECEC;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
}

.testimonial.testimonial-style-4 blockquote {
	background: transparent !important;
	border-radius: 4px;
	padding: 12px 30px;
}

.testimonial.testimonial-style-4 blockquote:before {
	top: 5px;
	left: 9px;
	color: #777;
	font-size: 35px;
}

.testimonial.testimonial-style-4 blockquote:after {
	color: #777;
	font-size: 35px;
	bottom: -5px;
}

.testimonial.testimonial-style-4 blockquote p {
	color: #777;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 1em;
	font-style: normal;
}

.testimonial.testimonial-style-4 .testimonial-arrow-down {
	display: none;
}

.testimonial.testimonial-style-4 .testimonial-author {
	margin-left: 30px;
	align-items: center;
}

.testimonial.testimonial-style-4 .testimonial-author img {
	max-width: 55px;
}

.testimonial.testimonial-style-4 .testimonial-author p {
	margin-bottom: 0;
}

.testimonial.testimonial-style-4.testimonial-no-borders {
	border: 0;
	box-shadow: none;
}
.testimonial .testimonial-author {
	display: flex;
	margin: 12px 0 0 0;
}

.testimonial .testimonial-author .testimonial-author-thumbnail {
	width: auto;
}

.testimonial .testimonial-author img {
	max-width: 25px;
}

.testimonial .testimonial-author strong {
	color: #111;
	display: block;
	margin-bottom: 2px;
	font-size: 16px;
	font-size: 1rem;
}

.testimonial .testimonial-author span {
	color: #666;
	display: block;
	font-size: 12.8px;
	font-size: 0.8rem;
	font-weight: 600;
}

.testimonial .testimonial-author p {
	color: #999;
	text-align: left;
	line-height: 1.2;
	margin-left: 9.6px;
	margin-left: 0.6rem;
}
.testimonial.testimonial-style-4:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
