body{

    font-family: Arial, Helvetica, sans-serif;

    background: #f4f4f4;

    margin: 0;
}

/* =========================
   ENCABEZADO + HERO
   ========================= */

/* =========================
   ENCABEZADO
   ========================= */

.encabezado {
    position: relative;

    padding: 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 16% 45%,
            rgba(185, 151, 62, 0.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 6% 50%,
            rgba(200, 16, 46, 0.08),
            transparent 18%
        ),
        linear-gradient(
            90deg,
            #050505 0%,
            #0c0b09 45%,
            #030303 100%
        );
}


/* =========================
   BARRA SUPERIOR
   ========================= */

.barra-superior {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 94%;
    max-width: 1450px;

    min-height: 112px;

    margin: 0 auto;

    padding: 5px 0;
}

.barra-superior::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        #b9973e 16%,
        rgba(185, 151, 62, 0.35) 72%,
        transparent 100%
    );
}


/* =========================
   LOGO
   ========================= */

.logo {
    position: relative;
    z-index: 2;

    width: 370px;
    height: auto;

    display: block;

    filter:
        drop-shadow(0 0 8px rgba(185, 151, 62, 0.23))
        drop-shadow(0 5px 12px rgba(0, 0, 0, 0.8));

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.logo:hover {
    transform: scale(1.025);

    filter:
        drop-shadow(0 0 13px rgba(185, 151, 62, 0.38))
        drop-shadow(0 6px 14px rgba(0, 0, 0, 0.85));
}


/* =========================
   MENÚ
   ========================= */

nav {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 25px;
}

nav a {
    position: relative;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.3px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

nav a:not(.boton-menu)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #b9973e;

    transition: width 0.3s ease;
}

nav a:not(.boton-menu):hover {
    color: #b9973e;

    transform: translateY(-2px);
}

nav a:not(.boton-menu):hover::after {
    width: 100%;
}


/* =========================
   BOTÓN DEL MENÚ
   ========================= */

.boton-menu {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    color: #b9973e !important;
    background: rgba(185, 151, 62, 0.04);

    border: 1px solid #b9973e;
    border-radius: 5px;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 0.5px;

    box-shadow: 0 0 15px rgba(185, 151, 62, 0.08);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.boton-menu span {
    color: #c8102e;
}

.boton-menu:hover {
    color: #080808 !important;
    background: #b9973e;

    transform: translateY(-3px);

    box-shadow: 0 10px 22px rgba(185, 151, 62, 0.22);
}


/* =========================
   ENCABEZADO RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

    .logo {
        width: 300px;
    }

    nav {
        gap: 16px;
    }

    nav a {
        font-size: 13px;
    }

}

@media (max-width: 850px) {

    .barra-superior {
        flex-direction: column;

        padding: 10px 0 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;

        gap: 18px;
    }

}

.boton-menu span{

    font-size: 14px;

    margin-right: 5px;

}


.boton-menu:hover{

    background: #b9973e;

    border-color: #b9973e;

    color: #131212 !important;

    box-shadow:
        0 0 10px rgba(185,151,62,0.35),
        0 3px 0 #c62828;

}
/* =========================
   HERO
   ========================= */

.hero {
   outline: 3px solid #b9973e;
box-shadow:
    0 0 8px rgba(185,151,62,0.7),
    0 0 20px rgba(185,151,62,0.35),
    inset 0 0 12px rgba(185,151,62,0.12);

    display: flex;
    align-items: center;

    width: 100%;
    max-width: none;
    min-height: 700px;
    margin: 0;

    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.78) 0%,
            rgba(5,5,5,0.55) 38%,
            rgba(5,5,5,0.18) 72%,
            rgba(5,5,5,0.05) 100%
        ),
        url("../images/hero.nocturno.png");

    background-repeat: no-repeat;

    background-position: center center;

    background-size: 100% auto;
}

.hero{
    animation: brilloHero 3s ease-in-out infinite;
}

@keyframes brilloHero{

    0%, 100%{
        outline-color: #b9973e;
        box-shadow:
            0 0 6px rgba(185,151,62,0.45),
            0 0 14px rgba(185,151,62,0.20);
    }

    50%{
        outline-color: #f2d675;
        box-shadow:
            0 0 12px rgba(217,166,42,0.85),
            0 0 30px rgba(217,166,42,0.45),
            inset 0 0 15px rgba(217,166,42,0.12);
    }

}

.hero-texto {

    max-width: 620px;

    text-align: left;

    margin-left: 8%;

}


/* =========================
   TÍTULO PRINCIPAL
   ========================= */

.titulo{

    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;

    color: white;

    margin: 0 0 4px;

    font-weight: bold;

    letter-spacing: 1px;

    line-height: 1.05;

    transition: all 0.4s ease;

    text-shadow:
        0 0 4px rgba(255,255,255,0.15),
        0 0 10px rgba(185,151,62,0.22);

}
.hero-texto:hover .titulo{
    text-shadow:
        0 0 5px rgba(255,255,255,0.30),
        0 0 12px rgba(217,166,42,0.55),
        0 0 24px rgba(185,151,62,0.30);
}
.titulo::after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,244,176,0.9),
        rgba(217,166,42,0.8),
        transparent
    );

    transform: skewX(-20deg);
}

.hero-texto:hover .titulo::after{
    left: 130%;
    transition: left 0.8s ease;
}

/* =========================
   SUBTÍTULO
   ========================= */

.subtitulo{

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    line-height: 1.15;

    color: #d09d21;

    margin: 0;

    font-weight: bold;

    transition: all 0.3s ease;

}

.hero-texto:hover .subtitulo{

    text-shadow:
        0 0 8px rgba(198,40,40,0.35);

}


/* =========================
   LÍNEA DORADA
   ========================= */

.linea-dorada{

    width: 34;

    height: 1px;

    background: #b9973e;

    margin: 22px 0 18px;

    animation: aparecerLinea 1s ease forwards;

    animation-delay: 0.8s;

}


@keyframes aparecerLinea {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 34px;
        opacity: 1;
    }

}
.hero-texto:hover .linea-dorada{

    background: #c62828;

    width: 48px;

    box-shadow: 0 0 8px rgba(198,40,40,0.45);

}


/* =========================
   ESLOGAN
   ========================= */

.eslogan{

    font-size: 17px;

    line-height: 1.65;

    max-width: 430px;

    margin: 0;

    color: white;

}


/* =========================
   BOTÓN HERO
   ========================= */

.boton{

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    margin-top: 28px;

    padding: 15px 24px;

    min-width: 155px;

    background: #d9a62a;

    color: #111111;

    text-decoration: none;

    font-weight: bold;

    border-radius: 6px;

    transition: all 0.3s ease;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);

}

.boton span {
        transition: all 0.3s ease;
}

.boton:hover span {

    color: #a51616;

    transform: translateX(5px);

}
.boton{
    position: relative;
    overflow: hidden;
}

.boton::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(198,40,40,0.65),
        rgba(217,166,42,0.85),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.boton:hover::before{
    left: 130%;
}

/* =========================
   SECCIONES
   ========================= */

section{

    background: white;

    margin: 30px;

    padding: 25px;

    border-radius: 10px;

    min-height: 250px;

}

/* =========================
   QUIÉNES SOMOS
   ========================= */

.quienes{

    background: #f5f3ee;

    margin: 0;

    padding: 55px 5%;

    border-radius: 0;

    min-height: auto;

}


.quienes-contenido{

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.2fr;

    gap: 70px;

    align-items: center;

}


.quienes-texto{

    text-align: left;

}


.etiqueta-seccion{

    display: flex;

    align-items: center;

    gap: 14px;

    color: #a51616;

    font-size: 13px;

    font-weight: bold;

    margin-bottom: 18px;

}


.etiqueta-seccion span{

    width: 50px;

    height: 2px;

    background: #b9973e;

}


.quienes-texto h2{

    color: #171717;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;

    line-height: 1.25;

    margin: 0 0 20px;

    font-weight: normal;

}


.quienes-texto h2 strong{

    color: #a51616;

}


.quienes-texto p{

    color: #333333;

    font-size: 16px;

    line-height: 1.7;

    margin: 0 0 25px;

}


.boton-secundario{

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 12px 22px;

    border: 1px solid #b9973e;

    border-radius: 5px;

    color: #b27f10;

    text-decoration: none;

    font-weight: bold;

    font-size: 13px;

    transition: all 0.3s ease;

}


.boton-secundario span{

    font-size: 20px;

}


.boton-secundario:hover{

    background: #b9973e;

    color: #111111;

    transform: translateY(-3px);

}


.quienes-imagen{

    position: relative;

}


.quienes-imagen img{

    width: 100%;

    height: 265px;

    object-fit: cover;

    display: block;

    border-radius: 10px;

}


.certificacion{

    position: absolute;

    left: -42px;

    bottom: -2px;

    width: 310px;

    padding: 20px;

    background: #111111;

    color: white;

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 12px 25px rgba(0,0,0,0.25);

}


.certificacion-icono{

    width: 48px;

    height: 48px;

    border: 2px solid #b9973e;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b9973e;

    font-size: 24px;

    flex-shrink: 0;

}


.certificacion h3{

    color: #d0a329;

    font-size: 14px;

    margin: 0 0 8px;

}


.certificacion p{

    color: white;

    font-size: 13px;

    line-height: 1.5;

    margin: 0;

}


.quienes strong{

    color: #131212;


}


/* =========================
   BANNER
   ========================= */

.banner-principal{

    width: 100%;

    max-width: 1100px;

    display: block;

    margin: 0 auto 40px auto;

}

/* =========================
   SERVICIOS
   ========================= */

.servicios-grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.tarjeta-servicio{

    background: #131212;

    padding: 25px;

    border-radius: 14px;

    border: 1px solid #b9973e;

    transition: all 0.3s ease;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.tarjeta-servicio h3{

    color: #b9973e;

    font-size: 19px;

    line-height: 1.35;

    margin-top: 0;

    margin-bottom: 15px;

    letter-spacing: 0.3px;

}


.tarjeta-servicio p{

    color: #ffffff;

    line-height: 1.7;

    font-size: 16px;

    margin: 0;

}


.tarjeta-servicio:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(185,151,62,.25);

}

/* =========================
   BOTÓN VER ALCANCE
   ========================= */

.ver-alcance{

    display: inline-block;

    margin-top: 20px;

    color: #b9973e;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 0.8px;

    transition: all 0.3s ease;

}


.ver-alcance:hover{

    color: #ffffff;

    transform: translateX(5px);

}

/* =========================
   NUMERACIÓN DE CATEGORÍAS
   ========================= */

.numero-categoria{

    color: #b9973e;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

/* =========================
   COBERTURA
   ========================= */

.cobertura-grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 30px;

}


.cobertura-item{

    background: #131212;

    border: 1px solid #b9973e;

    padding: 25px;

    border-radius: 10px;

    transition: 0.3s;

}


.cobertura-item h3{

    color: #b9973e;

}


.cobertura-item p{

    color: white;

    line-height: 1.6;

}


.cobertura-item:hover{

    transform: translateY(-8px);

    box-shadow: 0 10px 25px rgba(185,151,62,.25);

}


/* =========================
   WHATSAPP
   ========================= */

.boton-whatsapp{

    display: inline-block;

    margin-top: 20px;

    padding: 15px 30px;

    background-color: #25D366;

    color: white;

    text-decoration: none;

    font-weight: bold;

    border-radius: 8px;

    transition: 0.3s;

}


.boton-whatsapp:hover{

    transform: translateY(-8px);

    box-shadow: 0 8px 20px rgba(37,211,102,.35);

}


/* =========================
   CONTACTO
   ========================= */

.contacto {
    position: relative;
    overflow: hidden;

    padding: 85px 8%;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(185, 151, 62, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #11100d 100%
        );

    color: #ffffff;
}

.contacto::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;

    width: 84%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #b9973e,
        transparent
    );
}

.contacto-contenido {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;

    gap: 70px;

    max-width: 1150px;

    margin: 0 auto;
}


/* TEXTO IZQUIERDO */

.contacto-texto {
    text-align: left;
}

.contacto-etiqueta {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #c8102e;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}

.contacto-etiqueta span {
    width: 45px;
    height: 1px;

    background: #b9973e;
}

.contacto-texto h2 {
    max-width: 590px;

    margin: 0 0 22px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 49px;
    font-weight: 400;

    line-height: 1.08;
}

.contacto-texto h2 strong {
    display: block;

    color: #b9973e;

    font-weight: 400;
}

.contacto-texto p {
    max-width: 610px;

    margin: 0;

    color: #d0cec8;

    font-size: 16px;
    line-height: 1.75;
}


/* TARJETA DERECHA */

.contacto-accion {
    position: relative;
    overflow: hidden;

    padding: 38px;

    border: 1px solid rgba(185, 151, 62, 0.65);
    border-left: 4px solid #c8102e;
    border-radius: 7px;

    background: rgba(0, 0, 0, 0.5);

    text-align: left;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.contacto-accion-numero {
    position: absolute;

    top: -5px;
    right: 20px;

    color: rgba(185, 151, 62, 0.14);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
}

.contacto-accion h3 {
    position: relative;

    margin: 0 0 12px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.contacto-accion p {
    position: relative;

    margin: 0 0 25px;

    color: #c9c7c1;

    font-size: 15px;
    line-height: 1.6;
}


/* BOTÓN WHATSAPP */

.boton-whatsapp {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 22px;

    color: #080808;
    background: #b9973e;

    border: 1px solid #b9973e;
    border-radius: 4px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-decoration: none;

    box-shadow: 0 8px 22px rgba(185, 151, 62, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.icono-whatsapp {
    width: 23px;
    height: 23px;

    fill: currentColor;
}

.boton-whatsapp strong {
    font-size: 21px;

    transition: transform 0.3s ease;
}

.boton-whatsapp:hover {
    color: #ffffff;
    background: #c8102e;
    border-color: #c8102e;

    transform: translateY(-5px);

    box-shadow: 0 14px 28px rgba(200, 16, 46, 0.28);
}

.boton-whatsapp:hover strong {
    transform: translateX(5px);
}


/* ADAPTACIÓN PARA CELULARES */

@media (max-width: 800px) {

    .contacto {
        padding: 70px 25px;
    }

    .contacto-contenido {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contacto-texto h2 {
        font-size: 39px;
    }

    .contacto-accion {
        padding: 32px 25px;
    }

}

@media (max-width: 480px) {

    .boton-whatsapp {
        width: 100%;

        padding: 0 14px;

        font-size: 11px;
    }

}

/* ================================
   SECCIÓN CLIENTES
================================ */

.clientes {
    position: relative;
    overflow: hidden;

    padding: 80px 8%;

    background: #f7f5f0;

    text-align: center;
}


/* ENCABEZADO */

.clientes-encabezado {
    max-width: 780px;

    margin: 0 auto 55px;
}

.clientes-etiqueta {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 18px;

    color: #c8102e;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}

.clientes-etiqueta::before,
.clientes-etiqueta::after {
    content: "";

    width: 38px;
    height: 1px;

    background: #b9973e;
}

.clientes h2 {
    margin: 0 0 20px;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;

    line-height: 1.08;
}

.clientes h2 span {
    color: #c8102e;
}

.clientes-intro {
    max-width: 720px;

    margin: 0 auto;

    color: #555555;

    font-size: 16px;
    line-height: 1.7;
}


/* CUADRÍCULA */

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    max-width: 1150px;

    margin: 0 auto;
}


/* TARJETAS */

.cliente-item {
    position: relative;
    overflow: hidden;

    min-height: 190px;

padding: 30px 28px;

    background:
        linear-gradient(
            145deg,
            #171612 0%,
            #080808 75%
        );

    border: 1px solid rgba(185, 151, 62, 0.65);
    border-radius: 6px;

    text-align: left;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.cliente-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 0;

    background: #c8102e;

    transition: height 0.4s ease;
}

.cliente-item::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -110px;
    right: -110px;

    border-radius: 50%;

    background: rgba(185, 151, 62, 0.08);

    transition:
        transform 0.5s ease,
        background 0.5s ease;
}


/* NÚMERO */

.cliente-numero {
    position: absolute;

    top: 24px;
    right: 25px;

    color: rgba(185, 151, 62, 0.35);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


/* ÍCONOS */

.cliente-icono {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 30px;

    border: 1px solid rgba(185, 151, 62, 0.75);
    border-radius: 50%;

    color: #b9973e;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.cliente-icono svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXTOS */

.cliente-item h3 {
    position: relative;

    margin: 0 0 16px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
}

.cliente-item h3::after {
    content: "";

    display: block;

    width: 32px;
    height: 2px;

    margin-top: 12px;

    background: #b9973e;
}

.cliente-item p {
    position: relative;

    margin: 0;

    color: #c9c7c1;

    font-size: 15px;
    line-height: 1.7;
}


/* EFECTOS */

.cliente-item:hover {
    transform: translateY(-10px);

    border-color: #b9973e;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.24),
        0 0 18px rgba(185, 151, 62, 0.12);
}

.cliente-item:hover::before {
    height: 100%;
}

.cliente-item:hover::after {
    transform: scale(1.35);

    background: rgba(185, 151, 62, 0.12);
}

.cliente-item:hover .cliente-icono {
    color: #090909;

    background: #b9973e;

    transform: rotate(-4deg) scale(1.06);
}

.cliente-item:hover .cliente-numero {
    color: rgba(200, 16, 46, 0.7);

    transform: translateY(-3px);
}


/* TABLET */

@media (max-width: 900px) {

    .clientes {
        padding: 90px 6%;
    }

    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clientes h2 {
        font-size: 42px;
    }

}


/* CELULAR */

@media (max-width: 620px) {

    .clientes {
        padding: 75px 24px;
    }

    .clientes-grid {
        grid-template-columns: 1fr;
    }

    .clientes h2 {
        font-size: 37px;
    }

    .clientes-etiqueta {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .clientes-etiqueta::before,
    .clientes-etiqueta::after {
        width: 22px;
    }

    .cliente-item {
        min-height: auto;
    }

}

/* =========================
   VENTANAS DE ALCANCE
   ========================= */

.modal-alcance{

    display: none;

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.75);

    z-index: 9999;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    overflow-y: auto;

}


.modal-contenido{

    position: relative;

    width: 100%;

    max-width: 650px;

    background: #131212;

    color: white;

    padding: 45px;

    border-radius: 14px;

    border: 1px solid #b9973e;

    box-shadow: 0 20px 50px rgba(0,0,0,0.5);

    box-sizing: border-box;

}


.modal-numero{

    display: block;

    color: #b9973e;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;

}


.modal-contenido h2{

    color: #b9973e;

    font-size: 25px;

    line-height: 1.3;

    margin: 0 40px 15px 0;

}


.modal-linea{

    width: 45px;

    height: 2px;

    background: #b9973e;

    margin-bottom: 25px;

}


.modal-contenido h3{

    color: white;

    font-size: 16px;

    margin-bottom: 12px;

}


.modal-contenido p{

    color: #eeeeee;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;

}


.cerrar-modal{

    position: absolute;

    top: 15px;
    right: 18px;

    width: 36px;
    height: 36px;

    border: 1px solid #b9973e;

    border-radius: 50%;

    background: transparent;

    color: #b9973e;

    font-size: 25px;

    line-height: 30px;

    cursor: pointer;

    transition: all 0.3s ease;

}


.cerrar-modal:hover{

    background: #b9973e;

    color: #111111;

    transform: rotate(90deg);

}

/* =========================
   DESPLAZAMIENTO DEL MENÚ
   ========================= */

html {
    scroll-behavior: smooth;
}

section,
.hero {
    scroll-margin-top: 100px;
}
/* =========================
   SECCIÓN NOSOTROS
   ========================= */

.nosotros {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 100px 8%;
    background: #050505;
    color: white;
    overflow: hidden;
}

.nosotros-contenido {
    max-width: 1250px;
    margin: 0 auto;
}

.etiqueta-seccion {
    display: block;
    color: #a51616;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.nosotros h2 {
    margin: 0;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 1px;
}

.nosotros-intro {
    max-width: 700px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.8;
    color: #cfcfcf;
}

.respaldo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.respaldo-item {
    position: relative;
    padding: 30px 25px;
    min-height: 180px;
    background: #101010;
    border: 1px solid rgba(185, 151, 62, 0.45);
    transition: all 0.35s ease;
}

.respaldo-item:hover {
    transform: translateY(-6px);
    border-color: #b9973e;
    box-shadow: 0 10px 35px rgba(185, 151, 62, 0.12);
}

.respaldo-numero {
    color: #b9973e;
    font-size: 13px;
    letter-spacing: 2px;
}

.respaldo-item h3 {
    margin: 18px 0 10px;
    font-size: 20px;
    letter-spacing: 1px;
}

.respaldo-item p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 900px) {

    .respaldo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .nosotros {
        padding: 80px 6%;
    }

    .nosotros h2 {
        font-size: 34px;
    }

    .respaldo-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   NUEVA EXPERIENCIA NOSOTROS — AVALOR360
   ===================================================== */

.nosotros-encabezado {
    max-width: 850px;
}

.nosotros h2 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: 1px;
}

.nosotros h2 span {
    color: #b9973e;
}

.nosotros-intro {
    max-width: 720px;
}


/* =========================
   EXPERIENCIA DESTACADA
   ========================= */

.experiencia-destacada {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 70px;
    padding: 25px 0;

    border-top: 1px solid rgba(185,151,62,0.35);
    border-bottom: 1px solid rgba(185,151,62,0.35);
}

.numero-experiencia {
    font-size: 72px;
    line-height: 1;
    font-weight: 300;
    color: #b9973e;
    letter-spacing: -3px;
}

.numero-experiencia span {
    font-size: 42px;
}

.texto-experiencia {
    display: flex;
    flex-direction: column;
}

.texto-experiencia strong {
    font-size: 18px;
    letter-spacing: 3px;
}

.texto-experiencia span {
    margin-top: 5px;
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
}


/* =========================
   RESPALDO PROFESIONAL
   ========================= */

.respaldo-profesional {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;

    margin-top: 75px;
}

.respaldo-titulo span,
.perfil-etiqueta {
    color: #b9973e;
    font-size: 12px;
    letter-spacing: 3px;
}

.respaldo-titulo h3 {
    margin-top: 18px;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}


/* =========================
   PERFIL DIRECTIVO
   ========================= */

.perfil-directivo {
    position: relative;

    padding: 35px;

    background: #0d0d0d;

    border-left: 2px solid #b9973e;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.35);
}

.perfil-directivo h3 {
    margin: 18px 0 8px;

    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
}

.perfil-directivo > p {
    color: #aaa;
    margin-bottom: 25px;
}


/* =========================
   CREDENCIALES
   ========================= */

.credenciales {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credenciales span {
    padding: 8px 12px;

    border: 1px solid rgba(185,151,62,0.55);

    color: #b9973e;

    font-size: 11px;
    letter-spacing: 1.5px;
}

.credencial-detalle {
    margin-top: 20px;

    color: #777;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   PRINCIPIOS
   ========================= */

.principios {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-top: 70px;
    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.principios span {
    color: #b9973e;

    font-size: 12px;
    letter-spacing: 3px;
}


/* =========================
   FRASE FINAL
   ========================= */

.frase-nosotros {
    max-width: 700px;

    margin: 60px auto 0;

    text-align: center;

    color: #aaa;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    line-height: 1.6;
    
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {

    .respaldo-profesional {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .principios {
        gap: 20px;
    }

}


@media (max-width: 600px) {

    .nosotros h2 {
        font-size: 34px;
    }

    .numero-experiencia {
        font-size: 55px;
    }

    .perfil-directivo {
        padding: 25px;
    }

    .perfil-directivo h3 {
        font-size: 22px;
    }

    .principios {
        flex-direction: column;
        gap: 15px;
    }

}
/* =====================================================
   ANIMACIÓN SCROLL — NOSOTROS
   ===================================================== */

.nosotros-encabezado,
.experiencia-destacada,
.respaldo-profesional,
.principios,
.frase-nosotros {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* =========================
   ACTIVACIÓN AL HACER SCROLL
   ========================= */

.nosotros.visible .nosotros-encabezado {
    opacity: 1;
    transform: translateY(0);
}

.nosotros.visible .experiencia-destacada {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.nosotros.visible .respaldo-profesional {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.nosotros.visible .principios {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.nosotros.visible .frase-nosotros {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
/* =====================================================
   SERVICIOS — DISEÑO AVALOR360
   ===================================================== */

.servicios {
    position: relative;
    width: 100%;
    padding: 120px 8%;
    background: #050505;
    color: white;
    overflow: hidden;
}


/* =========================
   ENCABEZADO
   ========================= */

.servicios-encabezado {
    max-width: 850px;
    margin: 0 auto 90px;
    text-align: center;
}

.etiqueta-servicios {
    display: block;
    margin-bottom: 18px;

    color: #b9973e;

    font-size: 11px;
    letter-spacing: 4px;
}

.servicios h2 {
    margin: 0;

    font-size: 52px;
    font-weight: 400;
    letter-spacing: 2px;
}

.servicios h2 span {
    color: #b9973e;
}

.servicios-intro {
    max-width: 650px;
    margin: 25px auto 0;

    color: #999;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   LISTA DE SERVICIOS
   ========================= */

.servicios-lista {
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   SERVICIO INDIVIDUAL
   ========================= */

.servicio-item {
    display: grid;
    grid-template-columns: 180px 1fr;

    min-height: 300px;

    border-top: 1px solid rgba(185,151,62,0.25);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease;
}

.servicio-item:last-child {
    border-bottom: 1px solid rgba(185,151,62,0.25);
}


/* =========================
   NUMERO
   ========================= */

.servicio-numero {
    padding-top: 45px;

    color: rgba(185,151,62,0.30);

    font-size: 72px;
    font-weight: 300;

    letter-spacing: -3px;

    transition:
        color 0.5s ease,
        transform 0.5s ease;
}


/* =========================
   CONTENIDO
   ========================= */

.servicio-contenido {
    position: relative;

    padding: 45px 20px 55px 40px;
}

.servicio-tipo {
    color: #b9973e;

    font-size: 10px;
    letter-spacing: 3px;
}

.servicio-contenido h3 {
    max-width: 750px;

    margin: 15px 0 18px;

    color: white;

    font-size: 30px;
    font-weight: 400;

    line-height: 1.2;

    transition: color 0.4s ease;
}

.servicio-contenido p {
    max-width: 650px;

    margin-bottom: 25px;

    color: #888;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   BOTÓN
   ========================= */

.servicio-contenido .ver-alcance {
    padding: 0;

    border: none;
    background: transparent;

    color: #b9973e;

    font-size: 11px;
    letter-spacing: 2px;

    cursor: pointer;

    transition:
        letter-spacing 0.3s ease,
        color 0.3s ease;
}

.servicio-contenido .ver-alcance:hover {
    letter-spacing: 3px;
}


/* =========================
   EFECTO AL PASAR EL CURSOR
   ========================= */

.servicio-item:hover {
    transform: translateX(8px);

    border-color: rgba(185,151,62,0.65);
}

.servicio-item:hover .servicio-numero {
    color: #b9973e;

    transform: translateX(8px);
}

.servicio-item:hover h3 {
    color: #b9973e;
}


/* =========================
   LÍNEA DORADA LATERAL
   ========================= */

.servicio-contenido::before {
    content: "";

    position: absolute;

    left: 0;
    top: 45px;

    width: 2px;
    height: 0;

    background: #c8102e;

    transition: height 0.5s ease;
}

.servicio-item:hover .servicio-contenido::before {
    height: calc(100% - 100px);
}


/* =========================
   ILUMINACIÓN AMBIENTAL
   ========================= */

.servicios::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: 250px;
    right: -350px;

    background: radial-gradient(
        circle,
        rgba(185,151,62,0.07),
        transparent 68%
    );

    filter: blur(20px);

    pointer-events: none;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 800px) {

    .servicios {
        padding: 90px 6%;
    }

    .servicios h2 {
        font-size: 40px;
    }

    .servicio-item {
        grid-template-columns: 90px 1fr;
    }

    .servicio-numero {
        font-size: 48px;
    }

    .servicio-contenido {
        padding-left: 20px;
    }

    .servicio-contenido h3 {
        font-size: 24px;
    }

}


/* =========================
   CELULAR
   ========================= */

@media (max-width: 500px) {

    .servicio-item {
        grid-template-columns: 1fr;
    }

    .servicio-numero {
        padding-top: 30px;
    }

    .servicio-contenido {
        padding: 10px 0 40px;
    }

    .servicio-contenido::before {
        display: none;
    }

}
/* =========================
   RESPALDO PROFESIONAL
   ========================= */

.respaldo-profesional {

    width: 100%;
    padding: 75px 5% 80px;

    background:
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #131212 50%,
            #090909 100%
        );

    box-sizing: border-box;

    text-align: center;
}


/* ENCABEZADO */

.respaldo-titulo {

    max-width: 1000px;
    margin: 0 auto 45px;

}


.respaldo-titulo span {

    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #b9973e;

    margin-bottom: 12px;

}


.respaldo-titulo h3 {

    margin: 0;

    color: #ffffff;

    font-size: 25px;
    font-weight: 600;

    letter-spacing: 1px;

}


.respaldo-titulo p {

    max-width: 720px;

    margin: 18px auto 0;

    color: #bdbdbd;

    font-size: 15px;
    line-height: 1.7;

}


/* CONTENEDOR DE LOGOS */

.respaldo-logos {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 22px;

}


/* TARJETA */

.respaldo-card {

    min-height: 235px;

    padding: 25px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(19, 18, 18, 0.90);

    border: 1px solid rgba(185, 151, 62, 0.55);

    border-radius: 14px;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.respaldo-card:hover {

    transform: translateY(-7px);

    border-color: #b9973e;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(185, 151, 62, 0.12);

}


/* ÁREA DEL LOGO */

.respaldo-logo {

    width: 150px;
    height: 105px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

}


.respaldo-logo img {

    max-width: 140px;
    max-height: 95px;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

}


/* NOMBRE */

.respaldo-card h4 {

    margin: 0 0 8px;

    color: #b9973e;

    font-size: 16px;

    letter-spacing: 1px;

}


/* DESCRIPCIÓN */

.respaldo-card span {

    display: block;

    max-width: 190px;

    color: #d0d0d0;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

    .respaldo-logos {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 700px) {

    .respaldo-profesional {

        padding:
            55px 20px
            60px;

    }


    .respaldo-titulo h3 {

        font-size: 20px;

        line-height: 1.5;

    }


    .respaldo-logos {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

    }

}


@media (max-width: 480px) {

    .respaldo-logos {

        grid-template-columns: 1fr;
        margin-left: -20px;

    }

}

/* =========================
   RESPALDO INSTITUCIONAL
   ========================= */

.respaldo-profesional {
    display: block;
    grid-template-columns: none;
    gap: 0;
    width: 100%;
    margin: 75px 0 0;
    padding: 85px 8%;
    box-sizing: border-box;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(185, 151, 62, 0.06),
            transparent 48%
        ),
        #080808;
    color: #ffffff;
}

.respaldo-encabezado {
    max-width: 720px;
    margin: 0 auto 50px;
}

.respaldo-encabezado span {
    display: block;
    margin-bottom: 16px;
    color: #b9973e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.respaldo-encabezado h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
}

.respaldo-encabezado p {
    max-width: 620px;
    margin: 0;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.7;
}

.respaldo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    max-width: 1250px;
    margin: 0 auto;
}

.respaldo-card {
    grid-column: span 2;
    min-height: 230px;
    padding: 34px 25px;
    border: 1px solid rgba(185, 151, 62, 0.38);
    border-radius: 10px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.035),
        rgba(185, 151, 62, 0.025)
    );
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.respaldo-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.respaldo-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.respaldo-card:hover {
    transform: translateY(-7px);
    border-color: #b9973e;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.respaldo-sigla {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 23px;
    border: 1px solid #b9973e;
    border-radius: 50%;
    color: #b9973e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.respaldo-card h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    text-transform: uppercase;
}

.respaldo-card p {
    margin: 0;
    color: #a9a9a9;
    font-size: 13px;
    line-height: 1.55;
}

/* TABLETAS */

@media (max-width: 900px) {

    .respaldo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .respaldo-card,
    .respaldo-card:nth-child(4),
    .respaldo-card:nth-child(5) {
        grid-column: auto;
    }

    .respaldo-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        justify-self: center;
    }
}

/* CELULARES */

@media (max-width: 600px) {

    .respaldo-profesional {
        padding: 65px 20% 65px 3%;
    }

    .respaldo-grid {
        grid-template-columns: 1fr;
    }

    .respaldo-card,
    .respaldo-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .respaldo-encabezado h2 {
        font-size: 34px;
    }

}
.respaldo-card .respaldo-logo-oficial img {
    width: auto !important;
    height: auto !important;

    max-width: 115px !important;
    max-height: 68px !important;

    object-fit: contain !important;
}

/* =========================================
   PROYECCIÓN CINEMATOGRÁFICA DEL LOGOTIPO
   ========================================= */

.modal-respaldo-contenido {
    overflow: hidden;
}

/* Resplandor detrás del logotipo */

.modal-respaldo-contenido::before {
    content: "";

    position: absolute;
    top: 38%;
    left: 50%;

    width: 420px;
    height: 420px;

    background: radial-gradient(
        circle,
        rgba(185, 151, 62, 0.28) 0%,
        rgba(185, 151, 62, 0.10) 30%,
        transparent 68%
    );

    transform: translate(-50%, -50%) scale(0.15);
    opacity: 0;

    pointer-events: none;
}

/* Proyección del logotipo */

.modal-respaldo.activo .modal-respaldo-contenido img {
    position: relative;
    z-index: 2;

    max-width: 340px;
    max-height: 210px;

    animation:
        proyectarLogo 1.45s
        cubic-bezier(0.18, 0.89, 0.32, 1.28)
        forwards;

    filter:
        drop-shadow(0 0 8px rgba(185, 151, 62, 0.35))
        drop-shadow(0 15px 22px rgba(0, 0, 0, 0.75));
}

.modal-respaldo.activo .modal-respaldo-contenido::before {
    animation: destelloProyeccion 1.1s ease-out forwards;
}

/* Movimiento hacia adelante */

/* PROYECCIÓN FUERTE DEL LOGOTIPO */

@keyframes proyectarLogo {

    0% {
        opacity: 0;

        transform:
            perspective(900px)
            translateZ(-800px)
            translateY(120px)
            rotateX(70deg)
            scale(0.02);

        filter:
            blur(16px)
            brightness(3);
    }

    35% {
        opacity: 1;

        transform:
            perspective(900px)
            translateZ(160px)
            translateY(-15px)
            rotateX(0deg)
            scale(2.1);

        filter:
            blur(0)
            brightness(1.5)
            drop-shadow(
                0 0 35px
                rgba(185, 151, 62, 0.85)
            );
    }

    58% {
        transform:
            perspective(900px)
            translateZ(0)
            scale(0.82);

        filter:
            brightness(1.1)
            drop-shadow(
                0 0 18px
                rgba(185, 151, 62, 0.65)
            );
    }

    76% {
        transform: scale(1.18);
    }

    90% {
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);

        filter:
            drop-shadow(
                0 0 10px
                rgba(185, 151, 62, 0.45)
            )
            drop-shadow(
                0 18px 25px
                rgba(0, 0, 0, 0.80)
            );
    }
}

/* Destello dorado de fondo */

@keyframes destelloProyeccion {

    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.15);
    }

    45% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.18);
    }

    100% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Movimiento de la tarjeta al pulsarla */

.respaldo-card:active {
    transform: translateY(-3px) scale(0.97);
}

/* CELULARES */

@media (max-width: 600px) {

    .modal-respaldo.activo .modal-respaldo-contenido img {
        max-width: 240px;
        max-height: 150px;
    }

    .modal-respaldo-contenido::before {
        width: 310px;
        height: 310px;
    }
}

/* =====================================================
   BOTONES E INFORMACIÓN DE ENTIDADES — AVALOR360
   ===================================================== */

.respaldo-card {
    cursor: default;
}

.boton-entidad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    padding: 10px 15px;
    border: 1px solid rgba(185, 151, 62, 0.68);
    border-radius: 4px;
    background: transparent;
    color: #b9973e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.boton-entidad span {
    color: inherit;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.boton-entidad:hover,
.boton-entidad:focus-visible {
    border-color: #b9973e;
    background: #b9973e;
    color: #080808;
    outline: none;
    transform: translateY(-3px);
}

.boton-entidad:hover span,
.boton-entidad:focus-visible span {
    transform: translateX(4px);
}

.modal-entidad {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.modal-entidad.activo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-entidad-contenido {
    position: relative;
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 55px 48px 45px;
    box-sizing: border-box;
    border: 1px solid rgba(185, 151, 62, 0.72);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(185, 151, 62, 0.13),
            transparent 38%
        ),
        #0b0b0b;
    color: #ffffff;
    text-align: center;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.80),
        0 0 35px rgba(185, 151, 62, 0.10);
    transform: translateY(28px) scale(0.95);
    transition: transform 0.4s ease;
}

.modal-entidad.activo .modal-entidad-contenido {
    transform: translateY(0) scale(1);
}

.cerrar-entidad {
    position: absolute;
    top: 15px;
    right: 19px;
    z-index: 5;
    border: 0;
    background: transparent;
    color: #b9973e;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.cerrar-entidad:hover,
.cerrar-entidad:focus-visible {
    color: #ffffff;
    outline: none;
    transform: rotate(90deg);
}

.proyeccion-entidad {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    margin-bottom: 10px;
    perspective: 900px;
}

.proyeccion-entidad::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    height: 300px;
    background: radial-gradient(
        ellipse,
        rgba(185, 151, 62, 0.38) 0%,
        rgba(185, 151, 62, 0.12) 34%,
        transparent 70%
    );
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
}

.proyeccion-entidad img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    height: auto;
    max-width: 360px;
    max-height: 190px;
    object-fit: contain;
    transform-origin: center;
}

.modal-entidad.activo .proyeccion-entidad img {
    animation: proyeccionInstitucional 1.35s
        cubic-bezier(0.16, 0.82, 0.28, 1.15) both;
}

.modal-entidad.activo .proyeccion-entidad::before {
    animation: luzInstitucional 1.45s ease-out both;
}

@keyframes proyeccionInstitucional {
    0% {
        opacity: 0;
        transform: translateZ(-700px) translateY(90px) scale(0.04);
        filter: blur(14px) brightness(2.5);
    }

    42% {
        opacity: 1;
        transform: translateZ(90px) translateY(-7px) scale(1.55);
        filter:
            blur(0)
            brightness(1.35)
            drop-shadow(0 0 28px rgba(185, 151, 62, 0.82));
    }

    66% {
        transform: translateZ(0) scale(0.86);
    }

    82% {
        transform: scale(1.10);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter:
            drop-shadow(0 0 9px rgba(185, 151, 62, 0.48))
            drop-shadow(0 16px 22px rgba(0, 0, 0, 0.72));
    }
}

@keyframes luzInstitucional {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.12);
    }

    46% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.22);
    }

    100% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-entidad-linea {
    width: 48px;
    height: 1px;
    margin: 0 auto 22px;
    background: #b9973e;
}

.modal-entidad-etiqueta {
    display: block;
    margin-bottom: 14px;
    color: #b9973e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.modal-entidad-contenido h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.25;
}

.modal-entidad-contenido > p {
    max-width: 490px;
    margin: 0 auto;
    color: #c5c5c5;
    font-size: 15px;
    line-height: 1.75;
}

body.modal-abierto {
    overflow: hidden;
}

@media (max-width: 600px) {
    .boton-entidad {
        padding: 10px 12px;
        font-size: 9px;
    }

    .modal-entidad {
        padding: 15px;
    }

    .modal-entidad-contenido {
        padding: 48px 24px 34px;
    }

    .proyeccion-entidad {
        min-height: 155px;
    }

    .proyeccion-entidad::before {
        width: 300px;
        height: 220px;
    }

    .proyeccion-entidad img {
        max-width: 225px;
        max-height: 135px;
    }

    .modal-entidad-contenido h3 {
        font-size: 22px;
    }

    .modal-entidad-contenido > p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal-entidad.activo .proyeccion-entidad img,
    .modal-entidad.activo .proyeccion-entidad::before {
        animation: none;
    }
}
/* =========================================
   CONTADOR +36 CON DESTELLO
   ========================================= */

.numero-experiencia strong {
    color: inherit;
    font: inherit;
    font-weight: 300;
}

.numero-experiencia {
    position: relative;
    z-index: 1;
}

.numero-experiencia::after {
    content: "";

    position: absolute;
    z-index: -1;

    top: 50%;
    left: 50%;

    width: 180px;
    height: 110px;

    background: radial-gradient(
        circle,
        rgba(255, 220, 120, 0.70) 0%,
        rgba(185, 151, 62, 0.28) 35%,
        transparent 72%
    );

    opacity: 0;
    transform:
        translate(-50%, -50%)
        scale(0.15);

    pointer-events: none;
}

.nosotros.visible .numero-experiencia {
    animation:
        aparecerContador 1.6s
        cubic-bezier(0.16, 0.84, 0.32, 1.18)
        0.20s both;
}

.nosotros.visible .numero-experiencia::after {
    animation:
        destelloContador 1.7s
        ease-out
        0.20s both;
}

@keyframes aparecerContador {

    0% {
        opacity: 0;
        transform: scale(0.60);
        filter: blur(15px) brightness(2.5);
    }

    48% {
        opacity: 1;
        transform: scale(1.20);
        filter: blur(0) brightness(1.6);

        text-shadow:
            0 0 12px rgba(255, 220, 120, 0.95),
            0 0 35px rgba(185, 151, 62, 0.80);
    }

    72% {
        transform: scale(0.94);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) brightness(1);

        text-shadow:
            0 0 8px rgba(185, 151, 62, 0.30);
    }
}

@keyframes destelloContador {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.15);
    }

    45% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.25);
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(1.70);
    }
}
/* =========================================
   QUIÉNES SOMOS — DISEÑO AVALOR360
   ========================================= */

.quienes {
    padding: 105px 8%;
    background: #f4f1ea;
    color: #151515;
}

.quienes-contenido {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 90px;

    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.quienes-texto {
    max-width: 680px;
}

.quienes .etiqueta-seccion {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;

    color: #9b171d;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.quienes .etiqueta-seccion span {
    display: block;
    width: 42px;
    height: 1px;
    background: #b9973e;
}

.quienes-texto h2 {
    margin: 0 0 28px;

    color: #171717;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 55px);
    font-weight: 400;
    line-height: 1.1;
}

.quienes-texto h2 strong {
    color: #9b171d;
    font: inherit;
}

.quienes-texto > p {
    max-width: 650px;
    margin: 0 0 35px;

    color: #4e4e4e;

    font-size: 16px;
    line-height: 1.8;
}

.quienes .boton-secundario {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    padding: 15px 20px;

    border: 1px solid #b9973e;
    border-radius: 4px;

    color: #8e6f1f;
    background: transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.quienes .boton-secundario span {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.quienes .boton-secundario:hover {
    background: #b9973e;
    color: #111111;
    transform: translateY(-5px);
}

.quienes .boton-secundario:hover span {
    transform: translateX(5px);
}

/* TARJETA DIRECCIÓN TÉCNICA */

.perfil-tecnico {
    position: relative;

    padding: 48px 42px;

    border-left: 3px solid #b9973e;
    border-radius: 10px;

    background:
        radial-gradient(
            circle at top right,
            rgba(185, 151, 62, 0.12),
            transparent 42%
        ),
        #0b0b0b;

    color: #ffffff;

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.22);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.perfil-tecnico:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.30);
}

.perfil-etiqueta {
    color: #b9973e;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.perfil-tecnico h3 {
    margin: 18px 0 10px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;
    font-weight: 400;
    line-height: 1.12;
}

.perfil-cargo {
    margin: 0;

    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.6;
}

.perfil-linea {
    width: 48px;
    height: 1px;

    margin: 27px 0;

    background: #b9973e;
}

.perfil-experiencia {
    display: block;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;
}

.perfil-credenciales {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 24px;
}

.perfil-credenciales span {
    padding: 8px 11px;

    border: 1px solid rgba(185, 151, 62, 0.60);

    color: #b9973e;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

/* TABLETAS Y CELULARES */

@media (max-width: 850px) {

    .quienes-contenido {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .quienes-imagen {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .quienes {
        padding: 75px 7%;
    }

    .quienes-texto h2 {
        font-size: 36px;
    }

    .perfil-tecnico {
        padding: 38px 28px;
    }

    .perfil-tecnico h3 {
        font-size: 29px;
    }
}
.perfil-respaldo {
    margin: 20px 0 0;

    color: #9f9f9f;

    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.3px;
}
/* =========================================
   FONDO 01 — INMUEBLES URBANOS
   ========================================= */

.fondo-avalor-01 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/inmuebles-urbanos.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* =========================================
   FONDO 05 — INTERÉS CULTURAL
   ========================================= */

.fondo-avalor-05 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/interes-cultural.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================
   FONDO 06 — INMUEBLES ESPECIALES
   ========================================= */

.fondo-avalor-06 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
       url("../images/inmuebles-especiales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================
   FONDO 10 — SEMOVIENTES Y ANIMALES
   ========================================= */

.fondo-avalor-10 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/semovientes-animales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================
   FONDO 13 — INTANGIBLES ESPECIALES
   ========================================= */

.fondo-avalor-13 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/intangibles-especiales-clara.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}/* FONDO 02 — INMUEBLES RURALES */

.fondo-avalor-02 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/inmuebles-rurales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* =========================================
   MODAL 01 — INMUEBLES URBANOS
   ========================================= */

.modal-fondo-01 .modal-contenido {
    background-color: #080808;

    background-image:
    linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.86) 0%,
        rgba(5, 5, 5, 0.70) 52%,
        rgba(5, 5, 5, 0.22) 100%
    ),
    url("../images/inmuebles-urbanos.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.55);
}
/* =========================================
   FONDOS DE LAS VENTANAS VER ALCANCE
   ========================================= */

.modal-fondo-02 {
    --imagen-alcance: url("../images/inmuebles-rurales.png");
}

.modal-fondo-05 {
    --imagen-alcance: url("../images/interes-cultural.png");
}

.modal-fondo-06 {
    --imagen-alcance: url("../images/inmuebles-especiales.png");
}

.modal-fondo-10 {
    --imagen-alcance: url("../images/semovientes-animales.png");
}

.modal-fondo-13 {
    --imagen-alcance:
        url("../images/intangibles-especiales-clara.png");
}


/* ESTILO COMPARTIDO */

.modal-fondo-02 .modal-contenido,
.modal-fondo-05 .modal-contenido,
.modal-fondo-06 .modal-contenido,
.modal-fondo-10 .modal-contenido,
.modal-fondo-13 .modal-contenido {
    background-color: #080808;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.86) 0%,
            rgba(5, 5, 5, 0.70) 52%,
            rgba(5, 5, 5, 0.22) 100%
        ),
        var(--imagen-alcance);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.55);
}
.nombre-director {
    color: #ffffff;
}

.nombre-director span {
    display: block;
    color: #c8102e;
}
/* =========================================
   TARJETA — DIRECCIÓN TÉCNICA
   ========================================= */

.perfil-tecnico {
    box-sizing: border-box;

    border: 1px solid rgba(185, 151, 62, 0.70);
    border-left: 4px solid #c8102e;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.22),
        -5px 0 18px rgba(200, 16, 46, 0.14),
        0 0 16px rgba(185, 151, 62, 0.08);
}
.perfil-experiencia {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.perfil-experiencia strong {
    color: #b9973e;
    font-size: 17px;
    font-weight: 600;
}
/* =========================================
   COBERTURA NACIONAL
   ========================================= */

.cobertura {
    position: relative;
    overflow: hidden;

    padding: 90px 8%;

    background: #f5f3ee;
    color: #111111;
}

.cobertura-contenedor {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;

    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* INFORMACIÓN */

.cobertura-informacion {
    position: relative;
    z-index: 2;
}

.cobertura-etiqueta {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 18px;

    color: #c8102e;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cobertura-etiqueta::after {
    content: "";

    width: 38px;
    height: 1px;

    background: #b9973e;
}

.cobertura-contenedor .cobertura-informacion h2 {
    width: 100%;
    max-width: 100%;

    margin-left: 0;
    margin-right: 0;

    font-size: 27px;
    line-height: 1.1;

    white-space: normal;

    box-sizing: border-box;
    overflow-wrap: break-word;
}

.cobertura-contenedor .cobertura-informacion h2 span {
    display: block;
    width: 100%;

    white-space: normal;
}

.cobertura-informacion h2 span {
    display: block;
    color: #c8102e;
}

.cobertura-intro {
    max-width: 570px;
    margin-bottom: 30px;

    color: #3f3f3f;

    font-size: 15px;
    line-height: 1.75;
}


/* ZONAS */

.cobertura-zonas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

.cobertura-zona {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.cobertura-zona > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    margin-top: 2px;

    border-radius: 50%;

    background: #b9973e;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.cobertura-zona p {
    margin: 0;

    color: #555555;

    font-size: 13px;
    line-height: 1.5;
}

.cobertura-zona strong {
    display: block;

    margin-bottom: 3px;

    color: #151515;
    font-size: 14px;
}


/* MAPA */

.cobertura-mapa {
    position: relative;
    min-height: 430px;
}

.cobertura-mapa img {
    display: block;

    width: 100%;
    max-width: 620px;
    height: auto;

    margin: 0 auto;

    border: none;
    outline: none;

        filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.14));
}


/* TARJETA DEL MAPA */

.cobertura-sello {
    position: absolute;
    right: 0;
    bottom: 18px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    width: 230px;
    padding: 20px;

    border-left: 3px solid #c8102e;
    border-radius: 8px;

    background: rgba(245, 241, 232, 0.94);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.14);
}

.cobertura-sello-icono {
    color: #c8102e;
    font-size: 32px;
    line-height: 1;
}

.cobertura-sello strong {
    color: #111111;

    font-size: 13px;
    line-height: 1.25;
}

.cobertura-sello strong span {
    display: block;
    color: #c8102e;
}

.cobertura-sello p {
    margin: 9px 0 0;

    color: #555555;

    font-size: 12px;
    line-height: 1.5;
}
/* COBERTURA — AJUSTE FINAL MÓVIL */

.cobertura-contenedor .cobertura-informacion {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.cobertura-contenedor .cobertura-informacion h2,
.cobertura-contenedor .cobertura-informacion h2 span {
    width: 100%;
    max-width: 100%;

    font-size: 27px;
    line-height: 1.08;

    white-space: normal;
    overflow-wrap: anywhere;
}

.cobertura-contenedor .cobertura-zonas {
    width: 100%;
    max-width: 100%;

    display: grid;
    grid-template-columns: 1fr;

    gap: 16px;
}

.cobertura-contenedor .cobertura-zona {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.cobertura-contenedor .cobertura-zona p {
    width: auto;
    min-width: 0;
    max-width: 100%;

    overflow-wrap: anywhere;
}


/* =========================================
   DESTELLOS DEL MAPA
   ========================================= */

.punto-mapa {
    position: absolute;
    z-index: 3;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #f4c95d;

    opacity: 0;

    box-shadow:
        0 0 8px rgba(244, 201, 93, 0.95),
        0 0 22px rgba(185, 151, 62, 0.75);

    animation:
        destelloMapa 6s ease-in-out infinite;
}

.punto-mapa::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(185, 151, 62, 0.75);
    border-radius: 50%;

    transform: translate(-50%, -50%) scale(0.2);

    animation:
        ondaMapa 6s ease-out infinite;
}


/* POSICIONES */

.punto-1 {
    top: 46%;
    left: 55%;

    animation-delay: 0s;
}

.punto-1::after {
    animation-delay: 0s;
}

.punto-2 {
    top: 37%;
    left: 47%;

    animation-delay: 1s;
}

.punto-2::after {
    animation-delay: 1s;
}

.punto-3 {
    top: 58%;
    left: 43%;

    animation-delay: 2s;
}

.punto-3::after {
    animation-delay: 2s;
}

.punto-4 {
    top: 24%;
    left: 48%;

    animation-delay: 3s;
}

.punto-4::after {
    animation-delay: 3s;
}

.punto-5 {
    top: 53%;
    left: 62%;

    animation-delay: 4s;
}

.punto-5::after {
    animation-delay: 4s;
}

.punto-6 {
    top: 66%;
    left: 51%;

    animation-delay: 5s;
}

.punto-6::after {
    animation-delay: 5s;
}


/* ANIMACIONES */

@keyframes destelloMapa {
    0%,
    12%,
    100% {
        opacity: 0;
        transform: scale(0.35);
    }

    20% {
        opacity: 1;
        transform: scale(1.25);
    }

    32% {
        opacity: 0.85;
        transform: scale(1);
    }

    46% {
        opacity: 0;
        transform: scale(1.7);
    }
}

@keyframes ondaMapa {
    0%,
    12%,
    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.2);
    }

    22% {
        opacity: 0.9;
    }

    48% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(1.8);
    }
}


/* CELULARES */

@media (max-width: 800px) {

    .cobertura {
        padding: 70px 7%;
    }

    .cobertura-contenedor {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cobertura-zonas {
        grid-template-columns: 1fr;
    }

    .cobertura-mapa {
        min-height: 350px;
    }

    .cobertura-sello {
        position: relative;
        right: auto;
        bottom: auto;

        width: auto;
        max-width: 300px;

        margin: -25px auto 0;
    }
}


/* ACCESIBILIDAD */

@media (prefers-reduced-motion: reduce) {

    .punto-mapa,
    .punto-mapa::after {
        animation: none;
        opacity: 1;
    }
}
/* AJUSTE FINAL TARJETAS DE CLIENTES */

.clientes {
    padding: 65px 8%;
}

.clientes-encabezado {
    margin-bottom: 35px;
}

.clientes-grid {
    max-width: 940px;
    gap: 20px;
}

.cliente-item {
    min-height: 135px;
    padding: 28px 25px 25px;

    border: 1px solid rgba(185, 151, 62, 0.65);
    border-left: 4px solid #c8102e;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(185, 151, 62, 0.15),
            transparent 30%
        ),
        linear-gradient(145deg, #171612, #070707);
}

.cliente-item h3 {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;

    font-size: 22px;
}

.cliente-item h3::before {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border: 1px solid #b9973e;
    border-radius: 50%;

    color: #b9973e;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
}

.cliente-item:nth-child(1) h3::before {
    content: "01";
}

.cliente-item:nth-child(2) h3::before {
    content: "02";
}

.cliente-item:nth-child(3) h3::before {
    content: "03";
}

.cliente-item h3::after {
    display: none;
}

.cliente-item p {
    padding-left: 44px;

    font-size: 14px;
    line-height: 1.6;
}

.cliente-item:hover {
    transform: translateY(-6px);

    border-color: #b9973e;

    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.18),
        0 0 14px rgba(185, 151, 62, 0.12);
}
/* MAYOR IMPACTO Y LEGIBILIDAD */

.clientes h2 {
    font-size: 44px;
}

.clientes-intro {
    color: #333333;
    font-size: 16px;
    line-height: 1.65;
}

.cliente-item h3 {
    color: #d8ad3f;
    font-size: 19px;
    font-weight: 600;
}

.cliente-item p {
    color: #f1f0ec;
    font-size: 15px;
    line-height: 1.65;
}

.cliente-item h3::before {
    width: 36px;
    height: 36px;

    color: #ffffff;
    background: #c8102e;
    border-color: #c8102e;

    font-size: 11px;

    box-shadow: 0 0 12px rgba(200, 16, 46, 0.32);
}
.clientes-intro {
    max-width: 850px;

    margin: 0 auto 35px;

    color: #333333;

    font-size: 19px;
    font-weight: 400;

    line-height: 1.7;
}
/* REDUCIR ESPACIO ENTRE COBERTURA Y CLIENTES */

.cobertura {
    padding-bottom: 30px;
}

.clientes {
    padding-top: 45px;
}
/* =========================
   VOLVER AL INICIO
   ========================= */

html {
    scroll-behavior: smooth;
}

.volver-inicio {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;
    background: #a51616;

    border: 1px solid #b9973e;
    border-radius: 50%;

    font-size: 25px;
    font-weight: bold;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.28),
        0 0 12px rgba(200, 16, 46, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.volver-inicio:hover {
    color: #080808;
    background: #b9973e;

    transform: translateY(-6px);
}

@media (max-width: 600px) {

    .volver-inicio {
        right: 18px;
        bottom: 18px;

        width: 42px;
        height: 42px;
    }

}
/* BOTÓN INICIO HORIZONTAL */

.volver-inicio {
    width: auto;
    height: 44px;

    padding: 0 18px;

    border-radius: 24px;

    font-size: 12px;
    letter-spacing: 1.5px;
}
/* LOGO INTEGRADO COMO FONDO DEL ENCABEZADO */

.encabezado {
    background: #050505;
}

.barra-superior {
    min-height: 135px;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.05) 0%,
            rgba(5, 5, 5, 0.35) 26%,
            rgba(5, 5, 5, 0.92) 48%,
            #050505 100%
        ),
        url("../images/logo.png");

    background-repeat: no-repeat;
    background-position: left center;
    background-size: 370px auto;
}

/* Ocultamos la imagen visible,
   pero conservamos su espacio para el menú */

.logo {
    width: 370px;

    opacity: 0;
    pointer-events: none;
}
/* =========================
   FONDO PANORÁMICO DEL ENCABEZADO
   ========================= */

.barra-superior {
    width: 100%;
    max-width: none;
    min-height: 175px;

    padding: 0 6%;

    box-sizing: border-box;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.08) 38%,
            rgba(0, 0, 0, 0.55) 58%,
            rgba(0, 0, 0, 0.78) 100%
        ),
        url("../images/encabezado-avalor360.png");

    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: cover;

    border-bottom: 1px solid #b9973e;
}

/* La imagen del HTML conserva el espacio,
   pero ya no se muestra encima */

.logo {
    width: 400px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* La línea ya viene integrada en el fondo */

.barra-superior::after {
    display: none;
}

@media (max-width: 1100px) {

    .barra-superior {
        min-height: 160px;

        padding: 0 4%;
    }

    .logo {
        width: 310px;
    }

}

@media (max-width: 850px) {

    .barra-superior {
        min-height: 230px;

        padding: 115px 20px 20px;

        background-position: 25% center;
    }

    .logo {
        display: none;
    }

}
/* TAMAÑO DEFINITIVO DEL ENCABEZADO */

.barra-superior {
    min-height: 120px;

    background-size: 72% auto;
    background-position: left 40%;
}
/* =========================
   ENCABEZADO DEFINITIVO
   ========================= */

.barra-superior {
    width: 100%;
    max-width: none;
    min-height: 135px;

    padding: 0 5%;

    box-sizing: border-box;

    background-color: #050505;
    background-image: url("../images/logo-encabezado.png");
    background-repeat: no-repeat;
    background-position: 35px center;
    background-size: 500px auto;

    border-bottom: 1px solid #b9973e;
}

/* Oculta el logo anterior del HTML */
.logo {
    width: 500px;
    height: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.barra-superior::after {
    display: none;
}
.barra-superior {
    min-height: 145px;

    background-size: 570px auto;
    background-position: 55px center;
}

.logo {
    width: 570px;
}
/* FONDO 03 — RECURSOS NATURALES Y SUELOS DE PROTECCIÓN */

.fondo-avalor-03 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/servicio-recursos-naturales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* FONDO 04 — OBRAS DE INFRAESTRUCTURA */

.fondo-avalor-04 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/servicio-infraestructura.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* FONDO 07 — MAQUINARIA FIJA, EQUIPOS Y MAQUINARIA MÓVIL */

.fondo-avalor-07 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/servicio-maquinaria.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* FONDO 11 — ACTIVOS OPERACIONALES Y ESTABLECIMIENTOS DE COMERCIO */

.fondo-avalor-11 {
    background-color: #050505;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 48%,
            rgba(5, 5, 5, 0.42) 100%
        ),
        url("../images/servicio-activos-operacionales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* =========================================================
   COBERTURA GLOBAL — NUEVA VERSIÓN
   PASO 2
   ========================================================= */

.cobertura-global {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: 720px;

    background:
        radial-gradient(
            circle at 72% 50%,
            rgba(185, 151, 62, 0.10) 0%,
            rgba(5, 5, 5, 0) 34%
        ),
        #050505;
}


/* =========================================================
   MAPA MUNDIAL DE FONDO
   ========================================================= */

.mapa-mundial-fondo {
    position: absolute;
    inset: 0;

    z-index: 0;

    opacity: 0.28;

    background-image:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.98) 0%,
            rgba(5,5,5,0.88) 30%,
            rgba(5,5,5,0.35) 65%,
            rgba(5,5,5,0.55) 100%
        ),
        url("../images/mapa-mundo-global.png");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.cobertura-global .cobertura-contenedor {
    position: relative;
    z-index: 5;

    min-height: 720px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    gap: 50px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.cobertura-global .cobertura-informacion {
    position: relative;
    z-index: 10;
}


.cobertura-global .cobertura-etiqueta {
    color: #c8102e;
    letter-spacing: 4px;
}


.cobertura-global .cobertura-informacion h2 {
    color: #ffffff;
}


.cobertura-global .cobertura-informacion h2 span {
    color: #c8102e;
    display: block;
}


.cobertura-global .cobertura-intro {
    color: rgba(255,255,255,0.82);
}


.cobertura-global .cobertura-zona p {
    color: rgba(255,255,255,0.78);
}


.cobertura-global .cobertura-zona strong {
    color: #ffffff;
}


/* =========================================================
   MAPA COLOMBIA
   ========================================================= */

.cobertura-global .cobertura-mapa {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 6;
}


.mapa-colombia-animado {
    position: relative;

    width: min(520px, 90%);
    aspect-ratio: 5 / 6;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
}


/* IMAGEN DE COLOMBIA */

.imagen-colombia {
    position: relative;

    width: 100%;
    height: auto;

    display: block;

    z-index: 5;

    filter:
        drop-shadow(0 0 8px rgba(185,151,62,0.65))
        drop-shadow(0 0 24px rgba(185,151,62,0.20));
}


/* =========================================================
   HALO DETRÁS DE COLOMBIA
   ========================================================= */

.halo-colombia {
    position: absolute;

    width: 72%;
    aspect-ratio: 1;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(185,151,62,0.23) 0%,
            rgba(185,151,62,0.10) 32%,
            rgba(185,151,62,0.03) 55%,
            transparent 72%
        );

    filter: blur(8px);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   RED INTERNA COLOMBIA
   ========================================================= */

.red-colombia {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 6;

    pointer-events: none;
}


.ruta-colombia {
    fill: none;

    stroke: #d8ae42;
    stroke-width: 1.4;

    opacity: 0.70;

    filter: drop-shadow(0 0 4px rgba(216,174,66,0.85));
}


/* =========================================================
   CONEXIONES INTERNACIONALES
   ========================================================= */

.red-internacional {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;
}


.lineas-internacionales {
    position: absolute;

    width: 100%;
    height: 100%;

    inset: 0;
}


.ruta-global {
    fill: none;

    stroke: #d8ae42;
    stroke-width: 1.5;

    opacity: 0.45;

    filter: drop-shadow(0 0 5px rgba(216,174,66,0.75));
}


/* =========================================================
   PUNTOS INTERNACIONALES
   ========================================================= */

.punto-global {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff3b0;

    box-shadow:
        0 0 5px #ffffff,
        0 0 12px #d8ae42,
        0 0 25px rgba(216,174,66,0.85);
}


/* POSICIONES APROXIMADAS */

.punto-norteamerica {
    left: 29%;
    top: 27%;
}

.punto-centroamerica {
    left: 39%;
    top: 43%;
}

.punto-europa {
    left: 78%;
    top: 29%;
}

.punto-suramerica {
    left: 57%;
    top: 82%;
}


/* =========================================================
   SELLO INTERNACIONAL
   ========================================================= */

.cobertura-global .cobertura-sello {
    position: absolute;

    right: 0;
    bottom: 35px;

    z-index: 15;

    background: rgba(8,8,8,0.90);

    border-left: 3px solid #c8102e;
    border-top: 1px solid rgba(185,151,62,0.35);
    border-right: 1px solid rgba(185,151,62,0.20);
    border-bottom: 1px solid rgba(185,151,62,0.20);

    backdrop-filter: blur(10px);
}


.cobertura-global .cobertura-sello strong {
    color: #ffffff;
}


.cobertura-global .cobertura-sello strong span {
    color: #b9973e;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .cobertura-global .cobertura-contenedor {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cobertura-global .cobertura-mapa {
        min-height: 520px;
    }

    .mapa-colombia-animado {
        width: min(440px, 90%);
    }

    .red-internacional {
        opacity: 0.55;
    }

}
/* =========================================================
   COBERTURA GLOBAL — ANIMACIÓN DE ENTRADA
   ========================================================= */

/* ---------- MUNDO ---------- */

.cobertura-global .mapa-mundial-fondo {
    opacity: 0;
    transform: scale(1.06);

    transition:
        opacity 1.4s ease,
        transform 2.2s cubic-bezier(.22,.61,.36,1);
}


/* ---------- INFORMACIÓN ---------- */

.cobertura-global .cobertura-informacion {
    opacity: 0;
    transform: translateX(-35px);

    transition:
        opacity 1s ease 0.35s,
        transform 1s ease 0.35s;
}


/* ---------- COLOMBIA ---------- */

.cobertura-global .mapa-colombia-animado {
    opacity: 0;

    /*
       Comienza pequeña y desplazada hacia la
       ubicación visual de Colombia en el mapa mundial.
    */

    transform:
        translate(-230px, 95px)
        scale(0.12);

    transform-origin: center center;

    transition:
        opacity 0.5s ease 0.65s,
        transform 1.8s cubic-bezier(.16,.84,.32,1) 0.75s;
}


/* ---------- HALO ---------- */

.cobertura-global .halo-colombia {
    opacity: 0;
    transform:
        translate(-50%, -50%)
        scale(0.3);

    transition:
        opacity 1.2s ease 2.15s,
        transform 1.4s ease 2.15s;
}


/* ---------- PUNTOS DE COLOMBIA ---------- */

.cobertura-global .punto-mapa {
    opacity: 0;
    transform: scale(0);
}


/* ---------- RUTAS INTERNAS ---------- */

.cobertura-global .ruta-colombia {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;

    opacity: 0;

    transition:
        stroke-dashoffset 1.5s ease 2.5s,
        opacity 0.5s ease 2.5s;
}


/* ---------- CONEXIONES MUNDIALES ---------- */

.cobertura-global .ruta-global {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;

    opacity: 0;

    transition:
        stroke-dashoffset 2s ease,
        opacity 0.5s ease;
}


.cobertura-global .punto-global {
    opacity: 0;
    transform: scale(0);
}


/* =========================================================
   CUANDO LA SECCIÓN ENTRA EN PANTALLA
   ========================================================= */

.cobertura-global.activa .mapa-mundial-fondo {
    opacity: 0.28;
    transform: scale(1);
}


.cobertura-global.activa .cobertura-informacion {
    opacity: 1;
    transform: translateX(0);
}


/* COLOMBIA VIAJA Y CRECE */

.cobertura-global.activa .mapa-colombia-animado {
    opacity: 1;
    transform:
        translate(0, 0)
        scale(1);
}


/* HALO */

.cobertura-global.activa .halo-colombia {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* =========================================================
   ENCENDIDO PROGRESIVO DE PUNTOS
   ========================================================= */

.cobertura-global.activa .punto-mapa {
    animation: encenderPunto 0.65s ease forwards;
}


.cobertura-global.activa .punto-1 {
    animation-delay: 2.25s;
}

.cobertura-global.activa .punto-2 {
    animation-delay: 2.45s;
}

.cobertura-global.activa .punto-3 {
    animation-delay: 2.65s;
}

.cobertura-global.activa .punto-4 {
    animation-delay: 2.85s;
}

.cobertura-global.activa .punto-5 {
    animation-delay: 3.05s;
}

.cobertura-global.activa .punto-6 {
    animation-delay: 3.25s;
}


@keyframes encenderPunto {

    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(1.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   DIBUJAR RED DE COLOMBIA
   ========================================================= */

.cobertura-global.activa .ruta-colombia {
    stroke-dashoffset: 0;
    opacity: 0.8;
}


/* =========================================================
   RAYOS HACIA EL MUNDO
   ========================================================= */

.cobertura-global.activa .ruta-global {
    stroke-dashoffset: 0;
    opacity: 0.55;
}


.cobertura-global.activa .ruta-global-1 {
    transition-delay: 3.4s;
}

.cobertura-global.activa .ruta-global-2 {
    transition-delay: 3.65s;
}

.cobertura-global.activa .ruta-global-3 {
    transition-delay: 3.9s;
}

.cobertura-global.activa .ruta-global-4 {
    transition-delay: 4.15s;
}


/* PUNTOS DEL MUNDO */

.cobertura-global.activa .punto-global {
    animation:
        aparecerDestino 0.6s ease forwards,
        pulsoGlobal 2.4s ease-in-out infinite;
}


.cobertura-global.activa .punto-norteamerica {
    animation-delay: 4.0s, 4.6s;
}

.cobertura-global.activa .punto-centroamerica {
    animation-delay: 4.2s, 4.8s;
}

.cobertura-global.activa .punto-europa {
    animation-delay: 4.4s, 5s;
}

.cobertura-global.activa .punto-suramerica {
    animation-delay: 4.6s, 5.2s;
}


@keyframes aparecerDestino {

    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes pulsoGlobal {

    0%,
    100% {
        box-shadow:
            0 0 5px #ffffff,
            0 0 12px #d8ae42,
            0 0 20px rgba(216,174,66,0.55);
    }

    50% {
        box-shadow:
            0 0 8px #ffffff,
            0 0 22px #d8ae42,
            0 0 42px rgba(216,174,66,0.9);
    }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cobertura-global *,
    .cobertura-global *::before,
    .cobertura-global *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   COBERTURA GLOBAL — COMPOSICIÓN DEFINITIVA
   MAPA IZQUIERDA / INFORMACIÓN DERECHA
   ========================================================= */

.cobertura-global {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: #050505;
    isolation: isolate;
}


/* =========================================================
   MAPA MUNDIAL
   ========================================================= */

.cobertura-global .mapa-mundial-fondo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.05) 0%,
            rgba(5,5,5,0.08) 42%,
            rgba(5,5,5,0.45) 66%,
            rgba(5,5,5,0.96) 100%
        ),
        url("../images/mapa-mundo-global.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 1;

    transform: none;

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   ESCENA DEL MAPA
   ========================================================= */

.cobertura-global .escena-global {
    position: absolute;

    left: 0;
    top: 0;

    width: 66%;
    height: 100%;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   INFORMACIÓN — DERECHA
   ========================================================= */

.cobertura-global .cobertura-contenedor {
    position: relative;

    z-index: 20;

    width: 92%;
    max-width: 1450px;
    min-height: 720px;

    margin: 0 auto;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.cobertura-global .cobertura-informacion {
    position: relative;

    width: 43%;
    max-width: 620px;

    margin-left: auto;

    padding: 55px 0 55px 55px;

    opacity: 1;
    transform: none;

    z-index: 25;
}


/* OSCURECIDO DETRÁS DEL TEXTO */

.cobertura-global .cobertura-informacion::before {
    content: "";

    position: absolute;

    top: -80px;
    bottom: -80px;

    left: -90px;
    right: -100px;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0) 0%,
            rgba(5,5,5,0.72) 20%,
            rgba(5,5,5,0.93) 52%,
            rgba(5,5,5,0.98) 100%
        );

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   TÍTULOS
   ========================================================= */

.cobertura-global .cobertura-etiqueta {
    display: block;

    color: #c8102e;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.cobertura-global .cobertura-informacion h2 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 3.2vw, 58px);
    line-height: 1.04;
}


.cobertura-global .cobertura-informacion h2 span {
    display: block;
    color: #c8102e;
}


.cobertura-global .cobertura-intro {
    max-width: 570px;

    color: rgba(255,255,255,0.82);

    line-height: 1.7;

    margin-bottom: 28px;
}


/* =========================================================
   ZONAS
   ========================================================= */

.cobertura-global .cobertura-zonas {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px 28px;
}


.cobertura-global .cobertura-zona {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}


.cobertura-global .cobertura-zona > span {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b9973e;

    color: white;

    font-size: 13px;

    box-shadow:
        0 0 10px rgba(185,151,62,.55);
}


.cobertura-global .cobertura-zona p {
    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 13px;
    line-height: 1.5;
}


.cobertura-global .cobertura-zona strong {
    display: block;

    color: #ffffff;

    margin-bottom: 3px;
}


/* =========================================================
   COLOMBIA — IMPORTANTE
   ========================================================= */

.cobertura-global .colombia-expansion {
    position: absolute;

    /*
       DESTINO DEL MAPA AMPLIADO.
       Ya NO puede ocupar toda la pantalla.
    */

    left: 27%;
    top: 23%;

    width: 310px;
    height: auto;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(.08);

    transform-origin: center;

    z-index: 10;
}


.cobertura-global .colombia-expansion .imagen-colombia {
    position: relative;

    width: 100% !important;
    max-width: 310px !important;
    height: auto !important;

    display: block;

    z-index: 3;

    filter:
        drop-shadow(0 0 7px rgba(216,174,66,.85))
        drop-shadow(0 0 22px rgba(185,151,62,.35));
}


/* =========================================================
   ORIGEN REAL DE COLOMBIA
   ========================================================= */

.cobertura-global .origen-colombia {
    position: absolute;

    /*
       Este punto lo ajustaremos visualmente sobre
       Colombia en el mapa mundial.
    */

    left: 30%;
    top: 53%;

    width: 12px;
    height: 12px;

    z-index: 8;
}


.nucleo-colombia {
    position: absolute;

    width: 10px;
    height: 10px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #fff6c8;

    box-shadow:
        0 0 8px #ffffff,
        0 0 18px #d8ae42,
        0 0 35px #d8ae42;
}


/* =========================================================
   EVITAR QUE LOS RAYOS TAPEN EL TEXTO
   ========================================================= */

.cobertura-global .rayos-globales {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    z-index: 3;
}


/* =========================================================
   SELLO
   ========================================================= */

.cobertura-global .cobertura-sello {
    position: relative;

    right: auto;
    bottom: auto;

    margin-top: 28px;

    max-width: 360px;

    background: rgba(5,5,5,.82);

    border: 1px solid rgba(185,151,62,.45);
    border-left: 3px solid #c8102e;

    padding: 16px 18px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .cobertura-global {
        min-height: auto;
    }

    .cobertura-global .cobertura-contenedor {
        min-height: auto;

        padding: 520px 0 60px;

        display: block;
    }

    .cobertura-global .cobertura-informacion {
        width: 100%;
        max-width: none;

        padding: 35px 20px;

        box-sizing: border-box;
    }

    .cobertura-global .escena-global {
        width: 100%;
        height: 520px;
    }

    .cobertura-global .colombia-expansion {
        width: 230px;
    }

    .cobertura-global .colombia-expansion .imagen-colombia {
        max-width: 230px !important;
    }

}
/* =========================================
   CORRECCIÓN RAYOS GLOBALES
   ========================================= */

.cobertura-global .rayos-globales path,
.cobertura-global .rayo-global {
    fill: none !important;

    stroke: #d8ae42;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: 0;
}
/* =========================================================
   COLOMBIA — NACIMIENTO DESDE SUDAMÉRICA
   ========================================================= */

/* Punto luminoso ubicado sobre Colombia */

.cobertura-global .origen-colombia {
    left: 34.2%;
    top: 55.5%;

    width: 14px;
    height: 14px;

    opacity: 0;

    transform: scale(0);

    transition:
        opacity .4s ease .7s,
        transform .6s ease .7s;
}


/* Cuando llegamos a Cobertura */

.cobertura-global.activa .origen-colombia {
    opacity: 1;
    transform: scale(1);
}


/* Ondas alrededor del punto */

.cobertura-global .onda-colombia {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 18px;

    border: 1px solid rgba(216,174,66,.9);
    border-radius: 50%;

    transform: translate(-50%, -50%) scale(.2);

    opacity: 0;
}


.cobertura-global.activa .onda-colombia {
    animation: ondaExpansion 2.2s ease-out infinite;
}


.cobertura-global.activa .onda-2 {
    animation-delay: .55s;
}


.cobertura-global.activa .onda-3 {
    animation-delay: 1.1s;
}


@keyframes ondaExpansion {

    0% {
        opacity: .9;
        transform:
            translate(-50%, -50%)
            scale(.3);
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(5);
    }

}


/* =========================================================
   MAPA DETALLADO DE COLOMBIA
   ========================================================= */

.cobertura-global .colombia-expansion {

    /*
       IMPORTANTE:
       comienza visualmente sobre Colombia.
    */

    left: 34.2%;
    top: 55.5%;

    width: 310px;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(.04);

    transform-origin: center center;

    transition:
        opacity .35s ease 1.15s,
        left 1.7s cubic-bezier(.16,.84,.32,1) 1.15s,
        top 1.7s cubic-bezier(.16,.84,.32,1) 1.15s,
        transform 1.7s cubic-bezier(.16,.84,.32,1) 1.15s;
}


/*
   DESTINO:
   crece hacia centro-izquierda,
   SIN INVADIR EL TEXTO.
*/

.cobertura-global.activa .colombia-expansion {

    left: 55%;
    top: 51%;

    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* Halo que aparece al terminar de crecer */

.cobertura-global .colombia-expansion .halo-colombia {
    opacity: 0;

    transition:
        opacity 1s ease 2.6s;
}


.cobertura-global.activa .colombia-expansion .halo-colombia {
    opacity: 1;
}
/* =========================================================
   AJUSTE FINO — ORIGEN Y DESTINO COLOMBIA
   ========================================================= */

/* Punto de nacimiento: sobre Colombia real */

.cobertura-global .origen-colombia {
    left: 42%;
    top: 48%;
}


/* Colombia nace exactamente desde ese mismo punto */

.cobertura-global .colombia-expansion {
    left: 42%;
    top: 48%;

    width: 340px;
}


/* Colombia termina grande en el centro-izquierda */

.cobertura-global.activa .colombia-expansion {
    left: 61%;
    top: 49%;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* Seguridad: tamaño máximo */

.cobertura-global .colombia-expansion .imagen-colombia {
    width: 100% !important;
    max-width: 340px !important;
    height: auto !important;
}
/* =========================================
   AJUSTE FINAL DEL PUNTO DE ORIGEN
   ========================================= */

.cobertura-global .origen-colombia {
    left: 39%;
    top: 50%;
}
/* =========================================================
   COBERTURA — SECUENCIA CINEMATOGRÁFICA
   ========================================================= */

/* COLOMBIA: crecimiento más lento */

.cobertura-global .colombia-expansion {
    transition:
        opacity .8s ease 1.8s,
        left 3.2s cubic-bezier(.16,.84,.32,1) 1.8s,
        top 3.2s cubic-bezier(.16,.84,.32,1) 1.8s,
        transform 3.2s cubic-bezier(.16,.84,.32,1) 1.8s;
}


/* =========================================================
   12 DESTELLOS DENTRO DE COLOMBIA
   ========================================================= */

.cobertura-global .punto-colombia {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #fff8cf;

    opacity: 0;

    transform: scale(0);

    z-index: 15;

    box-shadow:
        0 0 5px #ffffff,
        0 0 12px #d8ae42,
        0 0 24px rgba(216,174,66,.9);
}


/* Posiciones dentro del mapa */

.cobertura-global .pc-1  { left: 52%; top: 12%; }
.cobertura-global .pc-2  { left: 37%; top: 23%; }
.cobertura-global .pc-3  { left: 61%; top: 28%; }
.cobertura-global .pc-4  { left: 30%; top: 39%; }
.cobertura-global .pc-5  { left: 50%; top: 43%; }
.cobertura-global .pc-6  { left: 69%; top: 47%; }

.cobertura-global .pc-7  { left: 24%; top: 56%; }
.cobertura-global .pc-8  { left: 44%; top: 59%; }
.cobertura-global .pc-9  { left: 63%; top: 62%; }

.cobertura-global .pc-10 { left: 35%; top: 72%; }
.cobertura-global .pc-11 { left: 56%; top: 76%; }
.cobertura-global .pc-12 { left: 48%; top: 88%; }


/* Encendido progresivo */

.cobertura-global.activa .punto-colombia {
    animation:
        nacimientoDestello .7s ease forwards,
        respiracionDestello 2.4s ease-in-out infinite;
}


.cobertura-global.activa .pc-1  { animation-delay: 4.8s, 5.5s; }
.cobertura-global.activa .pc-2  { animation-delay: 5.0s, 5.7s; }
.cobertura-global.activa .pc-3  { animation-delay: 5.2s, 5.9s; }
.cobertura-global.activa .pc-4  { animation-delay: 5.4s, 6.1s; }
.cobertura-global.activa .pc-5  { animation-delay: 5.6s, 6.3s; }
.cobertura-global.activa .pc-6  { animation-delay: 5.8s, 6.5s; }

.cobertura-global.activa .pc-7  { animation-delay: 6.0s, 6.7s; }
.cobertura-global.activa .pc-8  { animation-delay: 6.2s, 6.9s; }
.cobertura-global.activa .pc-9  { animation-delay: 6.4s, 7.1s; }
.cobertura-global.activa .pc-10 { animation-delay: 6.6s, 7.3s; }
.cobertura-global.activa .pc-11 { animation-delay: 6.8s, 7.5s; }
.cobertura-global.activa .pc-12 { animation-delay: 7.0s, 7.7s; }


@keyframes nacimientoDestello {

    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(2.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes respiracionDestello {

    0%,
    100% {
        box-shadow:
            0 0 4px #ffffff,
            0 0 10px #d8ae42,
            0 0 20px rgba(216,174,66,.65);
    }

    50% {
        box-shadow:
            0 0 8px #ffffff,
            0 0 20px #d8ae42,
            0 0 40px rgba(216,174,66,1);
    }
}
/* =========================================================
   COBERTURA — AJUSTE DE LUZ + INICIO MÁS RÁPIDO
   ========================================================= */

/* Mundo más visible y luminoso */

.cobertura-global .mapa-mundial-fondo {
    opacity: 1;

    filter:
        brightness(1.32)
        contrast(1.08)
        saturate(1.18);

    transition:
        opacity .8s ease,
        filter 1.2s ease;
}


/* Resplandor general sobre la zona del mapa */

.cobertura-global .escena-global::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 40% 50%,
            rgba(255, 196, 55, .18) 0%,
            rgba(216, 174, 66, .10) 20%,
            rgba(216, 174, 66, .035) 42%,
            transparent 66%
        );

    pointer-events: none;
    z-index: 1;
}


/* Punto de origen más luminoso */

.cobertura-global .nucleo-colombia {
    background: #fffbe0;

    box-shadow:
        0 0 7px #ffffff,
        0 0 16px #ffd75a,
        0 0 32px #d8ae42,
        0 0 55px rgba(216,174,66,.85);
}


/* Colombia empieza antes, pero mantiene recorrido lento */

.cobertura-global .colombia-expansion {
    transition:
        opacity .55s ease .75s,
        left 3.2s cubic-bezier(.16,.84,.32,1) .75s,
        top 3.2s cubic-bezier(.16,.84,.32,1) .75s,
        transform 3.2s cubic-bezier(.16,.84,.32,1) .75s;
}


/* Colombia grande más luminosa */

.cobertura-global .colombia-expansion .imagen-colombia {
    filter:
        brightness(1.18)
        drop-shadow(0 0 7px rgba(255,220,100,.95))
        drop-shadow(0 0 18px rgba(216,174,66,.72))
        drop-shadow(0 0 38px rgba(216,174,66,.40));
}


/* Halo más visible al terminar de crecer */

.cobertura-global .colombia-expansion .halo-colombia {
    background:
        radial-gradient(
            circle,
            rgba(255,210,80,.30) 0%,
            rgba(216,174,66,.18) 30%,
            rgba(216,174,66,.07) 52%,
            transparent 72%
        );

    filter: blur(10px);
}
/* =========================================================
   COBERTURA — CTA WHATSAPP
   ========================================================= */

.cobertura-global .cobertura-sello-cta {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    max-width: 390px;
    padding: 18px;

    border: 1px solid rgba(216, 174, 66, .70);
    border-left: 3px solid #c8102e;
    border-radius: 8px;

    background: rgba(5, 5, 5, .88);

    box-shadow:
        0 0 18px rgba(185, 151, 62, .10);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.cobertura-global .cobertura-sello-cta:hover {
    transform: translateY(-4px);

    border-color: rgba(216, 174, 66, .95);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35),
        0 0 24px rgba(185, 151, 62, .20);
}


/* ICONO SUPERIOR */

.cobertura-global .cobertura-sello-cta .cobertura-sello-icono {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #e3062c;

    border: 1px solid #e3062c;
    border-radius: 50%;

    font-size: 18px;

    box-shadow:
        0 0 12px rgba(227, 6, 44, .30);
}


.cobertura-global .sello-contenido {
    flex: 1;
}


/* TÍTULO */

.cobertura-global .sello-contenido > strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.15;
}


.cobertura-global .sello-contenido > strong > span {
    display: block;

    color: #d8ae42;
}


/* TEXTO */

.cobertura-global .sello-contenido > p {
    margin: 9px 0 14px;

    color: rgba(255, 255, 255, .55);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   BOTÓN DORADO
   ========================================================= */

.cobertura-global .boton-cobertura-whatsapp {
    position: relative;

    width: 100%;
    min-height: 52px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 7px 8px 7px 13px;

    text-decoration: none;

    border: 1px solid #f0d477;
    border-radius: 30px;

    background:
        linear-gradient(
            110deg,
            #b9973e 0%,
            #e1bc55 38%,
            #f0cf6b 55%,
            #b9973e 100%
        );

    color: #080808;

    overflow: hidden;

    box-shadow:
        0 0 10px rgba(216, 174, 66, .35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* DESTELLO QUE RECORRE EL BOTÓN */

.cobertura-global .boton-cobertura-whatsapp::before {
    content: "";

    position: absolute;

    top: -40%;
    left: -35%;

    width: 22%;
    height: 180%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .75),
            transparent
        );

    transform: rotate(20deg);

    transition: left .7s ease;

    pointer-events: none;
}


.cobertura-global .boton-cobertura-whatsapp:hover::before {
    left: 120%;
}


.cobertura-global .boton-cobertura-whatsapp:hover {
    transform: translateY(-2px) scale(1.015);

    box-shadow:
        0 0 12px rgba(255, 220, 100, .60),
        0 0 28px rgba(216, 174, 66, .42);
}


/* ICONO CHAT */

.cobertura-global .boton-chat {
    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #090909;
    border-radius: 50%;

    font-size: 17px;
    font-weight: bold;
}


/* TEXTOS DEL BOTÓN */

.cobertura-global .boton-textos {
    flex: 1;

    display: flex;
    flex-direction: column;

    line-height: 1;
}


.cobertura-global .boton-textos strong {
    color: #080808;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .2px;
}


.cobertura-global .boton-textos small {
    margin-top: 5px;

    color: #151515;

    font-size: 8px;

    letter-spacing: 2px;
}


/* FLECHA */

.cobertura-global .boton-flecha {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #080808;

    color: #d8ae42;

    font-size: 23px;

    transition:
        transform .3s ease,
        color .3s ease;
}


.cobertura-global .boton-cobertura-whatsapp:hover .boton-flecha {
    transform: translateX(3px);

    color: #ffffff;
}
/* =========================================================
   AJUSTE FINAL TARJETA COBERTURA INTERNACIONAL
   ========================================================= */

.cobertura-global .cobertura-sello.cobertura-sello-cta {
    width: 330px;
    max-width: 330px;

    margin-top: 28px;

    padding: 18px 20px;

    box-sizing: border-box;

    background: rgba(5, 5, 5, .88);

    border: 1px solid rgba(185, 151, 62, .65);
    border-left: 3px solid #c8102e;
    border-radius: 8px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.30),
        0 0 18px rgba(185,151,62,.10);
}


/* BOTÓN MÁS ANCHO Y LEGIBLE */

.cobertura-global .boton-cobertura-whatsapp {
    width: 100%;

    min-height: 58px;

    padding: 8px 9px 8px 15px;

    gap: 12px;

    border-radius: 32px;
}


/* Evita que HABLA CON NOSOTROS se parta */

.cobertura-global .boton-textos strong {
    font-size: 12px;

    white-space: nowrap;

    letter-spacing: .3px;
}


/* HAZ CLIC AQUÍ */

.cobertura-global .boton-textos small {
    font-size: 8px;

    letter-spacing: 2.2px;

    white-space: nowrap;
}


/* Flecha */

.cobertura-global .boton-flecha {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;
}
/* =========================================================
   ICONO DOBLE DE CONVERSACIÓN
   ========================================================= */

.cobertura-global .boton-chat {
    position: relative;

    flex: 0 0 38px;
    width: 38px;
    height: 30px;

    border: none;
    border-radius: 0;

    display: block;
}


/* BURBUJA PRINCIPAL */

.cobertura-global .burbuja-chat {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;

    box-sizing: border-box;
}


.cobertura-global .burbuja-1 {
    left: 0;
    top: 1px;

    width: 27px;
    height: 21px;

    border: 2px solid #080808;
    border-radius: 50%;

    z-index: 2;
}


/* COLITA BURBUJA PRINCIPAL */

.cobertura-global .burbuja-1::after {
    content: "";

    position: absolute;

    left: 4px;
    bottom: -5px;

    width: 7px;
    height: 7px;

    border-left: 2px solid #080808;
    border-bottom: 2px solid #080808;

    background: #d8ae42;

    transform: skew(-25deg) rotate(-18deg);
}


/* SEGUNDA BURBUJA */

.cobertura-global .burbuja-2 {
    right: 0;
    bottom: 0;

    width: 21px;
    height: 17px;

    border-radius: 50%;

    background: #080808;

    z-index: 1;
}


/* COLITA SEGUNDA BURBUJA */

.cobertura-global .burbuja-2::after {
    content: "";

    position: absolute;

    right: 2px;
    bottom: -3px;

    width: 6px;
    height: 6px;

    background: #080808;

    transform: rotate(35deg);
}


/* PUNTICOS */

.cobertura-global .burbuja-chat i {
    display: block;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #080808;
}


.cobertura-global .burbuja-2 i {
    width: 2px;
    height: 2px;

    background: #d8ae42;
}
/* =========================================================
   DESTELLOS DINÁMICOS — TARJETA COBERTURA
   ========================================================= */

.cobertura-global .cobertura-sello-cta::before,
.cobertura-global .cobertura-sello-cta::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #fff9d7;

    pointer-events: none;

    z-index: 30;

    box-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffd65a,
        0 0 18px #d8ae42,
        0 0 30px rgba(216,174,66,.85);

    animation: destelloTarjeta 3.2s ease-in-out infinite;
}


/* DESTELLO SUPERIOR */

.cobertura-global .cobertura-sello-cta::before {
    top: -3px;
    left: 67%;
}


/* DESTELLO INFERIOR / LATERAL */

.cobertura-global .cobertura-sello-cta::after {
    right: -3px;
    top: 48%;

    animation-delay: 1.35s;
}


@keyframes destelloTarjeta {

    0%,
    70%,
    100% {
        opacity: .15;

        transform: scale(.45);

        box-shadow:
            0 0 3px rgba(255,255,255,.3),
            0 0 7px rgba(216,174,66,.25);
    }

    78% {
        opacity: 1;

        transform: scale(2.4);

        box-shadow:
            0 0 5px #ffffff,
            0 0 12px #fff0a0,
            0 0 24px #d8ae42,
            0 0 42px rgba(216,174,66,.95);
    }

    86% {
        opacity: .65;

        transform: scale(1.1);
    }
}
/* =========================================================
   AJUSTE — DESTELLOS DE COLOMBIA MÁS RÁPIDOS
   ========================================================= */

/*
   Empiezan mientras Colombia todavía está creciendo.
   Mantienen el encendido progresivo.
*/

.cobertura-global.activa .pc-1  { animation-delay: 1.40s, 2.10s; }
.cobertura-global.activa .pc-2  { animation-delay: 1.55s, 2.25s; }
.cobertura-global.activa .pc-3  { animation-delay: 1.70s, 2.40s; }
.cobertura-global.activa .pc-4  { animation-delay: 1.85s, 2.55s; }

.cobertura-global.activa .pc-5  { animation-delay: 2.00s, 2.70s; }
.cobertura-global.activa .pc-6  { animation-delay: 2.15s, 2.85s; }
.cobertura-global.activa .pc-7  { animation-delay: 2.30s, 3.00s; }
.cobertura-global.activa .pc-8  { animation-delay: 2.45s, 3.15s; }

.cobertura-global.activa .pc-9  { animation-delay: 2.60s, 3.30s; }
.cobertura-global.activa .pc-10 { animation-delay: 2.75s, 3.45s; }
.cobertura-global.activa .pc-11 { animation-delay: 2.90s, 3.60s; }
.cobertura-global.activa .pc-12 { animation-delay: 3.05s, 3.75s; }
/* =========================================================
   RAYOS INTERNACIONALES — ACTIVACIÓN FINAL
   ========================================================= */

.cobertura-global .rayos-globales {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 12;

    pointer-events: none;

    overflow: visible;
}


/* RAYOS APAGADOS AL COMIENZO */

.cobertura-global .rayo-global {
    fill: none !important;

    stroke: #f0c84b !important;
    stroke-width: 2.2;

    stroke-linecap: round;

    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;

    opacity: 0;

    filter:
        drop-shadow(0 0 3px #ffffff)
        drop-shadow(0 0 7px #e0b84c)
        drop-shadow(0 0 14px rgba(224,184,76,.75));
}


/* =========================================================
   CUANDO COBERTURA SE ACTIVA
   ========================================================= */

.cobertura-global.activa .rayo-global {
    animation: dibujarConexion 2.2s ease-out forwards;
}


/* Salen uno detrás de otro */

.cobertura-global.activa .rayo-1 {
    animation-delay: 3.2s;
}

.cobertura-global.activa .rayo-2 {
    animation-delay: 3.35s;
}

.cobertura-global.activa .rayo-3 {
    animation-delay: 3.50s;
}

.cobertura-global.activa .rayo-4 {
    animation-delay: 3.65s;
}

.cobertura-global.activa .rayo-5 {
    animation-delay: 3.80s;
}

.cobertura-global.activa .rayo-6 {
    animation-delay: 3.95s;
}

.cobertura-global.activa .rayo-7 {
    animation-delay: 4.10s;
}


/* =========================================================
   ANIMACIÓN DE DIBUJO
   ========================================================= */

@keyframes dibujarConexion {

    0% {
        opacity: 0;
        stroke-dashoffset: 1500;
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: .95;
        stroke-dashoffset: 0;
    }
}
/* =========================================================
   PULSOS VIAJEROS — COBERTURA GLOBAL
   ========================================================= */

.cobertura-global .pulso-viajero {
    fill: #fff8c9;

    opacity: 0;

    filter:
        drop-shadow(0 0 3px #ffffff)
        drop-shadow(0 0 7px #ffe278)
        drop-shadow(0 0 13px #d8ae42);

    transition: opacity .5s ease;
}


/* Aparecen cuando se activa Cobertura */

.cobertura-global.activa .pulso-viajero {
    opacity: 1;
}


/* Algunos más intensos */

.cobertura-global .pulso-1,
.cobertura-global .pulso-3,
.cobertura-global .pulso-5,
.cobertura-global .pulso-7 {
    filter:
        drop-shadow(0 0 4px #ffffff)
        drop-shadow(0 0 9px #ffe98a)
        drop-shadow(0 0 18px rgba(216,174,66,.95));
}
/* =========================================
   MODAL 03 — RECURSOS NATURALES
   ========================================= */

.modal-fondo-03 .modal-contenido {
    background-color: #080808;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.84) 0%,
            rgba(5, 5, 5, 0.58) 52%,
            rgba(5, 5, 5, 0.12) 100%
        ),
        url("../images/servicio-recursos-naturales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.65);
}


/* =========================================
   MODAL 04 — OBRAS DE INFRAESTRUCTURA
   ========================================= */

.modal-fondo-04 .modal-contenido {
    background-color: #080808;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.84) 0%,
            rgba(5, 5, 5, 0.58) 52%,
            rgba(5, 5, 5, 0.12) 100%
        ),
        url("../images/servicio-infraestructura.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.65);
}


/* =========================================
   MODAL 07 — MAQUINARIA Y EQUIPOS
   ========================================= */

.modal-fondo-07 .modal-contenido {
    background-color: #080808;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.84) 0%,
            rgba(5, 5, 5, 0.58) 52%,
            rgba(5, 5, 5, 0.12) 100%
        ),
        url("../images/servicio-maquinaria.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.65);
}


/* =========================================
   MODAL 11 — ACTIVOS OPERACIONALES
   ========================================= */

.modal-fondo-11 .modal-contenido {
    background-color: #080808;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.84) 0%,
            rgba(5, 5, 5, 0.58) 52%,
            rgba(5, 5, 5, 0.12) 100%
        ),
        url("../images/servicio-activos-operacionales.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(185, 151, 62, 0.65);
}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — ENCABEZADO
   NO MODIFICA LA VERSIÓN DE ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    /* =========================
       ENCABEZADO
       ========================= */

    .encabezado {
        width: 100%;
        min-height: auto;
        overflow: hidden;
    }

    /* =========================
       BARRA SUPERIOR + LOGO REAL
       ========================= */

    .barra-superior {
        width: 100%;
        height: auto;
        min-height: 105px;

        margin: 0;
        padding: 0 14px;

        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: center;

        position: relative;
        transform: translateX(-15px);

        background-size: min(340px, 88vw) auto;
        background-position: center center;
    }

    /* =========================
       LOGO DEL HTML
       permanece oculto porque el
       visible está en el background
       ========================= */

    .logo {
        width: min(300px, 82vw);
        max-width: 100%;
        height: auto;

        margin: 0 auto;

        display: block;
    }

}
/* =========================================================
   RESPONSIVE AVALOR360
   MENÚ MÓVIL
   ========================================================= */

/* En computador el botón móvil no existe visualmente */
.menu-movil-btn {
    display: none;
}

@media screen and (max-width: 600px) {

    .menu-movil-btn {
        display: flex;

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;

        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);

        z-index: 1002;

        padding: 0;

        border: 1px solid #b9973e;
        border-radius: 4px;

        background: rgba(5, 5, 5, 0.92);
        color: #b9973e;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;
    }

    .menu-principal {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        box-sizing: border-box;
        padding: 18px;

        background: rgba(5, 5, 5, 0.98);

        border-top: 1px solid rgba(185, 151, 62, 0.45);
        border-bottom: 1px solid #b9973e;

        z-index: 1001;
    }

    .menu-principal.menu-abierto {
        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .menu-principal a {
        display: block;

        width: 100%;
        box-sizing: border-box;

        margin: 0;
        padding: 13px 8px;

        text-align: center;

        font-size: 14px;
    }

    .menu-principal .boton-menu {
    width: calc(100% - 30px);
    margin: 10px auto 0;
    padding: 13px 16px;
    box-sizing: border-box;
    justify-content: center;

    transform: translateX(10px);

}
}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — HERO
   NO MODIFICA LA VERSIÓN DE ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    /* =========================
       HERO
       ========================= */

    .hero {
        width: 100%;
        min-height: 560px;

        margin: 0;

        box-sizing: border-box;
        overflow: hidden;

        display: flex;
        align-items: center;

        /*
           Conservamos la imagen y el degradado aprobados.
           Solo adaptamos su encuadre al formato vertical.
        */
        background-size: auto 100%;
        background-position: center center;
    }

    /* =========================
       CONTENIDO DEL HERO
       ========================= */

    .hero-texto {
        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0 24px;

        box-sizing: border-box;

        text-align: left;
    }

    /* =========================
       VALORAMOS
       ========================= */

    .titulo {
    width: 100%;
    max-width: 100%;

    font-size: 36px;
    line-height: 1;

    letter-spacing: 0;

    margin: 0 0 9px;

    white-space: nowrap;

    box-sizing: border-box;
}


    /* =========================
       LO QUE DA SENTIDO...
       ========================= */

    .subtitulo {
    width: 100%;
    max-width: 330px;

    font-size: 22px;
    line-height: 1.12;

    margin: 0;

    box-sizing: border-box;
}
    /* =========================
       ESLOGAN DEL HERO
       ========================= */

    .hero .eslogan {
        width: 100%;
        max-width: 330px;

        margin: 22px 0 18px;

        font-size: 15px;
        line-height: 1.55;

        box-sizing: border-box;
    }

    /* =========================
       BOTÓN DEL HERO
       ========================= */

    .hero .boton {
        width: fit-content;
        min-width: 190px;

        padding: 14px 18px;

        box-sizing: border-box;

        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;

        font-size: 12px;
        white-space: nowrap;
    }

    .hero .boton span {
        flex-shrink: 0;
    }
}

/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — NOSOTROS
   NO MODIFICA LA VERSIÓN DE ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    /* =========================
       SECCIÓN NOSOTROS
       ========================= */

    .nosotros {
        width: 100%;
        min-height: auto;

        padding: 65px 30px;

        box-sizing: border-box;
        overflow: hidden;
        
    }

    .nosotros-contenido {
        width: 100%;
        max-width: 100%;

        margin-left: -20px;
        margin-right: 0;

        box-sizing: border-box;
    }
        /* =========================
       ENCABEZADO DE NOSOTROS
       ========================= */

    .nosotros-encabezado {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;

        box-sizing: border-box;
        
    }

    /* =========================
       ETIQUETA AVALOR360 E.U.
       ========================= */

    .nosotros .etiqueta-seccion {
        font-size: 11px;
        letter-spacing: 3px;

        margin-bottom: 18px;
    }

    /* =========================
       TÍTULO NOSOTROS
       ========================= */

    .nosotros h2 {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 30px;
        line-height: 1.12;

        letter-spacing: 0;

        box-sizing: border-box;

        overflow-wrap: normal;
        word-break: normal;
    }

    .nosotros h2 span {
        display: block;

        margin-top: 5px;
    }

    /* =========================
       TEXTO INTRODUCTORIO
       ========================= */

    .nosotros-intro {
        width: 100%;
        max-width: 100%;

        margin-top: 24px;

        font-size: 15px;
        line-height: 1.65;

        box-sizing: border-box;
        overflow-wrap: break-word;
    }
    /* =========================
   EXPERIENCIA +36
   ========================= */

.experiencia-destacada {
    width: 100%;
    max-width: 100%;

    margin-top: 38px;
    padding: 22px 0;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.numero-experiencia {
    flex-shrink: 0;
}

.numero-experiencia span,
.numero-experiencia strong {
    font-size: 34px;
    line-height: 1;
}

.texto-experiencia {
    min-width: 0;
}

.texto-experiencia strong {
    font-size: 12px;
    line-height: 1.1;
}

.texto-experiencia span {
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: 2px;
}
/* =========================
   SEPARACIÓN HACIA RESPALDO
   ========================= */

.respaldo-profesional {
    margin-top: 35px;
}

}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — QUIÉNES SOMOS + DIRECCIÓN TÉCNICA
   NO MODIFICA ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    .quienes {
        width: 100%;
        padding: 55px 30px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .quienes-contenido {
        width: 100%;
        max-width: 100%;

        margin: 0;

        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        box-sizing: border-box;
    }

    .quienes-texto {
        width: 100%;
        max-width: 100%;
    }

    .quienes .etiqueta-seccion {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 10px;
        margin-bottom: 18px;
    }

    .quienes .etiqueta-seccion span {
        width: 32px;
    }

    .quienes-texto h2 {
        width: 100%;
        max-width: 100%;

        margin-bottom: 22px;

        font-size: 30px;
        line-height: 1.12;
    }

    .quienes-texto > p {
        width: 100%;
        max-width: 100%;

        margin-bottom: 28px;

        font-size: 15px;
        line-height: 1.65;
    }

    .quienes .boton-secundario {
        max-width: 100%;
        padding: 13px 17px;
        gap: 16px;

        box-sizing: border-box;

        font-size: 10px;
    }

    /* =========================
       DIRECCIÓN TÉCNICA
       ========================= */

    .perfil-tecnico {
        width: 100%;
        max-width: 100%;

        padding: 30px 24px;

        box-sizing: border-box;
    }

    .perfil-tecnico h3 {
        margin: 15px 0 9px;

        font-size: 27px;
        line-height: 1.12;
    }

    .perfil-cargo {
        font-size: 13px;
        line-height: 1.5;
    }

    .perfil-linea {
        margin: 22px 0;
    }

    .perfil-experiencia {
        font-size: 14px;
    }

    .perfil-credenciales {
        gap: 7px;
        margin-top: 20px;
    }

    .perfil-credenciales span {
        padding: 7px 9px;

        font-size: 9px;
        letter-spacing: 1px;
    }

    .perfil-respaldo {
        font-size: 11px;
        line-height: 1.6;
    }

}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — SERVICIOS
   NO MODIFICA ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    .servicios {
        width: 100%;
        padding: 60px 60px;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* ENCABEZADO */

    .servicios-encabezado {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .servicios h2 {
        width: 100%;
        max-width: 100%;

        font-size: 30px;
        line-height: 1.08;

        box-sizing: border-box;
    }

    .servicios-encabezado p {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;

        box-sizing: border-box;
        overflow-wrap: break-word;
    }

    /* LAS 10 CATEGORÍAS */

    .servicio-item {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        box-sizing: border-box;
    }

    .servicio-numero {
        padding-top: 24px;
        font-size: 44px;
    }

    .servicio-contenido {
        width: 100%;
        max-width: 100%;

        padding: 8px 0 35px;

        box-sizing: border-box;
    }

    .servicio-contenido h3 {
        width: 100%;
        max-width: 100%;

        font-size: 21px;
        line-height: 1.25;

        overflow-wrap: break-word;
    }

    .servicio-contenido p {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;

        overflow-wrap: break-word;
    }

}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — MODALES DE ALCANCE
   APLICA A LAS 10 CATEGORÍAS
   ========================================================= */

@media screen and (max-width: 600px) {

    .modal-alcance {
        width: 100%;
        height: 100dvh;

        padding: 18px;

        box-sizing: border-box;

        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .modal-contenido {
        width: 100%;
        max-width: 310px;

        max-height: calc(100dvh - 36px);

        padding: 32px 22px 26px;

        box-sizing: border-box;

        overflow-y: auto;
        overflow-x: hidden;
    }

    .modal-numero {
        font-size: 12px;
        letter-spacing: 2px;

        margin-bottom: 8px;
    }

    .modal-contenido h2 {
        width: calc(100% - 38px);

        margin: 0 0 14px;

        font-size: 21px;
        line-height: 1.25;

        overflow-wrap: break-word;
    }

    .modal-linea {
        margin-bottom: 20px;
    }

    .modal-contenido h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .modal-contenido p {
        width: 100%;

        font-size: 13px;
        line-height: 1.6;

        overflow-wrap: break-word;
    }

    .cerrar-modal {
        top: 12px;
        right: 12px;

        width: 32px;
        height: 32px;

        font-size: 21px;
        line-height: 27px;
    }

}
/* =========================================================
   RESPONSIVE AVALOR360
   MÓVIL — COBERTURA
   NO MODIFICA ESCRITORIO
   ========================================================= */

@media screen and (max-width: 600px) {

    .cobertura-contenedor {
        width: 100%;
        max-width: 100%;

        margin: 0;

        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        box-sizing: border-box;
    }

    /* =========================
       INFORMACIÓN
       ========================= */

    .cobertura-informacion {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .cobertura-etiqueta {
        width: 100%;
        max-width: 100%;

        gap: 10px;
        margin-bottom: 16px;

        font-size: 10px;
        letter-spacing: 2px;

        box-sizing: border-box;
    }

    .cobertura-etiqueta::after {
        width: 28px;
        flex-shrink: 0;
    }

    .cobertura-informacion h2 {
        width: 100%;
        max-width: 100%;

        font-size: 30px;
        line-height: 1.12;

        box-sizing: border-box;
        overflow-wrap: break-word;
    }

    .cobertura-informacion h2 span {
        display: block;
    }

    .cobertura-intro {
        width: 100%;
        max-width: 100%;

        margin-bottom: 28px;

        font-size: 14px;
        line-height: 1.65;

        box-sizing: border-box;
        overflow-wrap: break-word;
    }

    /* =========================
       ZONAS
       ========================= */

    .cobertura-zonas {
        width: 100%;

        grid-template-columns: 1fr;
        gap: 16px;

        box-sizing: border-box;
    }

    .cobertura-zona {
        width: 100%;
        max-width: 100%;

        gap: 10px;

        box-sizing: border-box;
    }

    .cobertura-zona p {
        min-width: 0;

        font-size: 13px;
        line-height: 1.5;

        overflow-wrap: break-word;
    }

    /* =========================
       MAPA
       CONSERVAMOS SUS EFECTOS
       ========================= */

    .cobertura-mapa {
        width: 100%;
        max-width: 100%;

        min-height: 330px;

        box-sizing: border-box;
    }

    .cobertura-mapa img {
        width: 100%;
        max-width: 100%;
        height: auto;

        margin: 0 auto;
    }
    .cobertura-global .cobertura-zonas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

}
/* =========================================================
   COBERTURA — CORRECCIÓN RAÍZ MÓVIL
   ========================================================= */

@media screen and (max-width: 600px) {

    #cobertura.cobertura-global {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding-left: 30px;
        padding-right: 30px;

        box-sizing: border-box;

        overflow-x: hidden;
    }

    #cobertura .cobertura-contenedor {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        margin-left: 0;
        margin-right: 0;

        grid-template-columns: minmax(0, 1fr);

        box-sizing: border-box;
    }

    #cobertura .cobertura-informacion {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0;

        box-sizing: border-box;
    }

    #cobertura .cobertura-informacion h2,
    #cobertura .cobertura-informacion h2 span,
    #cobertura .cobertura-intro {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        white-space: normal;

        box-sizing: border-box;
    }

    #cobertura .cobertura-zonas {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        grid-template-columns: minmax(0, 1fr);

        box-sizing: border-box;
    }

    #cobertura .cobertura-zona {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

}
/* =========================================================
   COBERTURA — CTA MÓVIL
   ========================================================= */

@media screen and (max-width: 600px) {

    #cobertura .cobertura-sello,
    #cobertura .cobertura-sello-cta {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        margin-left: 0;
        margin-right: 0;

        box-sizing: border-box;
    }

    #cobertura .cobertura-sello-cta {
        padding: 18px 14px;
        overflow: hidden;
    }

    #cobertura .cobertura-sello-cta a,
    #cobertura .cobertura-sello-cta .boton,
    #cobertura .cobertura-sello-cta button {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        box-sizing: border-box;

        white-space: normal;
    }
}
/* =========================================================
   AJUSTE FINAL BOTONES — MÓVIL
   ========================================================= */

@media screen and (max-width: 600px) {

    /* BOTÓN HABLA CON NOSOTROS */
    #cobertura .cobertura-sello-cta a {
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
        margin-left: -40px;
        margin-right: 12px;

        box-sizing: border-box;
    }
    /* AJUSTE EXTRA PARA CELULARES MUY PEQUEÑOS */
@media screen and (max-width: 340px) {

    #cobertura .cobertura-sello-cta a {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin-left: -60px;
        margin-right: 12px;
        font-size: 10px;
    }

}

    /* BOTÓN FLOTANTE INICIO */
    .boton-inicio,
    .btn-inicio,
    .inicio-flotante {
        right: 12px !important;
        max-width: calc(100vw - 24px);
        box-sizing: border-box;
    }

}
/* =========================================================
   VOLVER AL INICIO — MÓVIL
   ========================================================= */

@media screen and (max-width: 600px) {

    .volver-inicio {
        right: 12px !important;
        left: auto !important;

        max-width: calc(100vw - 24px);
        box-sizing: border-box;

        transform: none !important;
    }

}
/* =========================================================
   VOLVER AL INICIO — MÓVIL
   ========================================================= */

@media screen and (max-width: 600px) {

    .volver-inicio {
        position: fixed !important;

        left: auto !important;
        right: 60px !important;
        bottom: 16px !important;

        width: 58px !important;
        height: 30px !important;
        min-width: 58px !important;
        max-width: 58px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 7px !important;
        letter-spacing: 0.7px !important;
        line-height: 1 !important;
        white-space: nowrap !important;

        transform: none !important;
        box-sizing: border-box !important;

        z-index: 99999 !important;
    }

}
/* FRASE NOSOTROS — AJUSTE MÓVIL */

@media screen and (max-width: 600px) {

    .frase-nosotros {
        max-width: 320px;
        margin-left: -5px;
        margin-right: auto;
        font-size: 17px;
        
    }

}
/* MODAL INSTITUCIONAL — AJUSTE MÓVIL */

@media screen and (max-width: 600px) {

    .modal-respaldo-contenido {
        width: 270px !important;
        max-width: calc(100vw - 60px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

}
/* MODAL ENTIDADES — MÓVIL */

@media screen and (max-width: 600px) {

    .modal-entidad {
        padding: 45px;
    }

    .modal-entidad-contenido {
        width: 100%;
        max-width: 310px;
        padding: 42px 25px 32px;
        margin-left: -30px;
    }

}
/* AJUSTE CLIENTES - CELULARES MUY PEQUEÑOS */
@media screen and (max-width: 340px) {

    .clientes {
        padding-bottom: 110px;
    }

}
/* AJUSTE COBERTURA - MÓVILES MEDIANOS */
@media screen and (min-width: 341px) and (max-width: 400px) {

    .cobertura {
        padding-left: 7%;
        padding-right: 20%;
    }
    .cobertura-zona p {
    max-width: 88%;
    font-size: 12px;
    overflow-wrap: break-word;  
    }
    .servicio-item {
    transform: translateX(-10px);
}
.modal-contenido {
    transform: translateX(-11px);
}
.servicios-encabezado {
    transform: translateX(-22px);
}
.frase-nosotros {
    margin-left: -22px;
}

/* HAMBURGUESA — AJUSTE 401 A 450 PX */
@media screen and (min-width: 401px) and (max-width: 450px) {

    .encabezado .barra-superior .menu-movil-btn {
        right: 24px !important;
    }

}
}

