/* =========================
   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);
}
html, body {
  overflow-x: hidden;
}

/* =========================
   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;
  pointer-events: none;
}
/* =========================
   NAVBAR CONTENEDOR
========================= */
.navbar {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  max-width: 1100px;

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

  z-index: 99999;
}


/* =========================
   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(12px);
  -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;
   /* 🔥 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);

  
}



/* 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);
   /* 🔥 GLASS EFFECT */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-full);

  border: 1px solid rgba(255,255,255,0.2);

  
}

/* =========================
   BOTÓN COTIZAR (f)
========================= */
.nav-glass .btn-pill {
  background: var(--color-azul-04);
  color: var(--color-azul);

  padding: 10px 22px;
  border-radius: var(--radius-full);

  font-weight: 600;

 

  transition: var(--transition-fast);
}

.nav-glass .btn-pill:hover {
  background: var(--color-rosa);
  color: var(--color-azul);

 
  
  
}

/* 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;
  
}

/* =========================
   HERO BASE
========================= */
.hero {
  position: relative;
  height: 800px;
  min-height: 90vh;
  
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* FONDO */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



/* =========================
   CONTENIDO
========================= */
.hero-content {
  display: flex;
  flex-direction: column;

  align-items: center;   /* 🔥 centra horizontal */
  text-align: center;    /* 🔥 centra texto */

  max-width: 1100px;
  margin: 0 auto;
}

/* TITULO */
.hero-title {
 color: var(--color-blanco);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  
}

/* SUBTITULO */
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom:30px;
}

/* =========================
   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 COMO BOTÓN
========================= */

.input-container input {
  width: 100%;

  padding: 14px 20px;

  border-radius: 50px;
  border: none;
  outline: none;

  background: var(--color-blanco);
  color: var(--color-azul);

  font-size: 16px;
  text-align:center;
  font-weight: 600;

  cursor: pointer; /* 🔥 clave */
  transition: all 0.25s ease;
}

.input-container input:hover {
  transform: scale(1.03);
  background: var(--color-rosa);
  color: var(--color-azul);
}
/* =========================
   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;
}

/* =========================
   DESTINOS
========================= */
.destinos {
  padding: 80px 0;
  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: var(--color-blanco);
  font-size: 0.9rem;
}

/* CONTENEDOR */
.destinos-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.card {
  width: 220px;              /* 🔥 más angosta */
  height: 410;
  border-radius: 20px;
  overflow: hidden;

  background: #f5f5f5;

  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGEN */
.card-img {
  width: 100%;
  height: 410px;             /* 🔥 más alta */
  overflow: hidden;
}

.card-img img {
  width: 50%;
  height: 100%;
  object-fit: cover;         /* 🔥 mantiene proporción bonita */
}

/* TEXTO */
.card-text {
  padding: 14px;
}

.card-text h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card-text p {
  font-size: 14px;
  opacity: 0.7;
}
/* BADGE (PAÍS) */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(255, 255, 255, 0.50);
  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
========================= */

/* =========================
   SECCIONES GENERALES
========================= */
section {
  padding: 100px 0;
}

.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-rosa);
  color: var(--color-azul);

  padding: 28px 28px;
  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: transparent;
  border-radius: 50%;

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

/* ICONO BLANCO */
.wa-icon img {
  width: 50px;
}

/* HOVER */
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: var(--color-beige);
  color: var(--color-beige);
}

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

/* =========================
   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: var(--color-rosa-03); /* 🔥 azul oscuro elegante */
  color: #2B3752;

  padding: 10px 22px;
  border-radius: 30px;

  font-weight: 600;

  box-shadow: 0 5px 15px #2B3752;
}

.nav-pill:hover {
  background: var(--color-beige);
}

.nav-pill .cotizar:hover {
  background: #DEA465;
  color: #2B3752;
}


/* =========================
   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-blanco);
  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: 310px;
  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);
}



/* =========================
   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;
}


/* BOTÓN SECUNDARIO */
.btn-secondary {
  padding: 14px 30px;
  
  background: transparent;
  border: 2px solid var(--color-rosa-03);
 
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.btn-secondary:hover {
  background:var(--color-claro);
  color: var(--color-claro);
  border: 2px solid var(--color-claro);
  transform: translateY(-2px);
}

/* =========================
   WHY US (FIX FIGMA)
========================= */

.why-us {
  padding: 200px 100px;
  background: var(--color-blanco);
}

/* CONTENEDOR */
.why-container {
  display: flex;
  align-items: center;
  
  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);
}


/* =========================
   TITLE
========================= */
.card-title {
  font-size: 16px;
  font-weight: 600;

  color: var(--color-azul);
}

/* =========================
   REVIEWS
========================= */
.reviews {
  padding: 180px 100px;
  background: var(--color-azul-04);
  color: var(--color-blanco);
}

/* CONTENEDOR */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  padding: auto;
}

/* TEXTO */
.reviews-info h2 {
 
  margin-bottom: 15px;
  color: var(--color-azul);
}

.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: #ffffff15;
  color: var(--color-azul);

  padding: 38px 43px;
  border-radius: 15px;

  width: fit-content;

  font-size: var(--text-body);
  color: var(--color-negro);
  box-shadow: var(--shadow-4);
}

.google-card img {
  width: 40px;
}

/* =========================
   SLIDER
========================= */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.reviews-slider {
  overflow: hidden;
  width: 100%;
  padding: auto;
}

.reviews-track {
  display: flex;              /* 🔥 horizontal */
  gap: 20px;

  width: max-content;
}

/* CARD */
.review-card {
  width: 320px;
  flex-shrink: 0;

  background: #f5f5f5;
  border-radius: 20px;
  padding: 80px 42px;
}
/* TEXTO */
.review-card p {
  font-size: var(--text-body);
  margin-bottom: 20px;
  color: var(--color-azul);
}

/* USER */
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-azul);
}

.review-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.review-user span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/* =========================
   DOTS
========================= */


/* =========================
   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 {
  position: relative;
  padding: 120px 0;
  background: var(--color-azul);
  overflow: hidden; /* 🔥 para que no se desborde */
}

/* CONTENEDOR */
.location-bg {
  position: relative;
}

/* AVIÓN IZQUIERDA */
.plane-left {
  position: absolute;
  left: -80px;
  top: 40%;

  width: 280px;
  opacity: 0.9;

  pointer-events: none;
  z-index: 1;
}

/* AVIÓN DERECHA */
.plane-right {
  position: absolute;
  right: -60px;
  top: 10%;

  width: 260px;
  opacity: 0.9;

  pointer-events: none;
  z-index: 1;
}

/* 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 (FIX REAL)
========================= */

.cta-final {
  margin: 0; /* 🔥 elimina espacio fantasma */
  padding: 25px 20px;

  background: var(--color-azul);

  display: flex;
  justify-content: center;
}

/* CAJA INTERNA */
.cta-box {
  width: 100%;
  max-width: 1100px;

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

  padding: 50px 60px;

  border-radius: 30px; /* 🔥 SOLO AQUÍ */

  /* 🔥 GLASS EFFECT */
  background: var(--color-blanco);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 
    var(--shadow-1),
    inset 0 0 10px rgba(255,255,255,0.1);
}
.cta-final::before {
  border-radius: inherit;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-buttons a {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 14px 0;
  border-radius: 999px;

  transition: all 0.25s ease;
}

.cta-buttons a:hover {
  transform: translateY(-2px);
}
/* TEXTO */
.cta-text h2 {
  font-size: var(--text-h3);
  color: var(--color-blanco);
}

.cta-tag1 {
  font-size: var(--text-h3);
  background: transparent;
  border-color: var(--color-azul);
  color: var(--color-beige);
}
.cta-tag {
  background: var(--color-rosa);
  color: var(--color-azul);

  text-decoration: none;
  font-weight: 600;

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

  border-radius: 999px;
  padding: 14px 0;
}

.cta-tag:hover {
  background: var(--color-azul);
  
  color: var(--color-rosa);
}
/* =========================
   FIX BOTONES CTA FINAL
========================= */

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cta-buttons a {
  width: 220px;              /* ajusta según diseño */
  text-align: center;

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

  padding: 14px 0;
  border-radius: 999px;
}

.cta-box {
  border-radius: 30px;       /* 🔥 esquinas suaves */
  overflow: hidden;          /* 🔥 corta ese borde feo */

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.15);
}
/* 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;
 
  color: var(--color-rosa-03);
}

.btn-secondary:hover {
  background: var(--color-claro);
  color: var(--color-rosa-02);
 
  transform: scale(1.05);
}


.footer-pro {
  position: relative;
  background: var(--color-azul);
  padding: 80px 0;
  overflow: hidden;
}

/* CONTENEDOR */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: left;
  gap: 60px;

  max-width: 1100px;
  margin: 0 auto;

  position: relative;
  z-index: 2;
  left: 25px;
  bottom: 20px;
}

/* LOGO */
.footer-brand img {
  width: 200px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  left: 5px;
  bottom: 20px;
}

/* LINKS */
.footer-links {
  display: center;
  gap: 60px;
   align-items: center;
}

.footer-plane {
  display: flex;
  margin-bottom: 20px;
  width: 5px;
  right: 200px;
  bottom: 0px;
}





.footer-col h4 {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: white;
  margin: 6px 0;
  text-decoration: none;
  font-size: 14px;

  transition: 0.2s;
}

.footer-col a:hover {
  opacity: 0.6;
}

/* REDES */
.footer-social {
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 15px;
}



.circle img {
  width: 60px;
}

/* TELÉFONO */
.phone {
  color: white;
  font-size: 14px;
}

.phone img {
  width: 16px;
  margin-right: 6px;
}
.footer-plane {
  position: absolute;
  right: 200px;
  top: 0;

  width: 300px;
  

  pointer-events: none;
}
.footer-pro::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--color-azul);
}
/* =========================
   RESPONSIVE
========================= */


#contacto {
  scroll-margin-top: 120px;
}

/* =========================
   GALERÍA
========================= */

.gallery {
  padding: 80px 0;
  background: var(--color-azul-04);
}

.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);
}

/* NAVBAR BASE */

/* GLASS PILL */
.nav-glass {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 20px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* LINKS */
.nav-glass a,
.dropdown-toggle {
  color: white;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
}

/* BOTÓN */
.btn-pill {
  background: white;
  color: black;
  padding: 8px 16px;
  
}
/*##############################################*/
.dropdown {
  position: absolute;
  top: 120%;
  left: 50%;

  width: 240px;
  padding: 18px 12px;

  border-radius: 22px;

  background: var(--color-azul);

  border: 1px solid var(--color-azul);

  box-shadow:
    0 20px 60px var(--color-azul),
    inset 0 0 10px var(--color-azul);

  z-index: 9999;

  /* 🔥 SOLO UN TRANSFORM */
  transform: translate(-50%, 10px);

  opacity: 0;
  visibility: hidden;

  transition: all 0.25s ease;
}

.dropdown-nav {
  position: relative;
}
.dropdown-nav:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* opciones */
.option {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  padding: 12px;
  margin: 6px 0;

  border-radius: 14px;

  font-size: 17px;
  font-weight: 500;

  color: white;
  cursor: pointer;

  transition: all 0.25s ease;
}

.option span {
  opacity: 0.6;
  font-size: 13px;
  letter-spacing: 1px;
}

.option:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.03);
}

/* animación */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/* =========================
   BOTÓN DESTINOS (NAV)
========================= */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  background: transparent;
  border: none;
  outline: none;

  color: var(--color-blanco);
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;

  cursor: pointer;

  padding: 10px 16px;
  border-radius: 999px;

  transition: all 0.25s ease;
  
}

.hidden {
  display: none;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center; /* 🔥 centrado general */

  gap: 20px; /* espacio entre botones */
  margin-top: 20px;

  flex-wrap: wrap; /* 🔥 responsive */
}

/* =========================
   BOTONES WHY US
========================= */

.why-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* BOTÓN PRINCIPAL */
.btn-primary3 {
  background: var(--color-rosa); /* 🔥 color rosado/beige */
  color: var(--color-azul);

  padding: 14px 77px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.25s ease;
}

.btn-primary3:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  background: var(--color-azul); /* 🔥 color rosado/beige */
  color: var(--color-rosa);
}

/* BOTÓN BORDE */
.btn-outline {
  background: transparent;
  color: #1E2943;

  padding: 14px 77px;
  border-radius: 999px;

  border: 2px solid #1E2943;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--color-rosa);
  color: var(--color-azul);
  border: 2px solid var(--color-rosa);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-content {
  text-align: center;
  align-items: center;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   TOURS PERÚ
========================= */

.tours {
  background: var(--color-azul);
  padding: 100px 20px;
  text-align: center;
}

.tours-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TITULO */
.tours-title {
  font-size: 36px;
  color: white;
  margin-bottom: 10px;
}

/* SUBTITULO */
.tours-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 50px;
}

/* CARDS */
.tours-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.tour-card {
  background: #EDEDED;
  border-radius: 14px;

  padding: 16px 24px;

  display: flex;
  align-items: center;
  gap: 10px;

  min-width: 220px;

  font-weight: 500;
  color: #333;
}

.tour-card img {
  width: 18px;
  opacity: 0.7;
}

/* TEXTO ABAJO */
.tours-note {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* BOTÓN */
.tours-btn {
  margin-top: 20px;
  display: inline-block;
}

/* =========================
   DATOS DEL VIAJE
========================= */

.datos-viaje {
  background: var(--color-blanco);
  padding: 100px 20px;
}

.datos-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXTO */
.datos-text h2 {
  font-size: 32px;
  color: var(--color-azul);
  margin-bottom: 10px;
}

.datos-desc {
  color: #666;
  margin-bottom: 40px;
}

/* ITEMS */
.datos-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.dato {
  
  
  width: 74px;
  height: 74px;

  background: transparent;

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

  border-radius: 16px;

  flex-shrink: 0;
  gap: 15px;
  align-items: flex-start;




}

.dato img {
  width: 74px;
  background: var(--color-azul);
  padding: 8px;
  border-radius: 10px;
}

.dato h4 {
  font-size: 14px;
  color: var(--color-azul);
}

.dato p {
  font-size: 12px;
  color: #555;
}

/* IMAGEN */
.datos-img {
  position: relative;

  width: 568.94px;
  

  background: transparent;
  border-radius: 24px;

  

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

.datos-img img {
  width: 200px;
  border-radius: 20px;
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;

  background: white;
  padding: 6px 10px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
}
/*CAMBIOS########################################*/

/* =========================
   GALERÍA INFINITA (LIKE REVIEWS)
========================= */

.gallery {
  background: #F5F5F5;
  padding: 100px 20px;
  text-align: center;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* CONTENEDOR */
.gallery-slider {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* CARD (IMAGEN) */
.slide {
  width: 280px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;

  transition: transform 0.3s ease;
}

/* HOVER PRO */
.slide img:hover {
  transform: scale(1.05);
}

.datos-img {
  position: relative;
}

.datos-img img {
  width: 100%;
  border-radius: 20px;
}

/* BADGE */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);

  padding: 6px 12px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
}

/* BANDERA */
.badge img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

/* BOTÓN PRINCIPAL */
.btn-primary4 {
  background: var(--color-blanco);
  color: var(--color-azul);
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 70px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  white-space: nowrap;
}

.btn-primary4:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  background: var(--color-rosa); /* 🔥 color rosado/beige */
  color: var(--color-azul);
}

/* HAMBURGUESA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA*/
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: absolute;
  left: 325px;
  top: 20px;
}

/* MOBILE */
/* =========================================
   📱 MOBILE (hasta 768px)
========================================= */
/* =========================================
   📱 MOBILE PRO (hasta 768px)
========================================= */
@media (max-width: 768px) {

  /* =========================
     BASE
  ========================= */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  section {
    padding: 60px 20px;
  }

  /* =========================
     NAVBAR
  ========================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: auto;
    padding: 10px 5px;

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

    z-index: 9999;

    transform: none; /* 🔥 rompe el centrado viejo */
  }

  .logo img {
    width: 110px;
    display: none;
  }

  /* =========================
     HAMBURGUESA
  ========================= */
  .menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10000;
  }

  /* =========================
     NAV MENU (SLIDE)
  ========================= */
  .nav-glass {
    position: fixed;
    top: 60px;
    left: 0;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);

    padding: 20px;

    transform: translateY(-30px);
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
  }

  .nav-glass.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-btn,
  .btn-pill {
    width: 100%;
    text-align: center;
  }

  /* =========================
     DROPDOWN
  ========================= */
  .dropdown {
    position: relative !important;  /* 🔥 CAMBIO CLAVE */
    left: 0 !important;
    top: 0 !important;

    width: 100%;
    margin-top: 10px;

    transform: none !important;
    left: 0 !important;

    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;

    
   

    transform: translateY(-10px);
    transition: all 0.25s ease;




  }
  
  .mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mobile-dropdown a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-size: 16px;
}

.mobile-dropdown.active {
  display: flex;
}
  .dropdown:not(.hidden) {
    display: block;
  }
  .dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-nav:hover .dropdown {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  /* =========================
     HERO
  ========================= */
  .hero {
    padding: 110px 20px 40px;
    min-height: 100vh;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 28px; /* 🔥 antes 60 = ERROR */
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* BOTONES */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary4,
  .btn-secondary {
    width: 100%;
    padding: 14px;
  }

  /* FONDO */
  .hero-bg {
    object-position: center;
  }

  /* DECORATIVOS */
  .plane,
  .cloud {
    display: none;
  }

  /* =========================
     DESTINOS
  ========================= */
  .destinos-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .card-img img {
    width: 100%;
  }

  /* =========================
     WHY US
  ========================= */
  .why-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-title {
    font-size: 28px;
  }

  .why-images {
    width: 100%;
    height: auto;
  }

  .img-main {
    width: 100%;
    height: auto;
    position: static;
  }

  /* =========================
     REVIEWS
  ========================= */
  .reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: auto;
  }
  
  .reviews-slider {
  overflow: hidden;
  width: 200%;
  padding: auto;
 }
  

  /* =========================
     LOCATION
  ========================= */
  .location-container {
    padding: 0px 0px;
  }

  .location-map iframe {
    height: 250px;
  }

  /* =========================
     CTA FINAL
  ========================= */
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-buttons a {
    width: 100%;
  }
  .cta-buttons {
    width: 100%;
    padding: 30px 20px;
  }


  /* =========================
     FOOTER
  ========================= */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}

/* =========================
   📱 WHY-US MOBILE FIX
========================= */
@media (max-width: 768px) {

  .why-us {
    padding: 60px 20px;
  }

  .why-container {
    flex-direction: column;
    gap: 40px;
  }

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

  .why-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .why-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ITEMS */
  .why-items {
    gap: 25px;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .icon {
    width: 60px;
    height: 60px;
  }

  .icon img {
    width: 50px;
  }

  .why-item h4 {
    font-size: 18px;
  }

  .why-item p {
    font-size: 13px;
  }

  /* BOTONES */
  .why-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary3,
  .btn-outline {
    width: 100%;
    padding: 14px;
  }

  /* IMÁGENES */
  .why-images {
    width: 100%;
    height: auto;

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

  .img-main {
    width: 100%;
    max-width: 320px;
    height: auto;

    position: static; /* 🔥 elimina posicionamiento raro */
  }

}

/* =========================
   MOBILE MENU FULLSCREEN
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 25px;

  background: linear-gradient(
    to bottom,
    rgba(20, 40, 80, 0.85),
    rgba(20, 40, 80, 0.95)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);

  transition: all 0.3s ease;
}


/* ACTIVO */
/* ACTIVO */
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HEADER */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-logo{
  width: 120px;
}

.mobile-scroll{
  height: 100%;
  overflow-y: auto;

  padding: 120px 25px 40px;
}

.close-menu {
  overflow-y: auto;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-item {
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.mobile-links hr {
  border: 0.5px solid rgba(255,255,255,0.2);
}

/* CTA */
.mobile-cta {
  margin-bottom: 30px;
}

.btn-pill-mobile {
  display: block;
  width: 100%;
  text-align: center;

  background: white;
  color: #1e293b;

  padding: 14px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 769px) {
  .mobile-menu{
  position: fixed;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(20,40,80,.85),
    rgba(20,40,80,.95)
  );

  backdrop-filter: blur(20px);

  z-index: 99999;
}
}

@media (max-width: 768px) {

  /* CONTENEDOR */
  .datos-container {
    flex-direction: column;
    gap: 40px;
  }

  /* TEXTO */
  .datos-text {
    text-align: right;
  }

  .datos-text h2 {
    font-size: 26px;
  }

  .datos-desc {
    font-size: 14px;
    text-align: right;
  }

  /* ITEMS */
  .datos-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* 🔥 ITEM (AQUÍ ESTÁ LA MAGIA) */
  .dato {
    display: flex;
    flex-direction: row; /* 🔥 horizontal */
    align-items: center;
    justify-content: flex-start;

    gap: 15px;
  }

  /* ICONO IZQUIERDA */
  .dato img {
    width: 50px;
    flex-shrink: 0;
    position: static !important;
  }

  /* TEXTO DERECHA */
  .dato div {
    width: 100%;
    text-align: right;
  }

  .dato h4 {
    font-size: 16px;
    margin: 0;
  }

  .dato p {
    font-size: 13px;
    margin: 0;
  }

  /* IMAGEN */
  .datos-img {
    width: 100%;
    position: relative;
  }

  .datos-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  /* BADGE */
  .card-badge {
    position: right;
    top: 10px;
    

    display: flex;
    align-items: center;
    gap: 5px;

    padding: auto ;
    border-radius: 20px;

    background: rgba(255,255,255,0.9);
  }

  .card-badge img {
    width: 18px;
  }

  .card-badge span {
    font-size: 12px;
    font-weight: 600;
  }

  .footer-plane {
  position: absolute;
  right: -20px;   /* lo saca un poco hacia afuera */
  
  top: 400px;
  width: 300px;
  transform: rotate(15deg); /* inclinación tipo Figma */
  pointer-events: none; /* no estorba clics */
}



}