/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}


/* 🔥 CONTENEDOR LIMPIO */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
/* 🔥 TODO RESPETA EL ANCHO */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

body {
    margin: 0;

    font-family: 'Playfair Display', serif;
}
html {
  scroll-behavior: smooth;
}
body {
  opacity: 0;
  transition: opacity 1.1s ease;
}

body.loaded {
  opacity: 1;
}
.lang-switch {

  position: absolute;

  right: 20px;

  top: 20px;

  display: flex;

  align-items: center;

  gap: 6px;

  background: rgba(255,255,255,0.1);

  padding: 5px;

  border-radius: 30px;

  backdrop-filter: blur(10px);
}

/* 🌍 ICONO MUNDO */

.lang-switch i {

  position: relative;

  top: 2px;

  font-size: 16px;

  color: white;
}

/* BOTONES */

.lang-buttons {

    display: flex;

    align-items: center;

    gap: 10px;
}

.lang-btn {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.22);

    background: rgba(255,255,255,0.06);

    color: white;

    cursor: pointer;

    transition: 0.3s ease;

    font-size: 11px;

    letter-spacing: 1px;

    font-weight: 500;
}

/* BANDERAS */

.lang-btn img {

    width: 16px;

    height: 16px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

/* HOVER */

.lang-btn:hover {

    background: rgba(255,255,255,0.14);
}

/* ACTIVO */

.lang-btn.active {

    background: rgba(255,255,255,0.9);

    color: #0f2a44;

    border: 1px solid rgba(255,255,255,0.9);

    box-shadow:
      0 0 10px rgba(255,255,255,0.22),
      0 3px 10px rgba(0,0,0,0.12);

    transform: scale(1.03);

    font-weight: 600;
}


section {
    padding: 120px 0;
}


.container h2 {
    margin-left: 0;
}

h2 {
    font-family: 'Bookmania', serif;
    font-size: 48px;
    margin-bottom: 40px;
}

/* ================= HEADER ================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    padding: 15px 0 5px; /* 🔥 mucho más compacto */

    background: linear-gradient(
        to bottom,
        rgba(15, 42, 68, 0.55),
        rgba(15, 42, 68, 0.25),
        transparent
    );
}
.nav-left {
    justify-self: end;   
}

.nav-right {
    justify-self: start; 
}

.nav-center {
    display: flex;
    justify-content: center;
}
/* CONTENEDOR */
.header-container {
    width: 75%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 60px; 
}

/* LINKS */
.header a {

    text-decoration: none;
    color: #ffffff;

    font-size: 20px;
    letter-spacing: 5px; 

    opacity: 0.9;
    transition: 0.3s ease;
    
}

.header a:hover {
    opacity: 1;
}

/* IZQUIERDA */
.nav-left {
    text-align: right;
}

/* DERECHA */
.nav-right {
    text-align: left;
}

/* LOGO */
.nav-center {
    display: flex;
    justify-content: center;
}

.nav-center img {
 
    height: 130px; 
    object-fit: contain;

}
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

/* LÍNEA */
.header::after {
    content: "";
    display: block;

    height: 1px;
    background: rgba(255, 255, 255, 0.5);

    width: 0; /* empieza invisible */
    
    margin-top: 10px;

    animation: lineGrow 1s ease forwards;
    animation-delay: 0.6s;
}

/* ================= HERO ================= */
.hero {

    background: url("img/Portada\ WEB.jpg") center/cover no-repeat;
    position: relative;
    height: 92vh;
    display: flex;
    align-items: flex-end; 
    padding-bottom: 100px; 

}

/* OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* CONTENIDO */
.hero-content {
    position: relative;
    color: white;
    max-width: 700px;

    margin-left: 0; 
}


.hero .container {
    padding-left: 0;
}

/* TÍTULO */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;

    font-weight: 400; 
    line-height: 1.1;

    margin-bottom: 25px; 
}

/* SUBTÍTULO */
.hero p {
    font-size: 20px;
    font-weight: 300; 
    
    margin-top: 10px;
    margin-bottom: 35px;

    opacity: 0.9; 
}

/* BOTÓN */
.hero a {
    display: inline-block;

    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.6);

    color: white;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 2px;

    transition: 0.3s;
}

/* HOVER */
.hero a:hover {
    background: white;
    color: #0f2a44;
}
/* ================= SOBRE NOSOTROS ================= */
.sobre {
    background: #f3f3f3;
    padding: 0; 
}
.sobre-container {
    display: grid;
    grid-template-columns: 55% 45%;
    height: 65vh; 
}
.sobre-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 60px 0 !important;
    max-width: 520px;
    margin-left: -24px;
}
/* TITULO */
.sobre-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #0f2a44;
    margin-bottom: 30px;
}

/* TEXTO */
.sobre-texto p {
    font-size: 15px;
    line-height: 1.6;
    color: #1a2e44;
    margin-bottom: 12px;
}
.sobre-img {
    height: 65vh;
    display: flex;
    justify-content: flex-end; 
    margin-right: -190px;
}

/* 🔥 CLAVE TOTAL */
.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =================  QUE SERVICIOS HERO ================= */

.servicios-hero {
    position: relative;
    height: 85vh;
    background: url('img/Piedras\ Blancas.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY MÁS SUAVE (clave) */
.overlay-servicios {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

/* CONTENIDO CENTRADO PERFECTO */
.servicios-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* TEXTO EXACTO */
.servicios-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ================= SECCION SERVICIOS ================= */

.servicios {
    background: #6f8394;
    color: white;
    position: relative;
    padding: 120px 0;
}

/* CONTENEDOR */
.servicios .container {
    padding-left: 0;
    padding-right: 0;
}

/* TITULO */
.servicios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 60px;
    margin-left: 0;
}

/* ================= WHATSAPP GLOBAL (MARCA AZUL) ================= */

.whatsapp-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(13, 36, 64, 0.92);
  border: 1.5px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.35s ease;
  box-shadow:
  0 8px 25px rgba(0,0,0,0.18),
  0 0 0 1px rgba(255,255,255,0.08);
}

/* ICONO */
.whatsapp-section i {
  font-size: 28px;
  transform: translateY(-2px);
  color: #ffffff;
  transition: 0.3s ease;
}

/* HOVER */
.whatsapp-section:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.92);
  border-color: #0f2a44;
}

/* ICONO HOVER */
.whatsapp-section:hover i {

  color: #0f2a44;
}

/* ================= LINEA ================= */

.timeline {
    position: relative;
    margin-bottom: 60px;
    height: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.6);
    transform: translateY(-50%);
}

.timeline span {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* ================= GRID ================= */

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* ITEM */
.item h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.item p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}
/* ================= GRID ================= */

.servicios-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 55px; /* 🔥 MÁS SEPARACION */

    align-items: start;
}

/* ITEM */

.item {
    padding-right: 18px;
}

/* TITULOS */

.item h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 230px;
}

/* TEXTOS */

.item p {
    font-size: 13px;
    line-height: 1.9;
    opacity: 0.9;
    max-width: 240px;
}

/* ================= LINEA ================= */

.timeline {
    position: relative;
    margin-bottom: 78px;
    height: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    column-gap: 55px; /* 🔥 IGUAL QUE EL GRID */
}

/* PUNTOS */

.timeline span {
    width: 13px;
    height: 13px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    justify-self: start;
}


/* ================= PUMA ================= */

.puma {
    background: #3e5a73; 
    padding: 100px 0;
    color: white;
    
}

.puma-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}
/* TITULO */
.puma h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

/* SUBTEXTO */
.puma .sub {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* IMAGEN */
.puma-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 40px;
}

/* CARDS */
.puma-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.puma-card {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 25px;
}

/* TITULOS */
.puma-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

/* TEXTO */
.puma-card p,
.puma-card li {
    font-size: 14px;
    line-height: 1.6;
}

/* LISTA */
.puma-card ul {
    padding-left: 18px;
}
/* 🔥 FIX DE ALINEACIÓN PUMA */
.puma .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.puma h2,
.puma .sub,
.puma-img,
.puma-cards {
    margin-left: 0;
}


/*SECCION UBICACION*/

.ubicacion {

    background: #e8e3db;

    padding: 120px 0;
}

/* GRID */

.ubicacion-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

/* TEXTO */

.ubicacion-texto {

    padding-left: 0;
}

/* TITULO */

.ubicacion-texto h2 {

    font-family: 'Playfair Display', serif;

    font-size: 52px;

    color: #1e2a35;

    margin-bottom: 15px;
}

/* LABEL */

.ubicacion-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9aa7b2;
    display: block;
    margin-bottom: 12px;
}

/* TEXTO */

.ubicacion-texto p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a4a57;
    max-width: 420px;
}

/* MAPA CLICKABLE */

.mapa {
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transform: translateX(20px);
    transition: transform 0.4s ease,
                box-shadow 0.4s ease;
}

/* HOVER */

.mapa:hover {
    transform: translateX(20px) translateY(-6px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.18);
}

/* IFRAME */

.mapa iframe {
    width: 100%;
    height: 420px;
    border: none;
    pointer-events: none;
    filter: grayscale(15%)
            contrast(95%)
            brightness(0.95);
    display: block;
}

/* MAPA CLICK EN TODA EL AREA */

.mapa {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transform: translateX(20px);
}

/* IFRAME */

.mapa iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: grayscale(15%)
            contrast(95%)
            brightness(0.95);
}

/* CAPA INVISIBLE CLICKABLE */

.mapa-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;

    cursor: pointer;
}
/* RESPONSIVE */
/* @media (max-width: 900px) {
    .ubicacion-grid {
        grid-template-columns: 1fr;
    }

    .ubicacion-texto {
        padding-left: 0;
    }

    .mapa {
        transform: none;
    }
} */





/*SECCION PREGUNTAS FRECUENTES*/


.faq {
    background: #f6f3ee;
     padding: 105px 0 120px;
}

/* GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* ================= IZQUIERDA ================= */

.faq-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    color: #0d2440;
    margin-bottom: 40px;
    margin-left: -24px !important;
}

/* BOXES */
.box {
    border: 1px solid #0d2440;
    padding: 25px;
margin-top: 141px;

    margin-left: -24px !important;
}

.box + .box {
    margin-top: 20px;
}

.box h3 {
    font-size: 14px;
    margin-bottom: 14px;
    color: #0d2440;
}

.box ul {
    padding-left: 20px;
}

.box li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #0d2440;
}

/* ================= DERECHA / ACORDEON ================= */

.faq-right {
    display: flex;
    flex-direction: column;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid rgba(13,36,64,0.15);
    padding: 18px 0;
}

/* PREGUNTA */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #0d2440;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

/* HOVER */
.faq-question:hover {
    color: #4a7bd1;
}

/* FLECHA */
.faq-question::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #0d2440;
    border-bottom: 2px solid #0d2440;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

/* ACTIVO */
.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
}

/* RESPUESTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    font-size: 14px;
    line-height: 1.7;
    color: #0d2440;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;

    margin-top: 0;
}

/* RESPUESTA ACTIVA */
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .faq {
        padding: 60px 0;
    }

    /* GRID */
    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* 🔥 rompe estructura */
    .faq-left {
        display: contents;
    }

    /* TITULO */
    .faq-left h2 {
        order: 1;
        font-size: 32px;
        margin-bottom: 10px;
        padding: 0 28px;
    }

    /* DERECHA */
    .faq-right {
        order: 2;
        padding: 0 28px;
    }

    /* ITEMS */
    .faq-item {
        padding: 15px 0;
    }

    /* PREGUNTA */
    .faq-question {
        font-size: 14px;
        line-height: 1.5;
    }

    /* RESPUESTA */
    .faq-answer {
        font-size: 13px;
        line-height: 1.7;
    }

    /* BOXES */
    .faq-left .box {
        order: 3;

        width: calc(100% - 56px);

        margin: 0 auto;
        padding: 18px;
    }

    /* ESPACIO ENTRE BOXES */
    .faq-left .box + .box {
        margin-top: -1px;
    }

}

/* ================= CONTACTO ================= */

.contacto {
    background: #0f2a44;
    color: #ffffff;
    padding: 50px 0; 
}

/* CONTENEDOR */
.contacto-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 80px;
}

/* IZQUIERDA */
.contacto-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* TITULO */
.contacto-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 0;
}

/* BLOQUE CONTENIDO */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom:8vh ;
    
}

/* ICONOS */
.contacto-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 2vh;
}

/* CIRCULOS */
.icon-circle {
    width: 65px;
    height: 65px;
    background: #e6e6e6;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.icon-circle:hover {
    transform: translateY(-3px);
}

.icon-circle i {
    font-size: 22px;
    color: #0f2a44;
}

/* TEXTOS */
.contacto-left h3 {
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0;
}

.contacto-left .sub {
    font-size: 18px;
    margin: 0;
}



.contacto-left .nota {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 25px; 
}

/* IMAGEN */
.contacto-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4vh 0;
}

.contacto-right img {
    width: 110%;        /* 🔥 más ancho */
    height: auto;       /* 🔥 CLAVE: no empuja altura */
    object-fit: cover;
    margin-right: -10vw;
}

/* Evita que textos internos se corran */
.sobre-texto h2,
.servicios h2,
.diferencial h2,
.faq-left h2,
.contacto-left h2 {
    margin-left: 0;
}




    /* ================= FIX GLOBAL DE ALINEACIÓN ================= */

/* Todos los bloques principales usan el mismo margen */
.sobre-texto h2,
.servicios h2,
.diferencial h2,
.faq-left h2,
.contacto-left h2 {
    margin-left: 0;
}


/* ===== ANIMACIONES BASE ===== */
/* ===== LOGO ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 3.5s ease-out forwards;
}

/* ===== CORTINA ===== */
.reveal {
    opacity: 0; 
    transform: translateY(50px);
    
}
.reveal.active {
    animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slide-right.active {
    animation: slideRight 1.4s ease-out forwards;
}
/* ===== LINEA ===== */
.header::after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    background: rgba(255,255,255,0.5);

    margin-top: 8px;

    animation: lineGrow 1.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* ===== KEYFRAMES ===== */

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

/* ===== DELAYS HERO ===== */

.hero p {
    opacity: 0;
}
.delay-hero-1 { animation-delay: 0.8s; }
.delay-hero-2 { animation-delay: 1.3s; } 
.delay-hero-3 { animation-delay: 1.8s; }



/*ANIMACIONES SOBRENOSOTROS*/
/* ===== ESTADO INICIAL ===== */
.reveal,
.slide-right {
    opacity: 0;
    transform: translateY(50px);
}

/* ===== ACTIVACIÓN ===== */
.reveal.active {
    animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slide-right.active {
    animation: slideRight 1.4s ease-out forwards;
}

/* ===== ANIMACIONES ===== */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== DELAYS (más separados 🔥) */
.delay-1 { animation-delay: 0.3s; }  /* título */
.delay-2 { animation-delay: 0.9s; }
.delay-3 { animation-delay: 1.2s; }
.delay-4 { animation-delay: 1.5s; }
.delay-5 { animation-delay: 1.8s; }
.delay-6 { animation-delay: 2.4s; }  /* imagen */




/* =========================
   ANIMACIONES
========================= */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =========================
   DELAYS (ORDEN)
========================= */

/* TITULO */
.delay-1 { animation-delay: 0.4s; }

/* TEXTO */
.delay-2 { animation-delay: 1.2s; }
.delay-3 { animation-delay: 1.8s; }

/* CARDS */
.delay-4 { animation-delay: 2.4s; }
.delay-5 { animation-delay: 2.8s; }
.delay-6 { animation-delay: 3.2s; }

/* ICONOS (fade después del card) */
.delay-icon-1 { animation-delay: 3.6s; }
.delay-icon-2 { animation-delay: 3.9s; }
.delay-icon-3 { animation-delay: 4.2s; }





/*aniamciones que servicios*/
/* ESTADO INICIAL */
.servicios-hero .reveal {
    opacity: 0;
    transform: translateY(80px);
}

/* ACTIVACIÓN */
.servicios-hero .reveal.active {
    animation: curtainUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* KEYFRAME CORTINA */
@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DELAY (para que no aparezca tan rápido) */
.delay-servicios {
    animation-delay: 0.6s;
}

/*ANIMACIONES SERVICIOS/*
/* ESTADO INICIAL */
.servicios .reveal,
.servicios .fade {
    opacity: 0;
}

/* TITULO (cortina) */
.servicios .reveal.active {
    animation: curtainUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* FADE (línea, icono, items) */
.servicios .fade.active {
    animation: fadeIn 1.6s ease-out forwards;
}

/* KEYFRAMES */
@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================
   DELAYS (ORDEN CANVA)
========================= */

/* TITULO */
.delay-servicios-title { animation-delay: 0.4s; }

/* WHATSAPP */
.delay-wpp { animation-delay: 0.8s; }

/* LINEA */
.delay-line { animation-delay: 1.2s; }

/* ITEMS */
.delay-item-1 { animation-delay: 1.6s; }
.delay-item-2 { animation-delay: 1.9s; }
.delay-item-3 { animation-delay: 2.2s; }
.delay-item-4 { animation-delay: 2.5s; }
.delay-item-5 { animation-delay: 2.8s; }

/*animaciones puma*/
/* =========================
   ESTADO INICIAL
========================= */
.puma .reveal,
.puma .fade {
    opacity: 0;
}

/* =========================
   CORTINA (TEXTO Y CARDS)
========================= */
.puma .reveal.active {
    animation: curtainUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* =========================
   FADE (IMAGEN)
========================= */
.puma .fade.active {
    animation: fadeIn 1.6s ease-out forwards;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================
   DELAYS (ORDEN PRO)
========================= */

/* TITULO */
.delay-puma-title { animation-delay: 0.4s; }

/* SUB */
.delay-puma-sub { animation-delay: 0.8s; }

/* IMAGEN */
.delay-puma-img { animation-delay: 1.2s; }

/* CARDS */
.delay-card-1 { animation-delay: 1.6s; }
.delay-card-2 { animation-delay: 1.9s; }
.delay-card-3 { animation-delay: 2.2s; }

/*animaciones ubicacion*/
/* =========================
   ESTADO INICIAL
========================= */
.ubicacion .reveal,
.ubicacion .fade {
    opacity: 0;
}

/* =========================
   CORTINA (TEXTOS)
========================= */
.ubicacion .reveal.active {
    animation: curtainUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* =========================
   FADE (MAPA)
========================= */
.ubicacion .fade.active {
    animation: fadeIn 1.6s ease-out forwards;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================
   DELAYS (ORDEN VISUAL)
========================= */

/* TITULO */
.delay-ubi-title { animation-delay: 0.4s; }

/* LINEA */
.delay-ubi-line { animation-delay: 0.7s; }

/* LABEL */
.delay-ubi-label { animation-delay: 1s; }

/* TEXTO */
.delay-ubi-text { animation-delay: 1.3s; }

/* MAPA */
.delay-ubi-mapa { animation-delay: 1.8s; }

/*aniamciones preguntasyresp*/
/* =========================
   ESTADO INICIAL
========================= */

.faq .reveal {
    opacity: 0;
    transform: translateY(80px);
}

/* =========================
   ANIMACIÓN ACTIVADA
========================= */

.faq .reveal.active {
    animation: curtainUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* =========================
   KEYFRAME CORTINA ↑
========================= */

@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   DELAYS IZQUIERDA
========================= */

.delay-faq-title {
    animation-delay: 0.3s;
}

.delay-faq-box1 {
    animation-delay: 0.7s;
}

.delay-faq-box2 {
    animation-delay: 1.1s;
}

/* =========================
   DERECHA (CASCADA)
========================= */

.delay-faq-1  { animation-delay: 0.5s; }
.delay-faq-2  { animation-delay: 0.7s; }
.delay-faq-3  { animation-delay: 0.9s; }
.delay-faq-4  { animation-delay: 1.1s; }
.delay-faq-5  { animation-delay: 1.3s; }
.delay-faq-6  { animation-delay: 1.5s; }
.delay-faq-7  { animation-delay: 1.7s; }
.delay-faq-8  { animation-delay: 1.9s; }
.delay-faq-9  { animation-delay: 2.1s; }
.delay-faq-10 { animation-delay: 2.3s; }
.delay-faq-11 { animation-delay: 2.5s; }


/*animaciones contacto*/
/* =========================
   ESTADO INICIAL
========================= */

.contacto .reveal {
    opacity: 0;
    transform: translateY(80px);
}

.contacto .fade {
    opacity: 0;
}

/* =========================
   ACTIVACIÓN
========================= */

.contacto .reveal.active {
    animation: curtainUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contacto .fade.active {
    animation: fadeIn 1.6s ease forwards;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes curtainUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =========================
   DELAYS
========================= */

/* título */
.delay-contacto-title { animation-delay: 0.3s; }

/* iconos */
.delay-contacto-icons { animation-delay: 0.7s; }

/* textos */
.delay-contacto-text1 { animation-delay: 1.0s; }
.delay-contacto-text2 { animation-delay: 1.2s; }
.delay-contacto-text3 { animation-delay: 1.4s; }

/* imagen */
.delay-contacto-img { animation-delay: 0.8s; }


/*RESPONSIVE*/
/* ===================================== */
/* 📱 TABLET (<=1024px) */
/* ===================================== */
@media (max-width: 1024px) {

  .header-container {
    width: 90%;
    column-gap: 30px;
  }

  .header a {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .nav-center img {
    height: 110px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 18px;
  }

}


/* ===================================== */
/* 📱 MOBILE (<=768px) */
/* ===================================== */
@media (max-width: 768px) {

  /* ===== HEADER ===== */
  .header {
    padding: 15px 0 5px;
  }

  .header-container {
    width: 92%;
    column-gap: 15px;
  }

  .header a {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .nav-center img {
    height: 80px;
  }

  /*  IDIOMAS  */
  .lang-switch {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    width: max-content;   
    max-width: 90%;       

    background: rgba(255,255,255,0.08);
    padding: 4px;
    border-radius: 20px;
    backdrop-filter: blur(6px);

    opacity: 0.85;
  }

  .lang-btn {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 15px;
  }

  .lang-btn.active {
    background: rgba(255,255,255,0.9);
    color: #0f2a44;
  }

  /* ===== HERO ===== */
  .hero {
    height: auto;
    min-height: 60vh;       
    padding: 110px 0 50px;  
  }

.hero-content {
  padding-left: 40px;
  padding-right: 20px;
}
  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .hero a {
    font-size: 11px;
    padding: 10px 22px;
  }

}


/* ===================================== */
/* 📱 MOBILE CHICO (<=480px) */
/* ===================================== */
@media (max-width: 480px) {

  .header a {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .nav-center img {
    height: 65px;
  }

  .lang-switch {
    transform: translateX(-50%) translateY(10px) scale(0.9);
    max-width: 95%;
  }

  .hero {
    min-height: 55vh;
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

}

/* =========================
   SOBRE NOSOTROS RESPONSIVE
========================= */

@media (max-width: 768px) {

  .sobre {
    position: relative;

    background:
      linear-gradient(rgba(243,243,243,0.92), rgba(115,112,112,0.92)),
      url("img/sobenosotrosbarco.JPG");

    background-size: cover;
    background-position: center;

    overflow: hidden;
  }

  .sobre-container {

    display: block;

    min-height: auto;

    /*  márgenes generales */
    padding-left: 22px;
    padding-right: 22px;
  }

  .sobre-texto {

    width: 100%;
    max-width: 100%;

    /* mismos márgenes izquierda/derecha */
    padding: 58px 36px;

    margin: 0 !important;

    left: 0 !important;
    transform: none !important;

    position: relative;
    z-index: 2;
  }

  .sobre-texto h2 {

    font-size: 29px;

    line-height: 1.1;

    margin-bottom: 28px;

    margin-left: 0 !important;

    color: #0d2440;
  }

  .sobre-texto p {

    font-size: 14px;

    line-height: 1.8;

    color: #1a2e44;

    margin-bottom: 14px;

    margin-left: 0 !important;
  }

  .sobre-img {
    display: none;
  }

}

/*responsive que servicios*/


/* -------- TABLET -------- */
@media (max-width: 1024px) {

  .servicios-hero {

    height: 70vh;
  }

  .servicios-content h2 {

    font-size: 92px;

    line-height: 1.1;

    padding: 0 36px;
  }

}


/* -------- MOBILE -------- */
@media (max-width: 768px) {

  .servicios-hero {

    height: 55vh;

    padding: 0 22px;
  }

  .overlay-servicios {
    background: rgba(0,0,0,0.45);
  }

  .servicios-content h2 {

    font-size: 29px;

    line-height: 1.2;

    padding: 0 36px;
  }

}


/* -------- MOBILE CHICO -------- */
@media (max-width: 480px) {

  .servicios-hero {
    height: 50vh;
  }

  .servicios-content h2 {

    font-size: 27px;

    line-height: 1.25;

    padding: 0 30px;
  }

}

/* ================= SERVICIOS MOBILE ================= */

@media (max-width: 768px) {

  .servicios {
    padding: 80px 0;
  }

  /* CONTENEDOR */
  .servicios .container {

    padding-left: 36px;
    padding-right: 36px;

    position: relative;
  }

  /* TITULO */
  .servicios h2 {

    font-size: 29px;

    line-height: 1.1;

    margin-bottom: 50px;

    padding-left: 0;
    margin-left: 0;
  }

  /* timeline OFF */
  .timeline {
    display: none;
  }

  /* GRID */
  .servicios-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 40px;

    position: relative;

    padding-left: 25px;
  }

  /* LINEA */
  .servicios-grid::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 2px;

    background: rgba(255,255,255,0.5);

    left: 8px;
  }

  /* ITEM */
  .item {
    position: relative;
  }

  /* PUNTOS */
  .item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -20px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
  }

  /* TEXTOS */
  .item h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .item p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* WHATSAPP */
  .whatsapp-section,
  .whatsapp-section:focus,
  .whatsapp-section:active,
  .whatsapp-section i {

    outline: none;

    box-shadow: none;

    -webkit-tap-highlight-color: transparent;
  }

  .whatsapp-section {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
  }
  /* 🔥 WHATSAPP FIX MOBILE */
.whatsapp-section,
.whatsapp-section:visited,
.whatsapp-section:hover,
.whatsapp-section:active,
.whatsapp-section:focus {

    background: #0f2a44 !important;

    border: none !important; 

    color: white !important;

    text-decoration: none;

    outline: none !important;
    box-shadow: none !important;

    -webkit-tap-highlight-color: transparent;
}

/* ICONO */
.whatsapp-section i,
.whatsapp-section i:visited,
.whatsapp-section i:hover,
.whatsapp-section i:active {

    color: white !important;
}

}
/*responscive sorbepuma*/

@media (max-width: 768px) {
    .puma {
        background: white;
        padding: 0;
        color: #0d2440;
    }

    /* CONTAINER */
    .puma .container {
        padding: 0;
    }

    /* IMAGEN */
    .puma-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }

    .puma-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* OSCURECER IMAGEN */
    .puma-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.35);
    }

    /* TEXTO ENCIMA */
    .puma {
        position: relative;
    }

    .puma h2,
    .puma .sub {
        position: absolute;
        z-index: 2;

        left: 44px;
        right: 35px;

        color: white;
    }

    .puma h2 {
        top: 40px;
        font-size: 28px;
        line-height: 1.2;
    }

    .puma .sub {
        top: 80px;
        font-size: 14px;
        line-height: 1.5;
        
    }

    /* ===== CARDS ===== */
    .puma-cards {

        margin-top: -45px;
        padding: 0 40px 45px;

        display: flex;
        flex-direction: column;

        gap: 18px;

        position: relative;
        z-index: 5;

        background:
        linear-gradient(rgba(243,243,243,0.92), rgba(27,27,27,0.92)),
        url("img/sobrepuma.JPG");

        background-size: cover;
        background-position: center;
    }

    .puma-card {
        background: #ffffff;
        color: #0d2440;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.08);
position: relative;
    top: -40px;
        padding: 22px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    /* TEXTOS */
    .puma-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .puma-card p,
    .puma-card li {
        font-size: 14px;
        line-height: 1.7;
    }

}
/* ===============================
   RESPONSIVE UBICACION
=============================== */

@media (max-width: 900px) {

    .ubicacion {

        padding-left: 18px;
        padding-right: 18px;
    }

    .ubicacion-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    /* TEXTO */
    .ubicacion-texto {
        order: 1;
        max-width: 100%;
        /* 🔥 contenido más a la derecha */
        padding-left: 28px;
        padding-right: 18px;
        margin: 0;
    }

    .ubicacion-texto h2 {
        font-size: 29px;
        line-height: 1.1;
        margin-bottom: 18px;
    margin-left: -22px;
    }

    .ubicacion-texto p {
        font-size: 14px;
margin-left: -20px;
        line-height: 1.8;
    }

    /* MAPA */
   .mapa {
    order: 2;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    overflow: hidden;
    transform: translateZ(0);
    position: relative;
    isolation: isolate;
}
    .ubicacion-label{
        margin-left: -21px;
    }

   .mapa iframe {

    width: 100%;

    height: 300px;

    border: 0;

    display: block;

    pointer-events: auto;
}
}

/* ================= RESPONSIVE FAQ  ================= */
@media (max-width: 768px) {

    .faq {
        padding: 60px 20px; 
    }

    /* ===== GRID ===== */
    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 25px; 
    }

    
    .faq-left {
        display: contents;
    }

    /* ===== ORDEN ===== */

    /* TITULO */
    .faq-left h2 {
        order: 1;
        font-size: 32px;
        margin-bottom: 20px; 
        margin-left: -22px !important;
    }

    /* PREGUNTAS */
    .faq-right {
        order: 2;
        margin-bottom: 10px; 
        margin-left: -20px!important;
    }

    /* ITEMS FAQ */
    .faq-item {
        padding: 12px 0; 
    }

    /* TEXTOS FAQ */
    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* ===== BOXES ABAJO ===== */
    .faq-left .box {
        order: 3;
        width: 100%;

        margin-top: 0; 
        padding: 16px;

        border: 1px solid #0d2440;
        margin-left: 4px   !important;
    }

    
    .faq-left .box + .box {
        margin-top: -25px;
    }

}

/*seccion responsive contacto*/

@media (max-width: 768px) {

    /* SECCION */
    .contacto {
        background: #0f2a44;
        padding: 0;
    }

    /* CONTENEDOR */
    .contacto-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    /* BLOQUE TEXTO */
    .contacto-left {

        order: 1;

        height: auto;

        display: flex;
        flex-direction: column;

        align-items: flex-start;
        text-align: left;

        width: 100%;
        max-width: none;

        margin: 0;

        
        padding: 42px 32px 24px 42px;
    }

    /* TITULO */
    .contacto-left h2 {

        font-size: 29px;

        line-height: 1.1;

        margin-bottom: 18px;
    }

    /* INFO */
    .contacto-info {

        gap: 16px;

        margin-bottom: 0;
    }

    /* ICONOS */
    .contacto-icons {

        display: flex;

        gap: 14px;

        margin-bottom: 18px;
    }

    .icon-circle {

        width: 52px;
        height: 52px;

        background: #e6e6e6;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-circle i {

        font-size: 18px;

        color: #0f2a44;
    }

    /* TEXTOS */
    .contacto-left h3 {

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .contacto-left .sub {

        font-size: 14px;

        line-height: 1.7;
    }

    .contacto-left .nota {

        font-size: 10px;

        margin-top: 18px;

        opacity: 0.7;

        line-height: 1.6;
    }

    /* IMAGEN ABAJO */
    .contacto-right {

        order: 2;

        width: 100%;

        padding: 0;

        margin: 0;
    }

    .contacto-right img {

        display: block;

        width: 100%;

        height: 220px;

        object-fit: cover;

        margin: 0;
    }

}
/* ================= AJUSTE DE MARGENES ================= */

@media (max-width: 768px) {

  
  /* SERVICIOS */
  .servicios {
    padding-top: 60px; 
  }

}
/* 📱 TABLET RESPONSIVE FINAL */


@media (min-width: 769px) and (max-width: 1100px) {

  .container {

    width: 100%;
    max-width: 100%;

    padding-left: 42px;
    padding-right: 42px;

    margin: 0 auto;

    box-sizing: border-box;
  }

  section {

    overflow: hidden;
  }


  .hero,
  .sobre-container,
  .servicios-hero,
  .diferencial,
  .puma,
  .faq,
  .ubicacion {

    min-height: auto !important;

    height: auto !important;
  }

  /* ===================================== */
  /* HERO */
  /* ===================================== */

  .hero {

    padding: 150px 0 90px;
  }

  .hero-content {

    padding-left: 42px;
    padding-right: 42px;

    max-width: 560px;
  }

  .hero h1 {

    font-size: 52px;

    line-height: 1;
  }

  .hero p {

    font-size: 15px;

    line-height: 1.7;
  }

  
  /* SOBRE */

  .sobre {

    overflow: hidden;
  }

  .sobre-container {

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: stretch;

    min-height: auto !important;

    height: auto !important;
  }

  .sobre-texto {

    padding: 55px 38px 55px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 2;
  }

  .sobre-texto h2 {

    font-size: 50px;

    line-height: 1.08;

    margin-bottom: 24px;
  }

  .sobre-texto p {

    font-size: 16px;

    line-height: 2;

    margin-bottom: 12px;
  }



  .sobre-img {

    position: relative;

    overflow: hidden;

    margin-right: -70px;

    height: 100%;
  }

  .sobre-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center right;

    display: block;
  }

  
  /* SERVICIOS */
  

  .servicios {

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .servicios .container {

    width: 100%;

    max-width: 100%;

    padding-left: 42px;
    padding-right: 42px;
  }

  .servicios h2 {

    font-size: 40px;

    line-height: 1.08;

    margin-bottom: 48px;

    max-width: 420px;
  }

  .timeline {

    width: 100%;

    margin-bottom: 42px;
  }

  .servicios-grid {

    display: grid;

    grid-template-columns: repeat(5, minmax(0,1fr));

    gap: 18px;

    width: 100%;
  }

  .item h3 {

    font-size: 15px;

    line-height: 1.5;

    margin-bottom: 10px;
  }

  .item p {

    font-size: 14px;

    line-height: 1.8;
  }

  /* PUMA */
  .puma {

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .puma .container {

    padding-left: 42px;
    padding-right: 42px;
  }

  .puma h2 {

    font-size: 50px;

    margin-bottom: 18px;
  }

  .puma .sub {

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 34px;
  }

  .puma-img {

    width: 100%;

    height: 320px;

    overflow: hidden;
  }

  .puma-img img {

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .puma-cards {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;

    margin-top: 18px;
  }

  .puma-card {

    padding: 24px 18px;
  }

  .puma-card h3 {

    font-size: 15px;

    margin-bottom: 10px;
  }

  .puma-card p,
  .puma-card li {

    font-size: 14px;

    line-height: 2;
  }

  /* UBICACION */
  .ubicacion {

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .ubicacion .container {

    padding-left: 42px;
    padding-right: 42px;
  }

  .ubicacion-grid {

    display: grid;

    grid-template-columns: 52% 48%;

    align-items: start;

    gap: 20px;

    position: relative;
  }

  .ubicacion-texto {

    position: relative;

    z-index: 5;

    padding-right: 10px;
  }

  .ubicacion-texto h2 {

    font-size: 50px;

    margin-bottom: 20px;
  }

  .ubicacion-texto p {

    font-size: 16px;

    line-height: 2;
  }

  /* 🔥 MAPA */

  .mapa {

    width: 100%;

    max-width: 390px;

    margin-left: -10px;

    margin-top: 140px;

    position: relative;

    z-index: 2;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .mapa iframe {

    width: 100%;

    height: 320px;
  }

  /* FAQ */

  .faq {

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .faq .container {

    padding-left: 42px;
    padding-right: 42px;
  }

  .faq-grid {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 60px;

    align-items: start;
  }

  /* IZQUIERDA */

  .faq-left {

    width: 320px;
  }

  .faq-left h2 {

    font-size: 50px;

    line-height: 1.05;

    margin-bottom: 38px;

    max-width: 260px;
  }

  /* CAJAS */

  .faq-boxes {

    display: flex;

    flex-direction: column;

    gap: 16px;
  }

  .box {

    width: 100%;

    padding: 22px;

    box-sizing: border-box;
  }

  .box h3 {

    font-size: 15px;
  }

  .box li {

    font-size: 14px;

    line-height: 2;
  }

  /* DERECHA */

  .faq-right {

    width: 100%;

    min-width: 0;

    padding-top: 130px;
  }

  .faq-item {

    width: 100%;

    padding: 17px 0;
  }

  .faq-question {

    font-size: 15px;

    line-height: 1.6;
  }

  .faq-answer {

    font-size: 14px;

    line-height: 1.8;
  }

  /* CONTACTO */
  .contacto-container {

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

    gap: 24px;

    padding-left: 42px;
    padding-right: 42px;
  }

  .contacto-left {

    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contacto-left h2 {

    font-size: 50px;

    margin-bottom: 18px;
  }

  .contacto-left .sub {

    font-size: 16px;

    line-height: 2;
  }

  .contacto-left p,
  .contacto-left .nota {

    font-size: 16px;

    line-height: 2;
  }

  .contacto-right img {

    width: 100%;

    max-width: 300px;

    height: 300px;

    object-fit: cover;
  }

}


@media (min-width: 900px) and (max-width: 1100px) {

  .container,
  .hero-content,
  .diferencial .container,
  .servicios .container,
  .puma .container,
  .ubicacion .container,
  .faq .container,
  .contacto-container {

    padding-left: 70px !important;
    padding-right: 70px !important;
  }

  .faq-grid {

    gap: 70px;
  }

  .ubicacion-grid {

    gap: 40px;
  }

  .hero-content {

    max-width: 620px;
  }

}