@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Montserrat',sans-serif;
    width:100%;
    overflow-x:hidden;
}

html.no-scroll,
body.no-scroll{
    overflow:hidden !important;
    height:100% !important;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}


body{
    position:relative;
}


.hero,
.marcas,
.resultados,
footer{
    overflow:hidden;
}

.hero{
    min-height: 100vh;
    background: #ffffff;
    padding: 40px 8% 0;



}

/* =========================
   HERO
========================= */
.hero-box{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding-top:clamp(120px, 12vw, 180px);

    gap:0;
}

/* =========================
   TEXTO
========================= */
.texto{
    flex:1;
}

.texto h1{
    font-size:60px;
    font-weight:900;
    line-height:1.05;
    margin:0;
    color:#111;

    display:flex;
    flex-direction:column;
    gap:10px; /* 👈 separación real entre h1 y span */
}
.texto h1 span{
    display:block;
    font-size:60px;
    font-weight:900;
    margin-top:10px;
    position:relative;
    z-index:1;
    padding:10px 0px;
}

/* =========================
   FRANJA AMARILLA FULL WIDTH
   (PEGADA AL BORDE IZQUIERDO)
========================= */
.texto h1 span::before{
    content:"";
    position:absolute;

    top:0;
    left:-100vw;

    width:calc(100% + 104vw);
    height:100%;

    background:#F2EE00;
    z-index:-1;
}
/* =========================
   DESCRIPCIÓN
========================= */
.descripcion{
    margin-top:20px;
    font-size:16px;        /* un poco más grande */
    line-height:1.7;
    text-align:justify;
    color:#444;
    max-width:520px;
}

/* contenedor del bloque */
.bloque-texto{
    max-width:520px; /* mismo ancho que la descripción */
}

/* descripción */
.descripcion{
    margin-top:20px;
    font-size:18px;
    line-height:1.0;
    text-align:justify;
    color:#444;
}

/* botón centrado dentro del mismo bloque */
.bloque-texto button{
    margin-top:25px;

    display:block;
    margin-left:auto;
    margin-right:auto;

    padding:10px 26px;
    font-size:17px;

    background:#F2EE00;
    color:#000;


    border:none;
    border-radius:30px;

    font-weight:520;
    cursor:pointer;
    transition:.25s;
}

/* =========================
   IMAGEN
========================= */
.imagen{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.imagen img{
    max-width:100%;
    max-height:520px;
    object-fit:contain;
}

.texto h1,
.texto h1 span{
    font-family:'Montserrat',sans-serif;
    font-weight:900;
}


.descripcion{
    margin-top:50px;
    margin-bottom:50px;
}





/* =========================
   CONTENEDOR IMAGEN
========================= */
.imagen{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    overflow:visible;
}

/* =========================
   IMAGEN GRANDE (SIN AFECTAR TEXTO)
========================= */
.imagen{
    position:relative;
    z-index:3;
}

.imagen img{
   transform: scale(1.10) translateX(80px) translateY(15px);
    transform-origin: bottom center;

    height: auto;
    width: auto;

    transition: opacity 0.6s ease;
}

/* =========================
   HERO
========================= */
.hero{
    position:relative;
    overflow:hidden;
}

/* =========================
   HERO BOX (contenido encima)
========================= */
.hero-box{
    position:relative;
    z-index:2; /* 👈 encima de la franja */
}

/* =========================
   FRANJA AMARILLA ABAJO
========================= */



.hero-bar{
    position:absolute;

    right:-25%;     /* 👈 menos salida */
    bottom:0;

    width:45%;      /* 👈 MÁS ANGOSTA */
    height:40px;    /* puedes ajustar grosor */

    background:#F2EE00;

    z-index:1;

    pointer-events:none;
}

















.cotiza-servicios {
  background: #E8EFEE;
  padding: 70px 20px;

  position: relative;
  margin-top: 0px;
  z-index: 5;

  overflow: hidden; /* 👈 necesario para franja */
}


/* CONTENIDO ENCIMA DE LA FRANJA */
.cotiza-container {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;

  margin: 0 90px;
}

/* IZQUIERDA (IMAGEN) */
.cotiza-img {
  width: 450px;
  height: 560px;

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

  flex-shrink: 0;
}

.cotiza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* DERECHA */
.cotiza-info {
  flex: 1;
  max-width: 50%;
}

.cotiza-info h2 {
  font-size: 42px;
  font-family: 'Montserrat', sans-serif;   /* más grande */
    font-weight: 900;
  line-height: 1.1;
}

.cotiza-info h2 span {
  font-size: inherit;
  font-weight: inherit;

  position: relative;
  display: inline-block;
  z-index: 1;
}


.servicio {
  margin: 20px 0; /* 👈 arriba y abajo */
  color: #555;
}


.cotiza-servicios{
    position: relative;
    overflow: hidden; /* clave para que la franja no se salga */
}

.cotiza-info h2 span{
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 5px 20px 5px 0px;
    overflow: hidden;
}

.cotiza-servicios::before{
    content: "";
    position: absolute;

    top: 115px;
    right: 0;

    width: 51%;
    height: 60px;

    background: #F2EE00;
    z-index: 0;

    transform: translateX(100%);
}

.cotiza-servicios.animar::before{
    animation: entrarFranjaCotiza 0.7s forwards;
}

@keyframes entrarFranjaCotiza{
    to{
        transform: translateX(0);
    }
}


/* FORMULARIO */
.form-cotiza {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;

  width: 100%;        /* 👈 casi full ancho */
  margin: 0 0;

  border: 1px solid #bdbaba; 
  padding: 15px 45px;    /* 👈 más alto */
  border-radius: 14px;
  background: transparent;
}

/* CAMPOS */
.campo {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.campo label {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

/* INPUTS */
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  padding: 14px;     /* 👈 más alto */
  border: 1px solid #9c9b9b;
  border-radius: 20px;
  outline: none;
  box-sizing: border-box;
  transition: 0.2s;
  background: transparent;
}

/* FULL WIDTH */
.campo.full {
  grid-column: 1 / -1;
}

/* BOTÓN */
.campo button {
  padding: 12px 30px;
  background: #F2EE00;
  color: #000;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;

  display: block;
  margin: 0px auto 0;  /* 👈 menos espacio arriba */
}

/* SELECT FLECHA */
.campo select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23999' d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}

.Marcas {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* TITULO CENTRADO */
.marcas-header {
    text-align: center;
    margin-bottom: 50px;
}

.marcas-header h2 {
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;   /* más grande */
    font-weight: 900;
    line-height: 1.1;
}

.marcas-header h2 span {
    position: relative;
    display: inline-block;
    top: 6px;
    padding: 5px 0px 5px 0;
    z-index: 1;
}
.Marcas {
    position: relative;
}

.Marcas{
    position: relative;
}

/* Mitad izquierda */
.Marcas::before{
    content: "";
    position: absolute;

    top: 130px;
    left: 0;

    width: 50%;
    height: 60px;

    background: #F2EE00;
    z-index: 0;

    transform: translateX(-100%);
}

/* Mitad derecha */
.Marcas::after{
    content: "";
    position: absolute;

    top: 130px;
    right: 0;

    width: 50%;
    height: 60px;

    background: #F2EE00;
    z-index: 0;

    transform: translateX(100%);
}

/* Cuando entra en pantalla */
.Marcas.animar::before{
    animation: franjaIzquierda 0.7s ease forwards;
}

.Marcas.animar::after{
    animation: franjaDerecha 0.7s ease forwards;
}

@keyframes franjaIzquierda{
    to{
        transform: translateX(0);
    }
}

@keyframes franjaDerecha{
    to{
        transform: translateX(0);
    }
}

/* =========================
   CARRUSEL
========================= */
.carousel-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scroll 50s linear infinite;
}

/* LOGOS */
.marca-item img {
    height: 130px;              /* 👈 más grandes */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* HOVER */
.marca-item img:hover {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* ANIMACIÓN INFINITA */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* =========================
   SECCIÓN LUGARES
========================= */
.Lugares {
    background: #F2EE00;
    padding: 20px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
    overflow: hidden;
}

/* =========================
   MAPA IZQUIERDA
========================= */
.mapa-img {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 90px;
}

.mapa-img img {
    width: 100%;
    max-width: 500px;
}


/* =========================
   TEXTO
========================= */
.Maapa-info {
    flex: 1;
    max-width: 900px;

    text-align: right; 
    padding: 0 90px;/* 👈 CLAVE */
}

/* TITULO */
.Maapa-info h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

/* =========================
   SPAN CON BANDA NEGRA FULL WIDTH
========================= */
.Maapa-info h2 span {
    position: relative;
    display: inline-block;
    color: #fff;
    z-index: 2;
    padding: 18px 0px;
}
/* BANDA NEGRA */
.Maapa-info h2 span::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 60%;

    width: 50vw;
    height: 65px;

    background: #111;
    z-index: -1;

    transform: translate(100%, -50%); /* inicia fuera por la derecha */
}

.Maapa-info.animar h2 span::before {
    animation: entrarFranjaMapa 0.7s ease forwards;
}

@keyframes entrarFranjaMapa {
    to {
        transform: translate(-50%, -50%);
    }
}
/* DESCRIPCIÓN */
.lugar-descripcion {
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.2;
    color: #333;
}

/* BOTÓN CENTRADO */
.Maapa-info button {
    margin-top: 40px;
    padding: 12px 30px;
    background: #000000;
    color: #ffffff;

    font-weight: 600;
    border: none;
    border-radius: 25px;

    cursor: pointer;
}

/* =========================
   SECCIÓN RESULTADOS
========================= */
.resultados {
    margin-top: -15px;
    padding: 80px 0;
}

/* =========================
   CONTENEDOR TEXTO
========================= */
.resultados-info {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   TITULO
========================= */
.resultados-info h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    position: relative;
}

/* SPAN (NUESTROS) */
.resultados-info h2 span {
    position: relative;
    color: #000000;
    z-index: 2;
    padding: 18px 20px;
}

/* =========================
   FRANJA AMARILLA
   (SALE DESDE EL BORDE IZQUIERDO)
========================= */
.resultados-info h2 span {
    position: relative;
    display: inline-block;
}

.resultados-info h2 span::before {
    content: "";
    position: absolute;

    top: 50%;
    left: -180%;
    transform: translateY(-50%);

    width: 279.5%;
    height: 65px;

    background: #F2EE00;
    z-index: -1;

    transform-origin: left;
    transform: translateY(-50%) scaleX(0);
}

.resultados-info.animar h2 span::before {
    animation: entrarFranjaTitulo 0.7s ease forwards;
}

@keyframes entrarFranjaTitulo {
    from {
        transform: translateY(-50%) scaleX(0);
    }
    to {
        transform: translateY(-50%) scaleX(1);
    }
}

/* =========================
   DESCRIPCIÓN
========================= */
.resultados-descripcion {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .resultados-info h2 {
        font-size: 32px;
    }

    .resultados-info h2 span::before {
        width: 70vw;
        left: -70vw;
    }

    .resultados-descripcion {
        white-space: normal; /* 👈 en móvil baja de línea */
    }
}

/* =========================
   SLIDER
========================= */
.resultados-slider {
    position: relative;
    margin-top: 45px;
    padding: 0 55px; /* espacio para flechas */
}

/* =========================
   CONTENEDOR DE CARDS (CARRUSEL REAL)
========================= */
.resultados-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 30px;

    width: calc((363px * 3) + (30px * 2) - 15px); /* 3 cards + 2 espacios */
    margin: 0 auto; /* centrar el carrusel */

    overflow-x: hidden;
    scroll-behavior: smooth;
    align-items: stretch;
}

/* =========================
   CARD
========================= */
.card-resultados {
    width: 363px;       /* 🔒 NO TOCADO */
    height: auto;

    flex: 0 0 auto;     /* 🔥 respeta el width fijo */

    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card-resultados:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

/* =========================
   IMAGEN
========================= */
.card-resultados img,
.card-sin-imagen {
    width: 100%;
    height: 320px; /* 🔒 NO TOCADO */
}

/* =========================
   IMAGEN REAL
========================= */
.card-resultados img {
    object-fit: cover;
    display: block;
}

/* =========================
   SIN IMAGEN
========================= */
.card-sin-imagen {
    background: #f7f7f7;

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

.card-sin-imagen i {
    font-size: 50px;
    color: #bdbdbd;
    margin-bottom: 10px;
}

.card-sin-imagen span {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

/* =========================
   TEXTO AMARILLO
========================= */
.card-resultados p {
    margin: 0;
    padding: 16px 14px;
    min-height: 75px;

    background: #F2EE00;
    color: #111;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   CONTENEDOR RELATIVO
========================= */
.slider-container {
    position: relative;
}

/* =========================
   FLECHAS
========================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #F2EE00;
    color: #111;

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

    font-size: 18px;
    cursor: pointer;
    z-index: 10;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.slider-btn.prev {
    left: 60px;
}

.slider-btn.next {
    right: 60px;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
}







/* =========================
   CARDS SLIDER
========================= */
.resultados-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 22px;
}

/* =========================
   PUNTOS
========================= */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

/* PUNTO BASE (NEGRO NO SE TOCA) */
.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;

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

    cursor: pointer;
    transition: all .3s ease;
}

/* CÍRCULO NEGRO */
.slider-dots span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    transition: all .3s ease;
}


/* =========================
   PUNTOS
========================= */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

/* PUNTO BASE */
.slider-dots span {
    width: 25px;   /* 👈 SIEMPRE 18px */
    height: 25px;
    border-radius: 50%;

    background: transparent;

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

    cursor: pointer;
}

/* CÍRCULO INTERNO (SIEMPRE PEQUEÑO) */
.slider-dots span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
}

/* ACTIVO = BORDE AMARILLO */
.slider-dots span.active {
    border: 2px solid #F2EE00;
    background: #F2EE00;
}

/* ACTIVO = CÍRCULO INTERNO BLANCO */
.slider-dots span.active::before {
    background: #fff;
}





/* =========================
   TRABAJA CON NOSOTROS
========================= */
.TrabajaConNosotros {
    background: #000000;
    color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;


    padding: 50px 100px;
    border-radius: 0;
    overflow: hidden;

    margin-bottom: 80px;
    overflow: visible; /* IMPORTANTE */
    position: relative; /* separación inferior */
}

/* TÍTULO Y BOTÓN EN UNA SOLA FILA */
.trabaja-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trabaja-info h2 {
    font-size: 38px;
    font-family: 'Montserrat', sans-serif;   /* más grande */
    font-weight: 900;
    margin: 0; /* quita el espacio inferior */
    line-height: 1.1;
}

.btn-trabaja {
    background: #F2EE00;
    color: #111;

    border: none;
    border-radius: 50px;

    padding: 12px 28px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;

    transition: 0.3s;

    margin-left: 80px; /* lo mueve a la derecha */
}

.btn-trabaja:hover {
    transform: translateY(-2px);
}

/* Deja espacio a la derecha para la imagen */
.trabaja-info {
    display: flex;
    align-items: center;
    gap: 30px;

    padding-right: 180px;
}

.trabaja-img {
    position: absolute;
    right: 7.5%; 
    bottom: 0;
}

.trabaja-img img {
    width: 200px;
    display: block;

    /* sobresale hacia arriba SIN afectar la altura */
    transform: translateY(5px);
}











.popup-inicio{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.75);

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

    z-index: 99999;
}

.popup-content{
    position: relative;
    width: 90%;
    max-width: 500px;

    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.popup-content img{
    width: 100%;
    display: block;
}

.popup-close{
    position: absolute;
    top: 10px;
    right: 10px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: #000;
    color: #fff;

    font-size: 20px;
    cursor: pointer;
}


#confetti{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

























/* ==========================
RESPONSIVE - COTIZA
========================== */

@media (max-width:770px){

    .cotiza-servicios{
        padding:50px 20px;
    }

    .cotiza-servicios{
        position:relative;
        overflow:hidden;
    }

    .cotiza-servicios::before{
        content:"";
        position:absolute;

        left:-100vw;
        width:300vw;

        height:42px;
        background:#F2EE00;

        top:var(--franja-cotiza);

        transform:translateY(-50%);

        z-index:0;
    }

    .cotiza-info{
        position:relative;
        z-index:1;
    }

    .cotiza-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:35px;

        margin:0;
    }

    /* Imagen */

    .cotiza-img{
        width:100%;
        max-width:420px;
        height:260px;
    }

    .cotiza-img img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:18px;
    }

    /* Información */

    .cotiza-info{
        width:100%;
        max-width:100%;
    }

    .cotiza-info h2{
        font-size:32px;
        text-align:center;
        line-height:1.2;
    }

    .cotiza-info h2 span{
        padding:0;
    }

    .servicio{
        text-align:center;
        font-size:15px;
        margin:15px 0 30px;
    }

    /* Formulario */

    .form-cotiza{
        width:100%;

        grid-template-columns:1fr;

        gap:18px;

        padding:25px 20px;

        border-radius:18px;
    }

    .campo{
        width:100%;
    }

    .campo.full{
        grid-column:auto;
    }

    .campo label{
        font-size:14px;
        margin-bottom:8px;
    }

    .campo input,
    .campo select,
    .campo textarea{
        width:100%;
        font-size:15px;
        padding:14px;
    }

    .campo textarea{
        min-height:140px;
    }

    .campo button{
        width:100%;
        padding:15px;
        font-size:16px;
        margin-top:5px;
    }

}





@media (max-width:768px){

    .Marcas{
        position:relative;
        width:100%;
        padding:60px 0;
        margin:0;
        overflow:hidden;
    }


    .marcas-header{
        position:relative;
        z-index:2;
        margin-bottom:35px;
        width:100%;
        text-align:center !important;
    }


    .marcas-header h2{
        width:100%;
        margin:0;
        padding:0;
        font-size:30px;
        line-height:1.2;
        text-align:center !important;
    }


    .marcas-header h2 span{
        position:relative;
        display:inline-block;
        z-index:2;
    }


    .Marcas::before,
    .Marcas::after{
        top:var(--franja-top);
        transform:translateY(-50%);
        height:42px;
        width:50%;
    }

}



/* =========================
RESPONSIVE - LUGARES
========================= */

@media (max-width:768px){


    .Lugares{
        flex-direction:column;
        padding:50px 20px;
        gap:35px;
    }


    /* TEXTO PRIMERO */

    .Maapa-info{
        order:1;

        width:100%;
        max-width:100%;

        padding:0;

        text-align:center;

        display:flex;
        flex-direction:column;
        align-items:center;
    }


    .Maapa-info h2{
        font-size:32px;
        line-height:1.15;
    }


    .Maapa-info h2 span{
        padding:8px 15px;
    }


    /* DESCRIPCIÓN */

    .lugar-descripcion{
        order:2;

        margin-top:30px;

        font-size:16px;
        line-height:1.5;

        text-align:center;
    }


    /* MAPA SEGUNDO */

    .mapa-img{
        order:3;

        width:100%;
        margin:0;

        justify-content:center;
    }


    .mapa-img img{
        width:100%;
        max-width:330px;
    }


    /* BOTÓN TERCERO */

    .Maapa-info button{

        order:4;

        margin-top:30px;

        padding:14px 35px;
    }


    /* TEXTO */

    .Maapa-info{

        width:100%;

        max-width:100%;

        padding:0;

        text-align:center;
    }



    .Maapa-info h2{

        font-size:32px;

        line-height:1.15;

    }



    /* SPAN */

    .Maapa-info h2 span{
        padding:8px 15px;
        display:inline-block;
        position:relative;
        z-index:2;
    }


    /* BANDA NEGRA */
    .Maapa-info h2 span::before{
        content:"";
        position:absolute;

        left:50%;
        width:100vw;
        height:45px;

        transform:translate(-50%,-50%);
        background:#111;

        z-index:-1;
    }



    .Maapa-info.animar h2 span::before{

        animation:none;

    }



    /* DESCRIPCIÓN */

    .lugar-descripcion{

        margin-top:30px;

        font-size:16px;

        line-height:1.5;

        text-align: justify;
    }

}




/* =========================
RESPONSIVE - RESULTADOS
========================= */
@media(max-width:768px){

    .resultados{
        padding:60px 0;
        margin-top:0;
        overflow:hidden;
    }


    /* TITULO */

    .resultados-info{
        padding:0 20px;
        text-align:center;
    }


    .resultados-info h2{
        position:relative;
        font-size:32px;
        line-height:1.2;
        z-index:2;
    }


    .resultados-info h2 span{
        position:relative;
        display:inline-block;
        z-index:1;
    }


    .resultados-info h2 span::before{

        content:"";

        position:absolute;

        top:50%;
        left:50%;

        width:200vw;
        height:45px;

        background:#F2EE00;

        transform:translate(-50%,-50%);

        z-index:-1;

        opacity:1;
    }

    .resultados-info.animar h2 span::before{
        animation:none !important;
    }


    /* DESCRIPCIÓN */

    .resultados-descripcion{

        margin-top:20px;

        font-size:16px;

        line-height:1.5;

        text-align:center;

    }



    /* SLIDER */

    .resultados-slider{

        margin-top:35px;

        padding:0 45px;

    }



    .resultados-cards{

        width:100%;

        gap:20px;

        overflow:hidden;

    }



    /* CARD */

    .card-resultados{

        width:100%;

        max-width:300px;

        margin:0 auto;

    }



    .card-resultados img,
    .card-sin-imagen{

        height:240px;

    }



    .card-resultados p{

        font-size:15px;

        min-height:65px;

        padding:14px 10px;

    }



    /* FLECHAS */

    .slider-btn{

        width:34px;

        height:34px;

        font-size:15px;

    }


    .slider-btn.prev{

        left:8px;

    }


    .slider-btn.next{

        right:8px;

    }



    /* PUNTOS */

    .slider-dots{

        margin-top:20px;

        gap:8px;

    }

}



/* =========================
   RESPONSIVE HERO
========================= */

@media(max-width:770px){

    .hero{
        min-height:auto;
        padding:30px 20px 0px;
        overflow:hidden;
    }


    .hero-box{
        flex-direction:column;
        align-items:center;
        gap:40px;
        padding-top:30px;
    }


    /* TEXTO */
    .texto{
        width:100%;
        text-align:center;
    }


    .texto h1{
        font-size:38px;
        line-height:1.1;
        gap:5px;
    }


    .texto h1 span{
        font-size:38px;
        padding:8px 0;
    }


    /* FRANJA AMARILLA */
    .texto h1 span::before{

        left:50%;

        width:120vw;

        transform:translateX(-50%);

        height:100%;

    }



    /* DESCRIPCIÓN */
    .bloque-texto{
        max-width:100%;
    }


    .descripcion{

        margin-top:25px;
        margin-bottom:30px;

        font-size:16px;
        line-height:1.5;

        text-align:center;
    }



    /* BOTÓN */
    .bloque-texto button{

        margin:auto;

        font-size:15px;

        padding:10px 25px;

    }


    /* =========================
    IMAGEN RESPONSIVE
    ========================= */

    .imagen{

        width:100%;
        height:420px;

        flex:0 0 420px;

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

        overflow:hidden;

    }


    .imagen img{

        width:auto;
        height:100%;

        max-width:100%;

        object-fit:contain;

        transform:none !important;

        transition:opacity .6s ease;

    }



    /* BARRA AMARILLA ABAJO */
    .hero-bar{

        right:-20%;

        width:80%;

        height:25px;

    }

}








