@charset "utf-8";
/* LINK SISTEMAS CUSTOM CSS Document */

/* boton whatsapp con animación */
.floating_btn a{
    text-decoration:none;
}
.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
}
@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}
.contact_icon {
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    box-shadow: 0 0 0 0 #25D366;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}
.text_icon {
    margin-top: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}



/* side bar para agenda y llamadas */
.sidenav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    width: 60px;
    border-radius: 0 12px 12px 0;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: width 0.3s ease-in-out;
    z-index: 1000;
}
.sidenav:hover {
    width: 250px; 
}
/* Sidebar Links */
.sidenav a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #f5f5f5; 
    font-size: 18px;
    text-decoration: none;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}
.sidenav a:hover {
    background: linear-gradient(145deg, #333, #111); 
    box-shadow: inset 0 0 12px 6px #555555; 
    color: #b3b3b3; 
}
/* Sidebar Icons */
.sidenav a .icon {
    margin-right: 10px;
    font-size: 20px;
    transition: margin-right 0.3s, color 0.3s;
    color: #ffffff; 
}
.sidenav a:hover .icon {
    margin-right: 20px;
    color: #b3b3b3; 
}
/* Sidebar Link Text */
.sidenav a .text {
    opacity: 0;
    margin-left: -60px;
    transition: opacity 0.3s, margin-left 0.3s;
    color: #e0e0e0;
    white-space: nowrap;
}
.sidenav a:hover .text {
    opacity: 1;
    margin-left: 15px;
}
/* Content Section */
.content {
    margin-left: 80px;
    padding: 20px;
    color: #e0e0e0;
}
/* Premium Header */
/*
.content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #f5f5f5;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 15px #555555; 
}
.content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}
@media (max-width: 600px) {
    .sidenav:hover {
        width: 180px;
    }
    .content {
        margin-left: 60px;
        padding: 10px;
    }
}
*/




/* fix para promociones */
.promociones {
    overflow: hidden;
}
.promociones__slider.owl-carousel .owl-dots {
    text-align: center;
    padding-top: 35px;
}
.promociones__slider.owl-carousel .owl-dots button {
    height: 8px;
    width: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 10px;
}
.promociones__slider.owl-carousel .owl-dots button.active {
    background: #A90101;
}



/* fix para un solo item en los carruseles de testimonios, team y promociones */
.owl-stage{
    margin: 0 auto;
}



/* trampa para formularios */
.ciudad {
	display: none;
}



/* menu */
.header__nav__menu ul li a:after {
    background: #A90101;
}
/* menu movil */
.slicknav_btn {
    background: #A90101;
}
/* centrado del logo movil */
.header__logo {
    padding: 19px 0;
}



/* buscar */
#search {
	z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}
#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}
#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
@media (max-width: 768px){
	#search input[type="search"] {
		font-size: 7.5vw;
	}
}
.header__nav__social .buscar {
    color: #ffff;
    background: #A90101;
    padding: 9px 10px 7px;
    margin-left: 5px;
}
#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -57px;
	background-color: #A90101;
	border-color: #A90101;
	border-radius: 0;
	color: #fff;
	font-size: 2rem;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
	background-color: transparent;
	border-color: transparent;
	opacity: 1;
	padding: 10px 10px;
}
/* clears the 'X' from Internet Explorer */
#search input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
#search input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
/* clears the 'X' from Chrome */
#search input[type="search"]::-webkit-search-decoration,
#search input[type="search"]::-webkit-search-cancel-button,
#search input[type="search"]::-webkit-search-results-button,
#search input[type="search"]::-webkit-search-results-decoration { display: none; }




/* ---- carrusel ------ */
/* carrusel altura */
.hero__item {
    height: 100vh;
}
/* boton ver mas */
.primary-btn:before {
    border-left: 2px solid #A90101;
    border-top: 2px solid #A90101;
}
.primary-btn:after {
    border-right: 2px solid #A90101;
    border-bottom: 2px solid #A90101;
}
/* indicadores */
.hero__slider.owl-carousel .owl-dots {
    bottom: 90px;
	text-align: center;
}
.hero__slider.owl-carousel .owl-dots button {
    color: #fff;
}
.hero__slider.owl-carousel .owl-dots button:after {
    background: #fff;
}
.hero__slider.owl-carousel .owl-dots button.active {
    color: #A90101;
}
.hero__slider.owl-carousel .owl-dots button.active:after {
    background: #A90101;
}
/* overlay para imagen - https://cssgradient.io/ */
.overlay-slider {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .3;
	background: rgb(0,0,0);
	/* background: radial-gradient(circle, rgba(59,18,82,1) 38%, rgba(192,52,56,1) 100%); */
}



/* servicios */
.section-title h2:after {
    background: #A90101;
}
/* ico wa */
.services__item__icon {
    display: inline-block;
	cursor: pointer;
}
/* link */
 a.linkto {
    font-size: 16px;
    color: #ffffff;
}
 a.linkto span {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.5;
    position: relative;
    top: 4px;
    margin-left: 5px;
}
.services__item__icon:after {
    border: 2px solid #A90101;
}


/* portafolio */
/* active category */
.portfolio__filter li.active {
    border: 1px solid #A90101;
}
/* videos pequenos icos */
.video-ico img, .portfolio__item__video img {
    width: 100%;
	height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
/* boton de play */
.work__item .play-btn, .portfolio__item__video .play-btn {
    position: absolute;
}
.portfolio__item__text a {
	color: #ffffff;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}
.portfolio__item__text a:hover {
	color: #ffffff80;
}
.portfolio__item__text li a span {
	display: inline;
    position: relative;
    top: 4px;
    margin-left: 5px;
}



/* numeralia */
.counter__item {
    background: #A90101;
}



/* testimonios */
.testimonial__text a {
    font-size: 16px;
    color: #ffffff;
}
.testimonial__text a span {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.5;
    position: relative;
    top: 4px;
    margin-left: 5px;
}
.testimonial__author__pic img {
    object-fit: cover;
    height: 50px;
    width: 50px!important;
    border-radius: 50%;
}
.testimonial__slider.owl-carousel .owl-dots button.active {
    background: #A90101;
}



/* noticias */



/* galerias y slider */
.set-bg {
    background-position: center;
	position: relative;
}
.overlay-callto {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: .7;
	background-color: #100028;
	overflow:hidden;	
}
.callto__text a {
    background: #A90101;
}



/* footer */
.footer__copyright__text a {
    color: #A90101;
}



/* contacto */
.contact__widget__item__text a {
	color: #ffffff;
}
.contact__widget__item__text a:hover {
	color: #A90101;
}
.site-btn {
    background: #A90101;
}



/* lista contenidos */
/* paginanción */
#SoloMovil {
display:none;
text-align: center;
}
@media (max-width: 768px) {
	#hide {
	display:none;
	}
	#SoloMovil {
	display:inline;
	}
}
.pagination__option .number__pagination:hover {
    background: rgba(242, 242, 242, 0.3);
}
.pagination__option .active.number__pagination {
    background: #A90101;
}
/* lista contenidos */
/* imagen lista contenido con video link */
.video-container {
	position: relative; /* Establece un contenedor relativo para posicionar elementos hijos */
	display: inline-block; /* Asegura que el contenedor se ajuste al tamaño del contenido */
	width: 100%;
}
.video-container img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}
.video-container .play-icon {
	position: absolute; /* Posiciona el ícono en relación al contenedor */
	top: 50%; /* Mueve el ícono al 50% de la altura del contenedor */
	left: 50%; /* Mueve el ícono al 50% del ancho del contenedor */
	transform: translate(-50%, -50%); /* Ajusta el ícono al centro exacto */
    font-size: 60px;
    line-height: 30px;
    border-radius: 25%;
	color: red; /* Cambia el color del ícono */
	background-color: white;
}
/* lista contenidos */
/* mapa responsivo (contenido y contacto) */
.mapa-responsive{
    overflow: hidden;
    position: relative;
    height: 0;
}
.mapa-responsive iframe{
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
/* ratios para mapa */
.mapa-ratio-16-9 {
    padding-bottom: 56.25%;
}
.mapa-ratio-21-9 {
    padding-bottom: 42.85%;
}
/* anexos */
.blog__details__quote {
    padding: 35px 40px!important;
}
/* navegador de contenidos */
.contenidos-nav-img {
    max-width: inherit;
    object-fit: cover;
    width: 110px;
    height: 90px;
}



