﻿html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px; /* alto del header fijo */
}




body{
    background: url(../images/fondo1.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Google Sans", sans-serif;
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    width: 60px;
}
.chat img{
    width: 100%;
}


.fijo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}


.ayuda{
    height: 210px;
}


.cintillo{
    background-color: #024070;
    background: linear-gradient(
        180deg,
        #024070 0%,
        #024070 70%,
        #4b8ec3 100%
    );
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}


header{
    background: white;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 70%;
}
.logotipo span{
    width: 100%;
    line-height: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 12px;
}


nav a{
    color: #024070;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 45%;
    float: left;
    margin: 0 2.5%;
}

.menu{
    background: linear-gradient(135deg, #f2b805 60%, #df9700 100%);
    background: linear-gradient(135deg, #024070 65%, #4b8ec3 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    font-size: 20px;

    border-radius: 8px;
}

.efecto{
    padding: 0;
}


.info{
    position: relative;
    z-index: 100;
    font-weight: bold;
    text-align: center;
    margin-top: -30px;
}


.titulo{
    font-family: "Oswald", sans-serif;
}


.uno{
    padding-top: 10px;
    padding-bottom: 40px;
}

.texto{
    text-align: center;
    font-size: 22px;
    margin-bottom: 60px;
}

.seccion{
    text-align: justify;
    font-size: 20px;
}
.seccion strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.imagen img{
    width: 100%;
}

.imagen1 img{
    border-radius: 200px 67px 145px 200px;
}



.btn-info {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #f2b805 60%, #df9700 100%);
    box-shadow: 0 4px 15px rgba(223, 151, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 151, 0, 0.6);
    background: linear-gradient(135deg, #df9700 40%, #f2b805 100%);
}

.btn-info:active {
    transform: scale(0.98);
    box-shadow: 0 3px 10px rgba(223, 151, 0, 0.5);
}


.btn-asesor {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #024070 65%, #4b8ec3 100%);
    box-shadow: 0 4px 15px rgba(2, 64, 112, 0.4);
    transition: all 0.3s ease;
}

.btn-asesor:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 64, 112, 0.6);
    background: linear-gradient(135deg, #4b8ec3 40%, #024070 100%);
}

.btn-asesor:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(2, 64, 112, 0.5);
}



.dos{
    background: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.pro{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}

.pro img{
    width: 100%;
    height: 340px; /* un poco más alto */
    object-fit: cover;
    transition: transform .4s ease;
}

/* efecto zoom suave */
.pro:hover img{
    transform: scale(1.08);
}

/* overlay oscuro */
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 355px;
    background: rgba(0,0,0,0.75);
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;

    opacity: 0;
    transition: all .4s ease;
}

/* mostrar overlay */
.pro:hover .overlay{
    opacity: 1;
}

/* título dentro del overlay */
.overlay h4{
    font-size: 22px;
    margin-bottom: 10px;
}

/* texto */
.overlay p{
    font-size:18px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* título inferior */
.pro strong{
    width: 100%;
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    display: block;
}

@media (max-width: 768px){

    .pro img,
    .overlay{
        height: 260px;
    }
}


.nosotros{
    padding-top: 40px;
    padding-bottom: 40px;
}

.seccion{
    background: white;
    padding: 40px;

    border-radius: 30px;
}
.seccion strong{
    font-size: 23px;
    color: #024070;
}

.imagen img{
    width: 100%;

    border-radius: 30px;
}




.perfil-empresarial {
    position: relative;
    background: url('../images/2.jpg') center/cover no-repeat;
    padding: 100px 20px;
    color: #ffffff;
}

.perfil-empresarial .overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* overlay azul oscuro */
    background: rgba(2, 64, 112, 0.85);
    z-index: 1;
}

.perfil-empresarial .contenido {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.perfil-empresarial h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.perfil-empresarial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}



.footer-elemerc{
    position: relative;
    margin-top: 0;
    padding-top: 70px;
    padding-bottom: 30px;
    color: white;
    background: linear-gradient(
        180deg,
        rgba(2, 64, 112, 0.96) 0%,
        rgba(2, 64, 112, 0.98) 65%,
        rgba(75, 142, 195, 0.96) 100%
    );
    overflow: hidden;
}

.footer-elemerc::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 24, 43, 0.18);
    z-index: 1;
}

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

.footer-logo{
    margin-bottom: 20px;
}

.footer-logo img{
    width: 220px;
    max-width: 100%;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}

.footer-titulo{
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 22px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-titulo::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f2b805 0%, #df9700 100%);
}

.footer-texto,
.footer-direccion{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 0;
}

.footer-lista{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-lista li{
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.footer-lista strong{
    color: #ffffff;
}

.footer-elemerc a{
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-elemerc a:hover{
    color: #f2b805;
}

.footer-botones{
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-botones .btn-info,
.footer-botones .btn-asesor{
    font-size: 16px;
    padding: 12px 22px;
}

.footer-linea{
    width: 100%;
    height: 1px;
    margin-top: 45px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.18);
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255,255,255,0.88);
}

.footer-bottom a{
    margin-left: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}

.footer-bottom a:first-child{
    margin-left: 0;
}

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

    .footer-elemerc{
        padding-top: 60px;
    }

    .footer-titulo{
        font-size: 27px;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .footer-elemerc{
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .footer-logo{
        text-align: center;
    }

    .footer-logo img{
        width: 190px;
    }

    .footer-titulo{
        font-size: 25px;
    }

    .footer-texto,
    .footer-direccion,
    .footer-lista li{
        font-size: 16px;
    }

    .footer-botones{
        flex-direction: column;
        align-items: stretch;
    }

    .footer-botones .btn-info,
    .footer-botones .btn-asesor{
        width: 100%;
        text-align: center;
    }

    .footer-bottom{
        font-size: 14px;
    }

    .footer-bottom a{
        display: inline-block;
        margin-left: 0;
        margin-right: 14px;
        margin-bottom: 8px;
    }
}

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

    .footer-elemerc{
        padding-top: 45px;
    }

    .footer-titulo{
        font-size: 23px;
    }
}


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

}

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

@media screen and (max-width:992px){
    nav ul{
        margin-top: 20px !important;
    }
}

@media screen and (max-width:768px){
    .info{
        margin-top: 30px;
    }
}

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




.contacto-elemerc{
    padding-top: 90px;
    padding-bottom: 90px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.96)),
        url('../images/fondo1.jpg') center center / cover no-repeat;
}

.contacto-info-box{
    height: 100%;
    padding: 45px 35px;
    border-radius: 26px;
    color: white;
    background: linear-gradient(180deg, #024070 0%, #024070 68%, #4b8ec3 100%);
    box-shadow: 0 18px 45px rgba(2, 64, 112, 0.25);
    position: relative;
    overflow: hidden;
}

.contacto-info-box::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.contacto-info-box::after{
    content: "";
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.contacto-info-box > *{
    position: relative;
    z-index: 2;
}

.contacto-etiqueta{
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.contacto-titulo{
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 20px;
    color: #ffffff;
}

.contacto-texto{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
}

.contacto-dato{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.contacto-icono{
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f2b805 0%, #df9700 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(223, 151, 0, 0.28);
}

.contacto-contenido small{
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.contacto-contenido a{
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contacto-contenido a:hover{
    color: #f2b805;
}

.contacto-botones{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-whatsapp-elemerc{
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #1fa855 0%, #25d366 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-elemerc:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-whatsapp-elemerc:active{
    transform: scale(0.98);
}

.contacto-form-box{
    height: 100%;
    padding: 45px 35px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(2, 64, 112, 0.08);
}

.form-titulo-elemerc{
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    color: #024070;
    margin-bottom: 10px;
}

.form-subtitulo-elemerc{
    font-size: 16px;
    line-height: 1.7;
    color: #4c5b6b;
    margin-bottom: 28px;
}

.form-label-elemerc{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #024070;
    margin-bottom: 9px;
}

.input-elemerc{
    width: 100%;
    border: 1px solid rgba(2, 64, 112, 0.14);
    background: #f8fbff;
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 16px;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px transparent;
}

.input-elemerc::placeholder{
    color: #8fa0b4;
}

.input-elemerc:focus{
    border-color: #4b8ec3;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(75, 142, 195, 0.14);
}

.textarea-elemerc{
    min-height: 170px;
    resize: vertical;
}

.btn-enviar-elemerc{
    border: 0;
    display: inline-block;
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #024070 65%, #4b8ec3 100%);
    box-shadow: 0 10px 24px rgba(2, 64, 112, 0.25);
    transition: all 0.3s ease;
}

.btn-enviar-elemerc:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2, 64, 112, 0.35);
    background: linear-gradient(135deg, #4b8ec3 35%, #024070 100%);
}

.btn-enviar-elemerc:active{
    transform: scale(0.98);
}




.marcas{
    padding-top: 30px;
    padding-bottom: 30px;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;                 /* clave: el track mide lo que sumen los sets */
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

.logo-set {
    display: flex;
    align-items: center;
}

.logo-item {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

/* ahora -50% sí es EXACTAMENTE 1 set */
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-item {
        flex: 0 0 140px;
        padding: 10px;
    }

    .logo-item img {
        max-height: 55px;
    }
}



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

    .contacto-elemerc{
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contacto-titulo{
        font-size: 38px;
    }

    .form-titulo-elemerc{
        font-size: 34px;
    }
}

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

    .contacto-info-box,
    .contacto-form-box{
        padding: 35px 24px;
        border-radius: 22px;
    }

    .contacto-titulo{
        font-size: 33px;
    }

    .contacto-contenido a{
        font-size: 20px;
    }

    .form-titulo-elemerc{
        font-size: 30px;
    }

    .contacto-botones{
        flex-direction: column;
    }

    .contacto-botones .btn-info,
    .contacto-botones .btn-whatsapp-elemerc,
    .btn-enviar-elemerc{
        width: 100%;
        text-align: center;
    }
}

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

    .contacto-elemerc{
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .contacto-titulo{
        font-size: 29px;
    }

    .form-titulo-elemerc{
        font-size: 27px;
    }

    .contacto-texto,
    .form-subtitulo-elemerc{
        font-size: 15px;
    }

    .input-elemerc{
        font-size: 15px;
        padding: 14px 16px;
    }
}



.normas-elemerc{
    padding: 50px 0;
    background: linear-gradient(
        135deg,
        #024070 60%,
        #4b8ec3 100%
    );
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

/* efecto sutil tipo glass / overlay */
.normas-elemerc::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

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

.titulo-normas{
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.lista-normas{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lista-normas div{
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.lista-normas div:hover{
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.ul-norma{
    font-size: 16px;
    max-width: 900px;
    margin-top: 10px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}