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

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


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


.ayuda{
    height: 175px;
}


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

    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); */
}

header{
    background: #010501;
    padding-top: 6px;
    padding-bottom: 6px;
}

.logotipo img{
    width: 100%;
}

.foto{
    text-align: center;
    color: white;
    font-weight: lighter;
}
.foto img{
    width: 100%;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.4s ease;
}
.foto img:hover{
    filter: grayscale(0%);
}


.cintillo{
    background: #3abb4f;
    color: white;
    font-size: 18px;
    font-weight: bold;
}



nav a{
    color: white;
    font-size: 20px;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}

.menu{
    font-weight: 400;
    text-align: center;
    color: white;
    padding: 7px 0;
}
.mDos{
    line-height: 22px;
    padding: 0;
}
.menu:hover{
    font-weight: bold;
    color:#3abb4f;
}


.efecto{
    background: url(../images/efecto.jpg) no-repeat center center;
    background-size: cover;
    height: 500px;
    filter: grayscale(100%);
}



.leyenda1{
    position: relative;
    top: 30%;
    z-index: 10000;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 26px;
    line-height: 33px;
    text-shadow: 1px 1px 10px black;
    padding-top: 12px;
    padding-bottom: 12px;
}

.seccion{
   /*  background: rgb(58, 187, 79, 0.5); */
    font-size: 18px;
    font-weight: 500;
    padding: 40px;
}
.seccion ul{
    list-style: none;
    padding-left: 12px;
}
.seccion ul li::before {
    content: "➢"; /* Inserta el emoji */
    margin-right: 10px; /* Espacio entre el icono y el texto */
}


.imagen img{
    width: 100%;
    filter: grayscale(100%);
}
.cara img{
    border-radius: 50%;
}


.uno{
    background: url(../images/fondo1.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
}


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

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

.s span{
    width: 100%;
    text-align: center;
    font-size: 60px;
    display: inline-block;
}
.s strong{
    font-size: 22px;
}


.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;
    filter: grayscale(100%);
}

.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;
    }
}


.subtitulo{
    text-align: center;
    font-weight: 300;
    font-size: 33px;
}


@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 li{
        width: 33.33%;
    }
    .menu{
        padding: 22px 0;
    }
}

@media screen and (max-width:768px){
    .seccion{
        padding: 12px;
    }
    .efecto{
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .leyenda1{
        font-size: 22px;
    }
}

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



.footerMeridian{
    background: linear-gradient(180deg, #010501 0%, #0d160d 100%);
    color: white;
    padding-top: 60px;
    padding-bottom: 25px;
    margin-top: 60px;
}

.footerLogo img{
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
}

.redes img{
    width: 35px;
}

.footerTexto{
    font-size: 16px;
    line-height: 28px;
    color: rgba(255,255,255,0.78);
    margin: 0;
    max-width: 420px;
}

.footerTitulo{
    font-size: 20px;
    font-weight: 700;
    color: #3abb4f;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footerTitulo::after{
    content: "";
    width: 45px;
    height: 3px;
    background: #3abb4f;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
}

.footerLinks,
.footerDatos{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerLinks li,
.footerDatos li{
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.82);
}

.footerLinks li a{
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: 0.3s ease;
}

.footerLinks li a:hover{
    color: #3abb4f;
    padding-left: 6px;
}

.footerFrase{
    font-size: 16px;
    line-height: 28px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 20px;
}

.footerPersonas{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footerPersona{
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px 12px;
    transition: 0.3s ease;
}

.footerPersona:hover{
    background: rgba(58, 187, 79, 0.12);
    border-color: rgba(58, 187, 79, 0.35);
}

.footerPersona img{
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.footerPersona:hover img{
    filter: grayscale(0%);
}

.footerPersona span{
    font-size: 15px;
    color: white;
    font-weight: 500;
}

.footerLinea{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin-top: 35px;
    margin-bottom: 20px;
}

.footerBottom{
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    row-gap: 10px;
}


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

    .footerMeridian{
        padding-top: 45px;
    }

    .footerTexto,
    .footerFrase{
        max-width: 100%;
    }
}

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

    .footerMeridian{
        text-align: center;
    }

    .footerLogo img{
        margin-left: auto;
        margin-right: auto;
    }

    .footerTitulo::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .footerPersona{
        justify-content: center;
        text-align: left;
    }
}

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

    .footerMeridian{
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footerTitulo{
        font-size: 18px;
    }

    .footerTexto,
    .footerFrase,
    .footerLinks li,
    .footerDatos li{
        font-size: 15px;
        line-height: 26px;
    }

    .footerPersona{
        flex-direction: column;
        text-align: center;
    }
}