/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* =========================
   BODY (DESIGN SYSTEM)
========================= */
body {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 15%,
    var(--color-azul-04) 100%
  );

  color: var(--color-blanco);
}

/* =========================
   OVERLAY FIGMA EXACTO
========================= */
.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    #2B3752 100%
  );

  z-index: 1;
}
/* =========================
   NAVBAR CONTENEDOR
========================= */
.navbar {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1100px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 100;
}


/* =========================
   NAV GLASS (PILL FIGMA)
========================= */
.nav-glass {
  display: flex;
  align-items: center;
  gap: var(--space-4);

  padding: 6px;
  border-radius: var(--radius-full);

  /* 🔥 GLASS EFFECT */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 
    var(--shadow-3),
    inset 0 0 10px rgba(255,255,255,0.1);
}


/* =========================
   LINKS NAV
========================= */
.nav-glass a {
  color: var(--color-claro);
  text-decoration: none;

  padding: 10px 16px;

  font-size: var(--font-button);
  font-weight: 500;

  transition: var(--transition-fast);
}

.nav-glass a:hover {
  opacity: 0.8;
}



/* LINKS */
.nav-glass a {
   color: var(--color-claro);
  text-decoration: none;

  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.nav-glass a:hover {
  color: var(--color-claro);
}

/* =========================
   BOTÓN COTIZAR (f)
========================= */
.nav-glass .btn-pill {
  background: var(--color-claro);
  color: var(--color-azul);

  padding: 10px 22px;
  border-radius: var(--radius-full);

  font-weight: 600;

  box-shadow: var(--shadow-2);

  transition: var(--transition-fast);
}

.nav-glass .btn-pill:hover {
  background: var(--color-beige);
  color: var(--color-azul);

  transform: translateY(-1px);
}
.nav-glass .btn-pill:hover {
  background: var(--color-azul-04);
  color: var(--color-blanco);
}

/* BOTÓN COTIZAR (CLAVE) */
.btn-pill {
  background: rgba(255,255,255,0.9);
  color: #1e293b;

  padding: 10px 20px;
  border-radius: 30px;

  font-weight: 600;
  transition: 0.3s;
}

.btn-pill:hover {
  background: #868FA5;
  transform: translateY(-1px);
}

/* =========================
   HERO BASE
========================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* FONDO */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



/* =========================
   CONTENIDO
========================= */
.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* TITULO */
.hero-title {
 color: var(--color-blanco);
  font-size: 3rem;
  font-weight: 700;
}

/* SUBTITULO */
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
}

/* =========================
   BUSCADOR
========================= */
.search-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.search-box {
  display: flex;
  align-items: center;

  width: 420px;
  max-width: 90%;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);

  border-radius: 50px;
  padding: 8px;
}

/* INPUT */
.input-container {
  position: relative;
  flex: 1;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;

  background: transparent;
  color: var(--color-azul);

  padding: 12px 20px;
}

.search-box input::placeholder {
   color: var(--color-azul-02);
}

/* BOTÓN */
.search-box button {
  background: #2563eb;
  color: #1E2943;

  border: none;
  border-radius: 30px;

  padding: 10px 20px;
  cursor: pointer;
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
  position: absolute;
  width: 100%;
  top: 50px;

  background: rgba(43,55,82,0.95);
  backdrop-filter: blur(10px);

  border-radius: 12px;
  overflow: hidden;
}

.option {
  padding: 10px 15px;
   color: var(--color-blanco);
  cursor: pointer;
}

.option:hover {
  background: rgba(255,255,255,0.1);
}

.hidden {
  display: none;
}

/* =========================
   ELEMENTOS DECORATIVOS
========================= */
.plane {
  position: absolute;
  bottom: 100px;
  left: 60px;
  width: 80px;
  z-index: 1;
}

.cloud {
  position: absolute;
  width: 200px;
}

.cloud-left {
  bottom: 120px;
  left: 80px;
}

.cloud-right {
  bottom: 140px;
  right: 100px;
}
/* =========================
   DROPDOWN
========================= */
.dropdown {
  position: absolute;
  top: 55px;
  left: 0;

  width: 100%;

  background: transparent;
  backdrop-filter: blur(10px);

  border-radius: 15px;
  padding: 10px;

  box-shadow: 0 20px 40px  #1E2943;
  z-index: 20;
}

/* OPCIONES */
.option {
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.option:hover {
  background:  #1E2943;
}

/* OCULTO */
.hidden {
  display: none;
}
/* =========================
   DESTINOS
========================= */
.destinos {
  padding: 100px 40px;
  text-align: center;
  background: var(--color-azul);
}

/* TITULO */
.destinos h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

/* SUBTITULO */
.destinos .subtitle {
  margin-top: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* CONTENEDOR */
.destinos-container {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  padding: 20px 10px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* evita que se centren */
  justify-content: flex-start;
}
/* =========================
   CARD
========================= */
.card {
  min-width: 260px;
  max-width: 260px;

  flex-shrink: 0;

  border-radius: 20px;
  overflow: hidden;

  background: var(--color-blanco);
  text-decoration: none;

  scroll-snap-align: start;

  box-shadow: var(--shadow-2);
  transition: var(--transition-fast);
}

/* HOVER */
.card:hover {
  transform: translateY(-5px) scale(1.02);
}

/* =========================
   IMAGEN
========================= */
.card-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card:hover img {
  transform: scale(1.08);
}

/* BADGE (PAÍS) */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);

  padding: 6px 10px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
  color: #334155;

  box-shadow: var(--shadow-1);
}

.flag-icon {
  width: 18px;
  height: 12px;

  object-fit: cover;
  border-radius: 2px;
}
/* =========================
   TEXTO
========================= */
.card-text {
  background: var(--color-gris);
  padding: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITULO */
.card-text h4 {
   color: var(--color-text-strong);
  font-weight: 600;
}

/* INFO */
.card-text p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
/* =========================
   SECCIONES GENERALES
========================= */
section {
  padding: 60px;
}

.bg-gray-100 {
  background: #eee;
  color: black;
}

.text-center {
  text-align: center;
}

/* =========================
   FAQ
========================= */
details {
  background: white;
  padding: 15px;
  border-radius: 10px;
  color: black;
}

summary {
  cursor: pointer;
  font-weight: bold;
}

/* =========================
   CTA
========================= */
.bg-blue-600 {
  background: #2563eb;
  color: white;
}

/* =========================
   WHATSAPP CTA
========================= */
/* BOTÓN */
.whatsapp-btn {
  position: fixed;
  z-index: 9999; /* 🔥 ESTO LO TRAE AL FRENTE */
  bottom: 30px;
  right: 30px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: var(--color-beige);
  color: var(--color-azul);

  padding: 14px 22px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;
  font-size: 18px;

  box-shadow: var(--shadow-3);
  transition: 0.3s;
}

/* CÍRCULO ROSADO */
.wa-icon {
  width: 30px;
  height: 30px;

  background: #16a34a;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICONO BLANCO */
.wa-icon img {
  width: 16px;
}

/* HOVER */
.whatsapp-btn:hover {
  transform: scale(1.05);
  background: var(--color-azul);
  color: var(--color-beige);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .search-box {
    flex-direction: column;
  }
}

/* =========================
   CONTACTO
========================= */
.contact {
  background: var(--color-azul);
  color: var(--color-claro);
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-text {
  opacity: 0.7;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.8;
}

/* LINKS */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-links a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.contact-links a:hover {
  background: rgba(255,255,255,0.1);
}


/* =========================
   FOOTER
========================= */
.footer {
  background: #020617;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* ✈️ AVIÓN */
.plane {
  position: absolute;
  width: auto;
  bottom: 100px;
  left: 80px;
  z-index: 2;
}

/* ☁️ NUBES */
.cloud {
  position: absolute;
  width: 220px;
  opacity: 0.8;
  z-index: 2;
}

.cloud-left {
  bottom: 140px;
  left: 50px;
}

.cloud-right {
  bottom: 160px;
  right: 60px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 6px;

  border-radius: 50px;

  /* 🔥 EFECTO VIDRIO */
  background: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 
    0 8px 30px rgba(0,0,0,0.25),
    inset 0 0 10px rgba(255,255,255,0.1);
}

/* CONTACTO (BLANCO) */
.nav-pill .contacto {
  padding: 10px 18px;
  color: white ;
  font-weight: 500;
  opacity: 0.9;
}

/* COTIZAR (CAFÉ/DORADO) */
.nav-pill .cotizar {
  background: #FFF8F0; /* 🔥 azul oscuro elegante */
  color: #2B3752;

  padding: 10px 22px;
  border-radius: 30px;

  font-weight: 600;

  box-shadow: 0 5px 15px #2B3752;
}

.nav-pill:hover {
  background: white;
}

.nav-pill .cotizar:hover {
  background: #DEA465;
  color: #2B3752;
}

.dropdown {
  background: rgba(43, 55, 82, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
}

.dropdown .option {
  padding: 12px 16px;
  cursor: pointer;
  color: white;
  transition: 0.2s;
}
/* =========================
   SECCIÓN DESTINOS
========================= */
.destinos {
  padding: 100px 40px;
  background: var(--color-azul);
  text-align: center;
}

.destinos h3 {
  font-size: 2.5rem;
  color: var(--color-claro);
  margin-bottom: 10px;
}

.destinos .subtitle {
  color: var(--color-azul-03);
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 0.9rem;
}

/* CONTENEDOR */
.destinos-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* =========================
   CARD
========================= */
.card {
  width: 260px;
  text-decoration: none;
  position: relative;
}

/* IMAGEN */
.card-img {
  height: 200px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

/* =========================
   BADGE (PAÍS)
========================= */
.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);

  padding: 6px 12px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

/* =========================
   CONTENIDO INFERIOR
========================= */
.card-text {
  background: #e5e7eb;
  padding: 18px;
  border-radius: 0 0 20px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITULO */
.card-text h4 {
  font-size: 1rem;
  color: #334155;
}

/* SUBTEXTO */
.card-text p {
  font-size: 0.85rem;
  color: #6b7280;
}
/* HERO TEXTO */
.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

/* SUBTEXTO */
.hero-subtitle {
  color: rgba(255,255,255,0.85); /* blanco suave elegante */
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
}

.search-wrapper {
  margin-top: 25px;
}

.search-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}

/* CONTENEDOR */
.search-wrapper {
  margin-top: 30px;

  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* INPUT COMO BOTÓN */
.input-container input {
  width: 260px;

  padding: 14px 25px;
  border-radius: 50px;
  border: none;

  background: #d1d5db;
  color: #1e293b;

  font-weight: 600;
  cursor: pointer;

  text-align: center;

  transition: 0.3s;
}

.input-container input::placeholder {
  color: #1e293b;
}

.input-container input:hover {
  background: white;
  transform: translateY(-2px);
}

/* BOTÓN SECUNDARIO */
.btn-secondary {
  padding: 14px 30px;
  border-radius: 50px;

  background: transparent;
  border: 2px solid #f3b6a7;
  color: #f3b6a7;

  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f3b6a7;
  color: #1e293b;
  transform: translateY(-2px);
}

/* =========================
   WHY US (FIX FIGMA)
========================= */

.why-us {
  padding: 120px 80px;
  background: var(--color-blanco);
}

/* CONTENEDOR */
.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* TEXTO */
.why-text {
  max-width: 520px;
}

/* TAG */
.tag {
  font-size: 12px;
  color: var(--color-beige);
  letter-spacing: 2px;
  font-weight: 600;
}

/* 🔥 TITULO GRANDE COMO FIGMA */
.why-title {
  font-size: 42px;
  line-height: 1.2;
  color: var(--color-azul);

  margin: 20px 0;
}

/* DESCRIPCIÓN */
.why-desc {
  font-size: 16px;
  color: var(--color-negro);
  line-height: 1.6;

  margin-bottom: 40px;
}

/* ITEMS */
.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ITEM */
.why-item {
  
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 🔥 ICONOS GRANDES */
.icon {
  width: 74px;
  height: 74px;

  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  flex-shrink: 0;
}

.icon img {
  width: 74px;
}

/* TITULO ITEM */
.why-item h4 {
  font-size: 22px;
  font-weight: 700;

  color: var(--color-azul-02);
}

/* TEXTO ITEM */
.why-item p {
  font-size: 15px;
  color: var(--color-negro);
}

/* =========================
   IMAGENES (FIX FIGMA)
========================= */

/* CONTENEDOR BEIGE */
.why-images {
  position: relative;

  width: 568.94px;
  height: 723px;

  background: transparent;
  border-radius: 24px;

  

  display: flex;
  align-items: center;
  justify-content: center;
}

/* PNG FONDO */
.why-bg {
  position: absolute;
  width: 120%;
  opacity: 0.6;
}

/* IMAGEN PRINCIPAL */
.img-main {
  position: absolute;

  width: 568.94px;
  height: 723px;
  top: 40px;
  left: 40px;

  border-radius: 18px;
  z-index: 2;
}

/* IMAGEN FLOTANTE */
.img-float {
  position: absolute;

  width: 200px;
  bottom: 40px;
  right: 20px;

  border-radius: 18px;

  border: 6px solid var(--color-blanco);

  z-index: 3;
}
/* CONTAINER */
/* =========================
   FLAG BADGE (imagen)
========================= */
.flag-badge {
  position: absolute;
  top: 10px;
  left: 10px;

  width: 28px;
  height: 28px;

  object-fit: cover;
  border-radius: 50%;

  border: 2px solid white;

  z-index: 10;

  box-shadow: var(--shadow-2);
}

/* =========================
   BADGE TEXTO (PE)
========================= */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  background: var(--color-blanco);
  color: var(--color-azul);

  padding: 5px 10px;
  border-radius: 20px;

  font-size: 11px;
  font-weight: 600;

  box-shadow: var(--shadow-1);
}


/* =========================
   TITLE
========================= */
.card-title {
  font-size: 16px;
  font-weight: 600;

  color: var(--color-azul);
}

/* =========================
   REVIEWS
========================= */
.reviews {
  padding: 80px 60px;
  background: var(--color-azul-04);
  color: var(--color-blanco);
}

/* CONTENEDOR */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* TEXTO */
.reviews-info h3 {
  font-size: var(--h2);
  margin-bottom: 15px;
}

.reviews-info p {
  font-size: var(--text-body);
  opacity: 0.7;
  margin-bottom: 20px;
  color: var(--color-negro);

}

/* GOOGLE CARD */
.google-card {
  display: flex;
  align-items: center;
  gap: 15px;

  background: var(--color-blanco);
  color: var(--color-azul);

  padding: 15px;
  border-radius: 15px;

  width: fit-content;

  font-size: var(--text-body);
  color: var(--color-negro);
}

.google-card img {
  width: 40px;
}

/* =========================
   SLIDER
========================= */
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

/* CARD */
.review-card {
  min-width: 280px;
  background: var(--color-blanco);
  color: var(--color-azul);

  padding: 20px;
  border-radius: 20px;

  scroll-snap-align: start;

  box-shadow: var(--shadow-2);
}

/* TEXTO */
.review-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* USER */
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.review-user span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/* =========================
   DOTS
========================= */
.reviews-dots {
  margin-top: 20px;
  text-align: center;
}

.reviews-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;

  background: rgba(255,255,255,0.3);
  border-radius: 50%;

  margin: 0 5px;
}

.reviews-dots .active {
  background: var(--color-beige);
}

/* =========================
   LOCATION
========================= */
.location {
  padding: 100px 60px;
  background: var(--color-azul);
  color: var(--color-blanco);
  text-align: center;
}

/* CONTENEDOR */
.location-container {
  max-width: 1100px;
  margin: auto;
}

/* TEXTO */
.location-text h2{
  font-size: var( --text-h2);
  margin-bottom: 15px;
  color: var(--color-blanco);
}

.location-text p {
  opacity: 0.7;
  max-width: 600px;
  margin: auto;
  margin-bottom: 40px;
  font-size: var(--text-body);
}

/* =========================
   MAPA
========================= */
.location-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: var(--shadow-3);
 
 
}

/* MAPA */
.location-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 20px;
}

/* =========================
   DECORACIONES
========================= */
.plane-left {
  position: absolute;
  left: -40px;
  top: 40%;
  width: 60px;
  opacity: 0.7;
}

.plane-right {
  position: absolute;
  right: -40px;
  top: 20%;
  width: 60px;
  transform: rotate(180deg);
  opacity: 0.7;
}

/* ✈️ IMAGEN DE FONDO */
.plane-bg {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 1400px;
  top: 55%;
  opacity: 1;
  
  z-index: 0.5;
  pointer-events: none;
}

.location {
  padding: 100px 60px;
  background: var(--color-azul);
}

/* 👇 SOLO AQUÍ VA EL AVIÓN */
.location-bg {
  position: relative;
  overflow: hidden;
}

/* AVIÓN COMO FONDO */
.location-bg::before {
  content: "";
  position: absolute;

  inset: 0;

  background-image: url("img/plane-path.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1100px;

  opacity: 0.25;
  z-index: 0;
}

/* CONTENIDO ARRIBA */
.location-container {
  position: relative;
  z-index: 2;
}

/* =========================
   FAQ
========================= */
.faq {
  padding: 100px 20px;
  background: var(--color-blanco);
  color: var(--color-azul);
  text-align: center;
}

.faq-container {
  max-width: 700px;
  margin: auto;
}

/* TÍTULO */
.faq h2 {
  font-size: var(--text-h2);
  margin-bottom: 10px;
}

/* SUBTEXTO */
.faq-subtitle {
 
  margin-bottom: 40px;
  font-size: var(--text-body);
  color: var(--color-negro);
}

/* ITEM */
.faq-item {
  background: var(--color-blanco);
  border-radius: 30px;
  padding: 15px 20px;
  margin-bottom: 15px;

  border: 1px solid rgba(43,55,82,0.2);

  text-align: left;
  transition: all 0.3s ease;
}

/* HOVER */
.faq-item:hover {
  background: var(--color-gris);
  border-color: var(--color-azul);
}

/* SUMMARY */
.faq-item summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-weight: 600;
}

/* ICONO */
.faq-item .icon {
  font-size: 18px;
  opacity: 0.6;
}

/* TEXTO */
.faq-item p {
  font-size: var(--text-body);
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
  color: var(--color-negro);
  
}

/* QUITAR FLECHA NATIVA */
summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] .icon {
  content: "×";
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    var(--color-azul),
    #1E2A44
  );
  display: flex;
  justify-content: center;
}

.cta-box {
  width: 100%;
  max-width: 1100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  padding: 40px 60px;

  border-radius: 40px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);

  backdrop-filter: blur(20px);

  box-shadow: var(--shadow-2);
}

/* TEXTO */
.cta-text h2 {
  font-size: var(--text-h3);
  color: var(--color-blanco);
}

.cta-tag {
  font-size: var(--text-h3);
  color: var(--color-beige);
  font-weight: 600;
}

/* =========================
   FIX BOTONES CTA FINAL
========================= */

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BASE */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  white-space: nowrap;
}

/* PRIMARIO */
.btn-primary {
  background: var(--color-blanco);
  color: var(--color-azul);
}

.btn-primary:hover {
  background: var(--color-beige);
  color: var(--color-azul);
  transform: scale(1.05);
}

/* SECUNDARIO */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-rosa-03);
  color: var(--color-rosa-03);
}

.btn-secondary:hover {
  background: var(--color-beige);
  color: var(--color-blanco);
  transform: scale(1.05);
}


/* =========================
   FOOTER PRO
========================= */
.footer-pro {
  background: linear-gradient(
    to bottom,
    #1E2A44,
    #141C2E
  );
  padding: 60px 20px;
  color: var(--color-blanco);
}

/* CONTENEDOR */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LOGO */
.footer-brand img {
  width: 160px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
  opacity: 0.6;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
 
  color: var(--color-blanco);
  margin-bottom: 10px;
  font-size: var(--text-btn);
  opacity: 0.7;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: var(--color-blanco);
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

/* REDES */
.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 10px;
}

.circle {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-accent);
  color: var(--color-azul);

  border-radius: 50%;
  text-decoration: none;

  transition: 0.3s;
}

.circle:hover {
  transform: scale(1.1);
}

/* TEL */
.phone {
  font-size: 14px;
  opacity: 0.7;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

}

#contacto {
  scroll-margin-top: 120px;
}

/* =========================
   GALERÍA
========================= */

.gallery {
  padding: 80px 0;
  background: var(--color-azul);
}

.gallery-header {
  text-align: left;
  margin-bottom: 30px;
}

.gallery-header h2 {
  font-size: 32px;
  color: var(--color-blanco);
}

.gallery-header p {
  color: var(--color-blanco);
  opacity: 0.8;
}

/* CONTENEDOR SCROLL */
.gallery-slider {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  padding-bottom: 10px;

  scroll-snap-type: x mandatory;
}

/* SCROLL BONITO */
.gallery-slider::-webkit-scrollbar {
  height: 6px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* CARD */
.gallery-card {
  min-width: 260px;
  height: 380px;

  flex-shrink: 0;
  scroll-snap-align: start;

  border-radius: 20px;
  overflow: hidden;

  background: white;
  padding: 10px;

  box-shadow: var(--shadow-2);
  transition: transform 0.3s ease;
}

/* IMAGEN */
.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover; /* 🔥 evita deformación */
  border-radius: 15px;
}

/* HOVER */
.gallery-card:hover {
  transform: translateY(-5px);
}