@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Expanded+One&display=swap');


/* ===== RESET (quita la franja blanca arriba) ===== */
html, body{
  margin: 0;
  padding: 0;
  font-family:  "Montserrat", sans-serif;
}

/* ===== HEADER flotando sobre el video ===== */
header.transparent{
  position: fixed;      /* clave: no empuja el hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: transparent; /* al inicio */
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

/* Estado cuando bajas (se activa con JS: .scrolled) */
header.transparent.scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Contenedor del nav */
.nav-container{
  height: 84px;                 /* ajusta si tu navbar es más alto */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

/* Logo */
.brand img{
  height: 98px;
  width: auto;
  transition: transform .3s ease;
  display: block;
   filter: brightness(0) invert(1);
}

header.scrolled .brand img{
  filter: none;
}

/* Menú */
nav ul{
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
}

/* Links: blancos sobre video */
nav a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease, opacity .25s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  letter-spacing: 0.5px;
}

nav a:hover{ opacity: .85; }

nav ul li a:hover{
  background: rgba(74, 169, 216, 0);
  color: #0a87c5;
  border-radius: 40px;
}

/* CTA (botón derecha) */
.cta{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 12px 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, #b3a585, #b98a35);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  transition: 
    background .4s ease,
    box-shadow .4s ease,
    transform .3s ease;
  text-decoration: none;
}

.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
} 

header.scrolled .cta{
  background: linear-gradient(135deg, #2f7da3, #1e5f7d);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

header.transparent .cta{
  background: linear-gradient(135deg, #d7b46a, #b98a35) !important;
  color: #fff !important;
  border: none !important;
}

/* Estado scrolled (abajo): azul degradado */
header.transparent.scrolled .cta{
  background: linear-gradient(135deg, #4aa8d8, #1e5f7d) !important;
  color: #fff !important;
  border: none !important;
}

/* ===== Cuando baja: texto oscuro + CTA con look sólido ===== */
header.transparent.scrolled nav a{
  color: #111;
}

header.transparent.scrolled .cta{
  color: #111;
  background: rgba(255,255,255,.95);
  border-color: rgba(0,0,0,.10);
}

/* ===== HERO / TOP COVER (video pegado arriba) ===== */
.top-cover{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Video como fondo */
.bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay oscuro para legibilidad */
.bg-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.45) 100%
  );
}

/* Hero contenido encima del video */
.hero{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 16px;
}

/* Tipografía básica (ajusta a gusto) */
.hero-content h1{
  margin: 0;
  font-size: clamp(75px, 10vw, 150px);
  color: #fff;
  line-height: 1.05;
  font-family:  "Ephesis", cursive;
}

.hero-content .subtitle{
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 70px);/* dorado similar al tuyo */
  font-family: "Roboto", sans-serif;
  background: linear-gradient(90deg, #d7b46a, #b98a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h2{
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.hero-content p{
  margin: 14px auto 0;
  font-family: "Montserrat", sans-serif;
  max-width: 820px;
  color: rgba(255,255,255,.88);
  font-size: 25px;
  line-height: 1.55;
}

/* Botones del hero (si quieres que se vean bien) */
.exp, .Paquetes{
  display: inline-block;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.exp{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  padding: 16px 34px;
  border-radius: 999px;

  background: linear-gradient(135deg, #d7b46a, #b98a35);
  color: #fff;
  border: none;

  box-shadow: 
    0 8px 20px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.3);

  transition: all .3s ease;
}

.exp:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 14px 35px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.3);
}

.Paquetes{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  padding: 16px 34px;
  border-radius: 999px;

  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);

  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;

  transition: all .3s ease;
}

.Paquetes:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}

/* =========================
   SECCIÓN STATS
========================= */

.stats{
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8f9fb, #ffffff);
}

/* Contenedor */
.Stats-container{
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

/* =========================
   TARJETAS
========================= */

.statcard{
  flex: 1;
  min-width: 260px;
  max-width: 320px;

  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;

  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  text-align: center;

  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 1;
}

.statcard::before{
  content: "";
  position: absolute;
  inset: -2px;              /* grosor del borde */
  border-radius: 24px;
  background: linear-gradient(135deg, #d7b46a, #b98a35, #d7b46a);

  /* recorta el centro (para que NO se vea relleno) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  padding: 2px;             /* grosor real del borde */
  filter: blur(6px);        /* glow controlado */
  opacity: .65;
  z-index: -1;
  pointer-events: none;
}
.statcard:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* =========================
   ICONO
========================= */

.statcard__icon{
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #d7b46a, #b98a35);
  color: #fff;

  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* =========================
   NÚMERO
========================= */

.statcard__value{
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;

  background: linear-gradient(135deg, #d7b46a, #b98a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   LABEL
========================= */

.statcard__label{
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .Stats-container{
    flex-direction: column;
    align-items: center;
  }

  .statcard{
    max-width: 100%;
  }
}

/* SERVICES CARDS HOTELES, CRUCEROS, TOURS, GUIAS, ETC
====================================================== */

.services {
  padding: 100px 20px;
  background: radial-gradient(1200px 520px at 50% 0%,
    rgba(74,168,216,.10) 0%,
    rgba(215,180,106,.08) 36%,
    #ffffff 74%);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
}


.services__head {
  text-align: center;
  margin-bottom: 60px;
}

.services__head h2{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(45px, 5vw, 75px);
  font-weight: 800;
  letter-spacing: 1.1;
   background: linear-gradient(
      120deg,
    #5c4a1a 0%,
    #c9a43b 20%,
    #f5e6a3 35%,
    #d4af37 50%,
    #a07c1f 65%,
    #000000 100%
);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}

.services__head p{
 margin: 14px auto 0;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.6; 
  color: #1e2124;
}

.services__head{
  text-align: center;
  margin-bottom: 48px;
}


.services__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* CARD */
.svc-card{
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(20, 30, 50, 0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.svc-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

/* CUERPO */
.svc-card__body{
  position: relative;
  padding: 28px 24px 26px;
  text-align: center;
}

/* LOGO FLOTANTE PNG */
.svc-card__badge{
  position: absolute;
  top: -28px;
  left: 22px;

  width: 65px;
  height: 65px;
  border-radius: 50%;

  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  border: 2px solid rgba(255,255,255,0.95);
}

.svc-card__badge img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}


/* TEXTO */
.svc-card__body p{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2f36;
}

.svc-card__body h3{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

/* IMAGEN GRANDE */
.svc-card__media{
  width: 100%;
  height: 220px; 
  overflow: hidden;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.svc-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center; /* centra la imagen */
  display: block;
}


/* =========================
   SECCIÓN DESTINOS
========================= */
.destinations{
  padding: 110px 20px;
  background:
    radial-gradient(
      950px 420px at 50% 0%,
      rgba(201, 164, 59, 0.08) 0%,
      rgba(255, 255, 255, 0.96) 60%,
      #ffffff 100%
    );
}

.destinations__container{
  max-width: 1320px;
  margin: 0 auto;
}

/* =========================
   ENCABEZADO
========================= */
.destinations_head{
  text-align: center;
  margin-bottom: 58px;
}

.destinations_eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #b18d36;
  position: relative;
}

.destinations_eyebrow::before,
.destinations_eyebrow::after{
  content: "";
  width: 78px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201,164,59,0.18),
    rgba(201,164,59,0.65),
    rgba(201,164,59,0.18)
  );
}

.destinations_head h2{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  color: #221d18;
  letter-spacing: -0.8px;
}

.destinations_head p{
  margin: 18px auto 0;
  max-width: 900px;
  font-family: "Monserrat", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #d4a63f;
  
}

/*========= GRID =============== */

.destinations_grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
}

/*===== CARD ===== */

.destinations-card {
  position: relative;
  min-height: 395px;
  border-radius: 24px;
  overflow: hidden;
  background: #d9d9d9;
  border: 1px solid rgba(198, 167, 97, 0.45);
  box-shadow: 
    0 18px 38px rgba(18, 18, 18, 0.10),
    0 6px 16px rgba(18, 18, 18, 0.06);
  transition: 
    transform .35s ease;
    box-shadow: .35s ease;
    border-color: .35s ease;
}

.destinations-card:hover{
  transform: translateY(-8px);
  border-color: rgba(198, 167, 97, 0.75);
  box-shadow:
    0 26px 50px rgba(18, 18, 18, 0.14),
    0 10px 22px rgba(18, 18, 18, 0.08);
}

/* IMAGENES */
.destinations-card__media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.destinations-card_media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .65s ease;
}

.destination-card:hover .destination-card__media img{
  transform: scale(1.05);
}

/* ETIQUETA SUPERIOR */
.destinations-card__tag{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  min-width: 140px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #b58c34 0%,
    #d4b160 45%,
    #c29a43 100%
  );
  color: #fffdf7;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2px;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    0 8px 18px rgba(0,0,0,0.14);
}

/* OVERLAY OSCURO */
.destinations-card__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.05) 0%,
    rgba(10, 10, 10, 0.18) 35%,
    rgba(10, 10, 10, 0.56) 62%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

/* CONTENIDO INTERNO */
.destinations-card__content{
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 24px 20px 20px;
}

.destinations-card__place{
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
}

.destinations-card__content h3{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  color: #ffffff;
  text-wrap: balance;
}

.destinations-card__content p{
  margin: 0 0 18px;
  max-width: 94%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
}

/* PRECIO + BOTÓN */
.destinations-card__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.destinations-card__price{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #e7c266;
}

.destinations-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #b78f3c 0%,
    #d6b462 50%,
    #c49c48 100%
  );
   border: 1px solid rgba(255,255,255,0.18);
   box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    0 10px 20px rgba(0,0,0,0.18);
    transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.destinations-card__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.38),
    0 14px 24px rgba(0,0,0,0.22);
}











/* =========================================
   CONTACTO PREMIUM - VUELA
========================================= */

:root{
  --navy: #08153b;
  --navy-2: #0b1f66;
  --gold: #c79d3a;
  --gold-soft: #d8b45d;
  --text: #5f6674;
  --title: #0b153a;
  --white: #ffffff;
  --line: rgba(199,157,58,0.34);
  --shadow-soft: 0 18px 42px rgba(13, 20, 44, 0.06);
  --shadow-card: 0 24px 60px rgba(7, 20, 51, 0.10);
}

/* ===== SECCIÓN GENERAL ===== */
.contact{
  position: relative;
  overflow: hidden;
  padding: 90px 24px 70px;
  background:
    radial-gradient(520px 340px at 11% 16%, rgba(199,157,58,0.10), transparent 65%),
    radial-gradient(460px 320px at 88% 54%, rgba(93,131,201,0.08), transparent 70%),
    linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
  font-family: "Montserrat", sans-serif;
}

/* arcos decorativos izquierdos */
.contact::before{
  content: "";
  position: absolute;
  left: -180px;
  top: 85px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 2px solid rgba(199,157,58,0.08);
  box-shadow:
    0 0 0 28px rgba(199,157,58,0.05),
    0 0 0 58px rgba(199,157,58,0.035),
    0 0 0 90px rgba(199,157,58,0.02);
  pointer-events: none;
}

/* imagen decorativa derecha */
.contact::after{
  content: "";
  position: absolute;
  right: -35px;
  top: 118px;
  width: 420px;
  height: 620px;
  border-radius: 140px 0 0 140px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.12) 46%, rgba(255,255,255,0.08) 100%),
    url("./images/contacto-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .62;
  pointer-events: none;
}

.contact__container{
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

/* ===== TITULARES ===== */
.contact__info h2,
.quote-form h2{
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  color: var(--title);
}

.contact__decor{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 24px;
  color: var(--gold);
}

.contact__decor span{
  width: 110px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__decor strong{
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-1px);
}

.contact__intro{
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 17px;
  line-height: 1.58;
  color: var(--text);
}

.contact__decor--center{
  margin-top: 16px;
  margin-bottom: 20px;
}

/* ===== COLUMNA IZQUIERDA ===== */
.contact__cards{
  display: grid;
  gap: 14px;
}

.infocard{
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10, 20, 50, 0.05);
  box-shadow: var(--shadow-soft);
}

.infocard__icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(199,157,58,0.05);
  border: 1px solid rgba(199,157,58,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.infocard__body h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.infocard__body p{
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

.infocard__body span{
  display: inline-block;
  margin: 0 14px;
  color: rgba(13, 20, 44, 0.28);
}

/* ===== BLOQUE POR QUÉ ELEGIR ===== */
.contact__why{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.90);
  border: 1.5px solid rgba(199,157,58,0.58);
  box-shadow: var(--shadow-soft);
}

.contact__why-icon{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(199,157,58,0.05);
  border: 1px solid rgba(199,157,58,0.26);
  font-size: 22px;
}

.contact__why h3{
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
}

.reasons__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.reasons__list li{
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #2d3442;
  line-height: 1.45;
}

.reasons__list li::before{
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  color: var(--gold);
}

/* ===== FORMULARIO DERECHO ===== */
.quote-form{
  padding: 34px 34px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}

.contactform__hint{
  margin: 0 auto 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  max-width: 640px;
}

.formgrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field{
  position: relative;
}

.field label{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field input,
.field textarea,
.field select{
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(11, 21, 58, 0.12);
  background-color: rgba(255,255,255,0.96);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #394150;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.field input,
.field select{
  height: 58px;
  padding: 0 16px 0 52px;
}

.field textarea{
  min-height: 112px;
  padding: 16px 16px 16px 52px;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder,
.field select{
  color: #5e6676;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: rgba(199,157,58,0.72);
  box-shadow: 0 0 0 4px rgba(199,157,58,0.10);
  background-color: #fff;
}

.grid-span{
  grid-column: 1 / -1;
}

/* ===== ICONOS DENTRO DE CAMPOS ===== */
.field::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .85;
  pointer-events: none;
}

.field:has(#c-mensaje)::before{
  top: 22px;
  transform: none;
}

/* Nombre */
.field:has(#c-nombre)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* Teléfono */
.field:has(#c-telefono)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.34 1.78.65 2.62a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.46-1.22a2 2 0 0 1 2.11-.45c.84.31 1.72.53 2.62.65A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

/* Email */
.field:has(#c-email)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");
}

/* Destino */
.field:has(#c-destino)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* Fecha */
.field:has(#c-fecha)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

/* Viajeros */
.field:has(#c-personas)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

/* Presupuesto */
.field:has(#c-presupuesto)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1v22'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7H14.5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}

/* Mensaje */
.field:has(#c-mensaje)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.1 2.1 0 1 1 3 3L7 19l-4 1 1-4 12.5-12.5z'/%3E%3C/svg%3E");
}

/* Flechas derechas en campos tipo select visual */
.field:has(#c-destino)::after,
.field:has(#c-personas)::after,
.field:has(#c-presupuesto)::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: .7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576274' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* ===== BOTÓN ENVIAR ===== */
.btn-send{
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 340px);
  height: 58px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #07163f 0%, #0a2370 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  box-shadow:
    0 12px 26px rgba(7,22,63,0.25),
    inset 0 1px 1px rgba(255,255,255,0.16);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.btn-send:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 34px rgba(7,22,63,0.30),
    inset 0 1px 1px rgba(255,255,255,0.16);
}

.btn-send__icon{
  font-size: 18px;
  line-height: 1;
}

/* ===== FRANJA DE BENEFICIOS ===== */
.contact__features{
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 42px auto 0;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(199,157,58,0.34);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.feature-contact{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid rgba(199,157,58,0.34);
}

.feature-contact:last-child{
  border-right: none;
}

.feature-contact__icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(199,157,58,0.05);
  border: 1px solid rgba(199,157,58,0.28);
  font-size: 21px;
}

.feature-contact h3{
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.feature-contact p{
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px){
  .contact__container{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact::after{
    width: 300px;
    height: 500px;
    opacity: .28;
  }
}

@media (max-width: 900px){
  .contact__features{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-contact{
    border-right: none;
    border-bottom: 1px solid rgba(199,157,58,0.24);
    padding: 0 0 18px;
  }

  .feature-contact:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }

  .reasons__list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .contact{
    padding: 80px 16px 54px;
  }

  .quote-form{
    padding: 28px 18px 22px;
    border-radius: 22px;
  }

  .formgrid{
    grid-template-columns: 1fr;
  }

  .infocard{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact__why{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact__decor span{
    width: 68px;
  }

  .feature-contact{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact::after{
    display: none;
  }
}


/* ==============================
   NUESTROS VIAJEROS / REFERENCIAS
============================== */

.Referencias{
  position: relative;
  overflow: hidden;
  padding: 70px 24px 80px;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(68,111,180,0.16), transparent 62%),
    radial-gradient(700px 420px at 92% 35%, rgba(201,164,59,0.10), transparent 65%),
    linear-gradient(180deg, #071630 0%, #06122a 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.Referencias::before{
  content: "";
  position: absolute;
  right: -70px;
  top: 120px;
  width: 360px;
  height: 170px;
  border-top: 2px dashed rgba(201,164,59,0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.Referencias::after{
  content: "✈";
  position: absolute;
  right: 96px;
  top: 80px;
  font-size: 42px;
  color: rgba(201,164,59,0.35);
  transform: rotate(-18deg);
  pointer-events: none;
}

.Referencias_container{
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
}

.Referencias__head{
  text-align: center;
  margin-bottom: 36px;
}

.Referencias__head::before{
  content: "✈";
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  color: #c9a43b;
  font-size: 28px;
  line-height: 1;
}

.Referencias__head h2{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .4px;
  color: #ffffff;
  text-transform: none;
}

.Referencias__head h2::first-letter{
  color: #ffffff;
}

.Referencias__head p{
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.76);
}


/*COLUMNAS*/

.Referencias__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 360px));
  justify-content: center;
  gap: 100px;
}

.Referencias_clientes{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  color: #071630;
  box-shadow: 0 24px 55px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
  height: auto;
}

.Referencias_clientes:hover{
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.28);
}

/* Imagen superior por CSS 
.Referencias_clientes::before{
  content: "";
  display: none;
  height: 235px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
} */

.Referencias__media{
  width: 100%;
  height: auto;
  overflow: hidden;
}

.Referencias__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* círculo dorado con comillas */
.Referencias_clientes .svc-card__icon{
  position: absolute;
  left: 50%;
  top: 205px;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b78f3c, #d8bd66);
  border: 5px solid #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.20);
  color: #ffffff;
  z-index: 3;
}

.Referencias_clientes .svc-card__icon svg{
  display: none;
}

.Referencias_clientes .svc-card__icon::before{
  content: "“";
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1;
  transform: translateY(5px);
}

/* cuerpo */
.Referencias_clientes h3{
  margin: 58px 28px 10px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 700;
  color: #071630;
}

/* estrellas */
.Referencias_clientes h3::before{
  content: "★★★★★  5.0";
  display: block;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #c9a43b;
}

/* destino bajo nombre */
.Referencias_clientes h3::after{
  content: "📍 Brasil";
  display: block;
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #b78f3c;
}

.Referencias_clientes:nth-child(2) h3::after{
  content: "📍 Curazao";
}

.Referencias_clientes:nth-child(3) h3::after{
  content: "📍 España";
}

.Referencias_clientes p{
  position: relative;
  margin: 20px auto 0;
  padding: 22px 34px 34px;
  max-width: 390px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  color: #5d6573;
}

.Referencias_clientes p::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #c9a43b, transparent);
}




























/*======= FOOTER FINAL ======*/
/* ==============================
   FOOTER PREMIUM - SIN SUSCRIPCIÓN
============================== */

.site-footer{
  position: relative;
  overflow: hidden;
  padding: 90px 70px 100px;
  background:
    radial-gradient(700px 360px at 18% 20%, rgba(68, 111, 180, 0.16), transparent 65%),
    radial-gradient(700px 360px at 85% 18%, rgba(201, 164, 59, 0.08), transparent 65%),
    linear-gradient(180deg, #071630 0%, #06122a 100%);
  color: rgba(255,255,255,0.86);
  font-family: "Montserrat", sans-serif;
  border-top: 3px solid #c9a43b;
}

/* avión decorativo superior derecho */
.site-footer::before{
  content: "✈";
  position: absolute;
  right: 62px;
  top: 15px;
  font-size: 46px;
  color: rgba(201,164,59,0.22);
  transform: rotate(-18deg);
  pointer-events: none;
}

/* líneas del avión */
.site-footer::after{
  content: "";
  position: absolute;
  right: 88px;
  top: 88px;
  width: 260px;
  height: 120px;
  border-top: 1px solid rgba(201,164,59,0.10);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

/* ==============================
   CONTENIDO PRINCIPAL
============================== */

.footer__inner{
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns:  300px 230px 245px 310px;
  column-gap: 42px;
   justify-content: center;
   transform: translateX(-70px);
}

/* ==============================
   BRAND / LOGO
============================== */

.footer__brand{
  text-align: center;
  max-width: 350px;
  justify-self: start;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__logo img{
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;

  /* Útil si tu logo es azul y quieres verlo claro sobre fondo oscuro.
     Si tienes logo blanco, elimina este filter. */
  filter: brightness(0) invert(1);
}

.footer__brand p{
  max-width: 285px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.footer__decor{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto 28px;
  color: #c9a43b;
}

.footer__decor span{
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a43b, transparent);
}

.footer__decor strong{
  font-size: 24px;
  line-height: 1;
  transform: rotate(-8deg);
}

/* redes */
.footer__social{
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer__social a{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #c9a43b;
  border: 1px solid rgba(201,164,59,0.78);
  background: rgba(255,255,255,0.02);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.footer__social a:hover{
  transform: translateY(-4px);
  background: #c9a43b;
  color: #071630;
}

.footer__social span{
  font-size: 22px;
  font-weight: 800;
}

/* ==============================
   COLUMNAS
============================== */
.footer__col,
.footer__contact{
  width: 100%;
  max-width: none;
}

.footer__contact{
  min-width: 300px;
}

.footer__contact-list li{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
}

.footer__contact-list span{
  word-break: normal;
  overflow-wrap: anywhere;
}


.footer__col h3,
.footer__contact h3{
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.footer__col h3::after,
.footer__contact h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, #c9a43b, transparent);
}

.footer__title-icon{
  color: #c9a43b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* listas servicios y destinos */
.footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li{
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.footer__links a{
  position: relative;
  display: block;
  padding: 17px 0 17px 34px;
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.35;
  transition: color .25s ease, padding-left .25s ease;
}

.footer__links a::before{
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a43b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.footer__links a:hover{
  color: #e6c978;
  padding-left: 42px;
}

/* destinos con pin */
.footer__links--pin a::before{
  content: "⌖";
  font-size: 22px;
}

.footer__links,
.footer__links--pin{
  list-style: none !important;
  padding-left: 0 !important;
}

.footer__links li,
.footer__links--pin li{
  list-style: none !important;
}

.footer__links a,
.footer__links a:visited{
  color: rgba(255,255,255,0.86) !important;
  text-decoration: none !important;
}

/* ==============================
   CONTACTO
============================== */

.footer__contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
}

.footer__contact-list li{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.65;
}

.footer__contact-list span{
  word-break: break-word;
}

.footer__contact-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #c9a43b;
  border-radius: 50%;
}

/* ==============================
   BOTTOM
============================== */

.footer__bottom{
grid-column: 1 / -1;
  width: 100%;
  max-width: 1320px;
  margin: 80px auto 0;
  padding-top: 34px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;

  text-align: center;
  border-top: 1px solid rgba(201,164,59,0.52);
}

.footer__copy{
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  gap: 16px;
  color: rgba(255,255,255,0.84);
}

.footer__copy > span{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9a43b;
  border: 1px solid #c9a43b;
  font-size: 18px;
}

.footer__copy p{
  margin: 0;
  font-size: 16px;
}

.footer__legal{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.footer__legal li{
  position: relative;
}

.footer__legal li:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(201,164,59,0.55);
}

.footer__legal a{
  text-decoration: none;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  transition: color .25s ease;
}

.footer__legal a:hover{
  color: #e6c978;
}

/* mapa decorativo */
.footer__map{
  position: relative;
  height: 100px;
  opacity: .85;
}

.footer__map::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,164,59,0.55) 1px, transparent 1.2px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at center, black 0 60%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0 60%, transparent 72%);
  opacity: .45;
}

.footer__map span{
  position: absolute;
  right: 8px;
  bottom: 10px;
  color: #c9a43b;
  font-size: 42px;
  transform: rotate(-20deg);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1180px){
  .footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 56px 48px;
  }

  .footer__brand{
    grid-column: 1 / -1;
  }

  .footer__bottom{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer__copy{
    justify-content: center;
  }
}

@media (max-width: 760px){
  .site-footer{
    padding: 76px 20px 38px;
  }

  .footer__inner{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer__col h3,
  .footer__contact h3{
    justify-content: center;
    text-align: center;
  }

  .footer__col h3::after,
  .footer__contact h3::after{
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__links a{
    text-align: center;
    padding-left: 0;
  }

  .footer__links a::before{
    display: none;
  }

  .footer__contact-list li{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer__legal{
    flex-direction: column;
    gap: 14px;
  }

  .footer__legal li::after{
    display: none;
  }

  .footer__map{
    width: 100%;
  }

  .footer__logo img{
    width: 180px;
  }
}
















/* RESPONSIVE */

@media (max-width: 992px){
  .contact__container{
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .quote-form{
    padding: 34px 24px;
  }
}

@media (max-width: 640px){
  .contact{
    padding: 90px 16px;
  }

  .quote-form form{
    grid-template-columns: 1fr;
  }

  .contact__why ul{
    grid-template-columns: 1fr;
  }

  .contact__item{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .quote-form button{
    width: 100%;
    min-width: auto;
  }
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){
  .contact__container,
  .contacto__container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form,
  .contacto-form,
  .quote-form{
    padding: 34px 24px;
  }
}

@media (max-width: 640px){
  #contacto,
  .contact,
  .contacto{
    padding: 80px 16px;
  }

  .form-grid,
  .contact-form form,
  .contacto-form form,
  .quote-form form{
    grid-template-columns: 1fr;
  }

  .contact-info article,
  .contacto-info article,
  .contact__item,
  .info-card{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  button,
  .contact-form button,
  .contacto-form button,
  .quote-form button{
    width: 100%;
    min-width: auto;
  }
}















/* ===== Responsive básico ===== */
@media (max-width: 900px){
  nav ul{ gap: 16px; }
  .nav-container{ padding: 0 16px; }
}

@media (max-width: 700px){
  nav{ display: none; } /* para móvil: luego haces menú hamburguesa */
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .services__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .services{
    padding: 70px 16px;
  }

  .services__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .svc-card__media{
    height: 200px;
  }

  .svc-card__body{
    padding: 28px 20px 24px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px){
  .destinations__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .destinations{
    padding: 90px 18px;
  }

  .destinations__head{
    margin-bottom: 42px;
  }

   .destinations__eyebrow{
    font-size: 12px;
    letter-spacing: 2px;
  }

  .destinations__eyebrow::before,
  .destinations__eyebrow::after{
    width: 42px;
  }

   .destinations__head h2{
    font-size: clamp(34px, 8vw, 52px);
  }

  .destinations__head p{
    font-size: 16px;
  }

  .destinations__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

   .destination-card{
    min-height: 410px;
  }

  .destination-card__tag{
    min-width: 126px;
    font-size: 16px;
    padding: 9px 16px;
  }

  .destination-card__place{
    font-size: 16px;
  }
  .destination-card__content h3{
    font-size: 24px;
  }

  .destination-card__price{
    font-size: 20px;
  }

  .destination-card__btn{
    width: 100%;
  }
}



/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1100px){
  .Referencias__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .Referencias{
    padding: 90px 18px;
  }

  .Referencias__grid{
    grid-template-columns: 1fr;
  }

  .Referencias_clientes{
    min-height: 430px;
  }

  .Referencias_clientes::before{
    height: 220px;
  }

  .Referencias_clientes .svc-card__icon{
    top: 190px;
  }

  .Referencias_clientes h3{
    font-size: 23px;
  }
}