﻿body{
    font-family: "Montserrat", sans-serif;
}

.lang-switch {
    position: fixed;
    right: 18px;
    bottom: 88px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    opacity: 0.9;
}

.lang-flag:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    opacity: 1;
}

.lang-flag img {
    width: 26px;
    height: 26px;
    display: block;
    border-radius: 50%;
}

.lang-flag.active {
    outline: 2px solid #2ecc71; /* resalte del idioma activo */
    opacity: 1;
}

/* Opcional: en móvil, muévelas un poco hacia arriba */
@media (max-width: 576px) {
    .lang-switch {
        right: 14px;
        bottom: 84px;
    }
}


.cabecera-ayuda{
    position: relative;
    height: 158px;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #a8976a;
    padding-top: 5px;
    padding-bottom: 5px;
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 70%;
}


nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 20%;
    float: left;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    color: white;
    font-weight: lighter;
    text-align: center;
    font-size: 19px;
    cursor: pointer;
}
.menu:hover, .activo{
    font-weight: normal;
}


.datos{
    text-align: center;
    font-size: 20px;
    color: white;
}
.datos img{
    width: 30px;
}
.datos a{
    color: white;
    text-decoration: none;
}


.efecto{
    padding: 0;
}


.servicios{
    position: relative;
    background: url(../images/fondo-servicios.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.fondo-blanco{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
}

.servicios .container{
    position: relative;
    z-index: 2;
}

.titulo{
    text-align: center;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 40px;
}


.subtitulo{
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

.servicio{
    text-align: center;
}

.servicio img{
    background: #245898;
    width: 100px;
    padding: 20px;

    border-radius: 50%;
}

.servicio strong{
    width: 100%;
    font-size: 19px;
    font-weight: 400;
    display: inline-block;
    margin: 10px 0;
}


.clientes{
    padding-top: 50px;
    padding-bottom: 50px;
}

.slick2{
    background: white;
    padding-top: 12px;
    padding-bottom: 12px;
}
.item2{
    text-align: center;
    text-align: center;
}
.item2 img{
    width: auto;
    height: 80px;
    display: inline-block !important;
    margin: 0 15%;
}


.brindamos{
    background: #245898;
}

.textoBrindamos{
    color: white;
    font-size: 19px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.textoBrindamos strong{
    width: 100%;
    font-size: 45px;
    line-height: 55px;
    display: inline-block;
    margin-bottom: 20px;
}
.textoBrindamos img{
    width: 120px;
}



.border2 span{
    font-size: 60px !important;
}



.dorado{
    position: relative;
    background: url(../images/fondo-dorado.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 200px;
    margin: 30px 0;
}
.dorado .container{
    position: relative;
    z-index: 2;
}
.fondo-dorado{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgb(168, 151, 106, 0.8);
    width: 100%;
    height: 100%;
}

.tituloDorado{
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 33px;
    line-height: 40px;
    margin-bottom: 40px;
}

.subtituloDorado{
    text-align: center;
    color: white;
    font-size: 22px;
    margin-bottom: 40px;
}


.cubri{
    text-align: center;
    color: white;
    font-size: 27px;
}
.cubri span{
    font-size: 40px !important;
}



.servicios2{
    padding-top: 50px;
    padding-bottom: 50px;
}


.ser{
    text-align: center;
}
.ser img{
    width: 300px;
    height: 300px;
    object-fit: cover;

    border-radius: 50%;
}
.ser strong{
    width: 100%;
    text-align: center;
    font-size: 20px;
    display: inline-block;
}



.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: auto;
}
.galeria img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}
.galeria img:hover {
    transform: scale(1.05);
}

/* Estilos del popup */
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}
.popup .cerrar {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.popup .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
}
.popup .anterior {
    left: 20px;
}
.popup .siguiente {
    right: 20px;
}


.imgUnidades7{
    background: url(../images/unidades/7.jpg) no-repeat center center;
    background-size: cover;
}
.imgUnidades8{
    background: url(../images/unidades/8.png) no-repeat center center;
    background-size: cover;
}


.unis{
    background: #958a64;
    text-align: center;
    color: white;
    font-size: 22px;
    padding: 20px;
}

.uni{
    margin-bottom: 20px;
}

.unis img{
    width: 70%;
}
.unis strong{
    width: 100%;
    display: inline-block;
}



.imagen img{
    width: 100%;
}


.azul{
    background: #245898;
    color: white;
    font-size: 20px;
    line-height: 30px;
    padding: 20px;

    border-radius: 20px;
}


.textoNosotros{
    background: #958a64;
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding: 50px;
}
.textoNosotros strong{
    width: 100%;
    font-size: 33px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}


.img2{
    background: url(../images/2.png) no-repeat center center;
    background-size: cover;
}

.form-group{
    margin-bottom: 20px;
}


.clientes {
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.logo-cliente {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo-cliente img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.mapa{
    width: 100%;
}
.mapa iframe{
    width: 100%;
    height: 400px;
}


.clientes2{
    padding-top: 20px !important;
    padding-bottom: 30px !important;
}


    .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 40px;
    background: #fff;
    }

    .carousel {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: none;
    }

    .carousel::-webkit-scrollbar {
    display: none;
    }

    .logo-cliente {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .logo-cliente img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    }

    .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3b82f6;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.1s;
    }

    .carousel-btn:hover {
    background: #2563eb;
    }

    .carousel-btn.prev {
    left: 10px;
    }

    .carousel-btn.next {
    right: 10px;
    }


.videoBrindamos video{
    width: 100%;
}


footer{
    background: #245898;
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding-top: 30px;
    padding-bottom: 80px;
}
footer a{
    color: white;
}
footer img{
    width: 35px;
}
footer strong{
    width: 100%;
    text-align: center;
    font-size: 22x;
    display: inline-block;
    margin-bottom: 20px;
}
.super{
    text-align: center;
    font-size: 33px;
}
.superspan{
    width: 100%;
    text-align: center;
    font-weight: lighter;
    display: inline-block;
    margin-bottom: 20px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .img{
        height: 600px;
    }
    .uni{
        width: 100% !important;
    }
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menu{
        padding: 4px 0;
    }
}

@media screen and (max-width:576px){
    .logo-cliente {
        width: 45%;
    }
    .email{
        font-size: 14px;
    }
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}