
/* <!-- GOOGLE FONT --> */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;800&display=swap');

html { scroll-behavior: smooth; }
body {
    font-family: "Montserrat", sans-serif;

    line-height: 23px;
    color: #222;
}
a{
    color: #E7845D;
}

/* OLCULTOS */
@media (max-width: 768px){
    .ocultarmobile {
        display:none;
    }
}
@media (min-width: 768px){
    .ocultardesk{
        display:none;
    }
}


.logo-slider{
    max-width: 280px;

}
.linea-h1{
    background-color: #E7845D;
    height: 4px;
    max-width: 120px;
    margin-left: 0;
    margin-top: 45px;
}
.linea-separadora{
    background-color: #E7845D;
    margin-top: 45px;
}
.linea-separadora-dark{
    background-color: #333;
    margin-top: 45px;
    margin-bottom: 45px;
}
.linea-separadora-chica{
    background-color: #E7845D;
    max-width: 120px;
    margin-left: 0;
    height: 1px;
}
.boxed-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Envía el video al fondo */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0,0, 0.2); /* Color negro con opacidad del 50% */
    z-index: -1; /* Coloca el overlay entre el video y el contenido */
}


.container {
    position: relative;
    z-index: 1; /* Asegura que el contenido esté encima del video */
}

.content-parallax {
    width: 100%;
    min-height: 70vh;
    background-image: url('../images/fondo-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Esto mantiene la imagen fija */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;

}


.boxed-content-blanco {
    width: 100%;
    display: flex;
    align-items: center;
    color: #222;
    padding-top: 100px;
}

.boxed-content h1,
.boxed-content p {
    margin-bottom: 20px;
}

.boxed-content p:last-child {
    margin-bottom: 0;
}



.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: background-color 0.3s ease; /* Transición para el cambio de color */
}

.fixed-top.bg-dark {
    background-color: #312C32 !important; /* Color de fondo */
}

.content-fade-in{
    opacity: 0; /* Inicialmente oculto */
    animation: fadeInAnimation 1s ease forwards; /* Animación de fade in */
    animation-delay: 0.3s; /* Retraso de 2 segundos */
}

.testing{
    border: #000 1px solid;;
}

.fade-in-trigger {
    opacity: 0; /* Inicialmente oculto */
    transition: opacity 1s ease; /* Animación de fade in */
}

/* SWIPER CAROUSEL */
.swiper-container {
    width: 80vw;
    min-height: 300px;
}
@media (max-width: 768px) {
    .swiper-container {
        width: 90vw;
    }
}

.swiper-slide {
    width: 40px;
    height: 200px;
    text-align: center;
    font-size: 24px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.6);
    z-index: 1000;
}

.swiper-container.marcas .swiper-slide-active {}

.swiper-container.testimonios {
    border-radius: 20px;
    font-size: 12px;
    padding: 25px;
    padding-top: 0px;
    height: auto;
}
.swiper-container.testimonios .swiper-slide-active {
    border-radius: 20px;
    background-color: #F6F6F6;
    padding: 25px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: auto;
    margin-bottom: 100px;
}

.testimonio-icono {
    width: 40px;
    margin-top: -30px;
}
.testimonio-nombre {
    font-size: 10px;
    line-height: 12px;
    text-align: left;
    max-width: 200px;
    margin-top: 10px;
}
.testimonio-puesto {
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    text-align: left;
    max-width: 200px;
}
.testimonio-cliente {
    font-size: 18px;
    line-height: 18px;
    font-weight: 800;
    text-align: left;
    max-width: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.testimonio-texto {
    font-size: 10px;
    line-height: 12px;
    text-align: left;
    max-width: 200px;
    padding-bottom: 20px;
}
.linea-testimonio {
    background-color: #312C32;
    height: 2px;
    width: 30%;
    margin-top: 0px;
}


/* Estilos para las flechas de navegación de la primera galería */
.swiper-button-prev, .swiper-button-next {
    color: #312C32;
    /* position: fixed; */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}
.contenedor-flechas{
    position: relative;
}
.swiper-button-prev {
    left: 10px; /* Ajusta la posición izquierda */
}
.swiper-button-next {
    right: 10px; /* Ajusta la posición derecha */
}

/* Estilos para la paginación (puntos) de la segunda galería */
.swiper-pagination {
    z-index: 1000;
}
.swiper-pagination-bullet{
    color: #312C32;
    background-color: #312C32;
}

/* PRECIOS */
.card {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, .02) !important;
}
.card-body{
    padding: 2rem !important;
}
ul {
    font-size: 13px;
    line-height: 19px;
}

.btn-nova{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #E7845D;
    border-radius: 10px;
    border: none;
}




/* Animación de fade in */
@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Estilos para el menú */
.navbar-nav .nav-item {
    padding: 10px 10px !important;
    font-size: 15px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1)  !important;
}

@media (max-width: 768px) {
    
    .logo-slider{
        max-width: 250px;
        margin-top: -80px;
    }
    .testimonio-icono {
        width: 65px;
        margin-top: -30px;
    }
    .testimonio-nombre {
        font-size: 18px;
        line-height: 21px;
        text-align: left;
        max-width: 200px;
        margin-top: 10px;
    }
    .testimonio-puesto {
        font-size: 16px;
        line-height: 18px;
        font-weight: 700;
        text-align: left;
        max-width: 200px;
    }
    .testimonio-cliente {
        font-size: 28px;
        line-height: 28px;
        font-weight: 800;
        text-align: left;
        max-width: 200px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .testimonio-texto {
        font-size: 16px;
        line-height: 17px;
        text-align: left;
        max-width: 200px;
        padding-bottom: 20px;;
    }
    .imagen-equipo{
        text-align: center !important;
        padding-bottom: 20px;
    }
        /* Estilos para el menú off-canvas en dispositivos móviles */
    .fixed-top {
        height: 60px;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%; /* Cambiado de -250px a -100% */
        height: 100vh;
        width: 100%; /* Cambiado de 250px a 100% */
        background-color: #312C32;
        transition: right 0.3s ease;
        display: flex; /* Añadido */
        justify-content: center; /* Añadido */
        align-items: center; /* Añadido */
        color: #ffffff;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        /* No es necesario ningún cambio aquí */
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 20px;
    }

    .navbar-nav .nav-item {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #555;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-toggler {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1031;
    }
    .navbar-dark .navbar-toggler-icon {
        background-image: url(../images/icon-menu.svg);
        /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e); */
    }
}

/* Estilo para el enlace activo en el menú */
.active-nav-link {
    color: #000000 !important;
}



