/* ============================================================
   SECTION-SPECIFIC STYLES
   ============================================================ */

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(243, 246, 247, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 42, 61, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 44px; transition: filter .3s ease; }
.nav.is-light .nav-logo { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--deep);
  transition: color .2s;
  position: relative;
}
.nav.is-light .nav-links a { color: white; }
.nav-links a:hover { color: var(--sky); }
.nav-cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--paper) !important;
  font-size: 13px;
}
.nav.is-light .nav-cta { background: white; color: var(--deep) !important; }
.nav-cta:hover { background: var(--sky) !important; color: white !important; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta-wrap { display: flex; }
}

/* ===================== HERO (slider) ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
.hero-slide.active .hero-slide-img { animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,42,61,0.35) 0%, rgba(0,42,61,0.55) 60%, rgba(0,42,61,0.75) 100%),
    linear-gradient(90deg, rgba(0,42,61,0.4) 0%, rgba(0,42,61,0) 50%);
}
.hero-fade {
  animation: heroTextFade 1s ease-out;
}
@keyframes heroTextFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}
.hero-arrow:hover { background: var(--sun); border-color: var(--sun); color: var(--deep); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }
@media (max-width: 720px) { .hero-arrow { width: 44px; height: 44px; } .hero-arrow.prev { left: 12px; } .hero-arrow.next { right: 12px; } }

/* Dots + counter */
.hero-controls {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; align-items: center; gap: 24px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 2px;
}
.hero-dot.active { background: var(--sun); width: 48px; }
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-counter {
  font-family: var(--font-display);
  font-style: italic;
  color: white;
  font-size: 16px;
  display: flex; gap: 6px;
}
.hero-counter .curr { color: var(--sun); font-weight: 600; }
.hero-counter .sep { opacity: 0.5; }
.hero-counter .tot { opacity: 0.7; }

/* Sparkles */
.hero-sparkles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-sparkles .s {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 14px 2px rgba(255,255,255,0.7);
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 140px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  border: 1px solid rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 132px);
  line-height: 0.98;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0, 42, 61, 0.2);
}
.hero-title > span { white-space: nowrap; }
.hero-title .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 42, 61, 0.2);
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-content { max-width: 880px; margin: 0 auto; }
.hero-cta-row { margin-bottom: 0; }

/* ===================== ABOUT ===================== */
.about {
  background: var(--paper);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }

.about-photo-wrap {
  position: relative;
}
.about-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #88C4DD, #5BA9CC);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 42, 61, 0.25);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #88C4DD, #5BA9CC);
}
.about-photo-placeholder .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.about-photo-placeholder .icon {
  font-size: 48px;
  margin-bottom: 8px;
  opacity: 0.6;
}
.about-badge {
  position: absolute;
  background: var(--sun);
  color: var(--deep);
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -8px rgba(255, 154, 0, 0.5);
  transform: rotate(-3deg);
}
.about-badge.tl { top: -18px; left: -18px; }
.about-badge.br { bottom: -18px; right: -18px; transform: rotate(4deg); }

.about-text h2 { margin-bottom: 28px; color: var(--deep); }
.about-text .greeting {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  color: var(--sky);
  margin-bottom: 6px;
}
.about-text p { margin-bottom: 18px; font-size: 16px; line-height: 1.7; }
.about-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.about-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
  color: var(--deep);
  font-weight: 500;
}
.about-list li::before {
  content: "✦";
  color: var(--sun);
  font-size: 14px;
  margin-top: 1px;
}
.about-signature {
  margin-top: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--sky);
}

/* ===================== DESTINOS ===================== */
.destinos {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sky-lighter) 100%);
}
.destinos-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}
@media (max-width: 720px) { .destinos-head { flex-direction: column; align-items: flex-start; gap: 20px; } }
.destinos-head h2 { color: var(--deep); max-width: 600px; }
.destinos-head .lead { max-width: 360px; font-size: 15px; line-height: 1.6; }

.dest-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 42, 61, 0.08);
}
.dest-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid rgba(0, 42, 61, 0.15);
  transition: all .25s;
  background: white;
}
.dest-tab:hover { color: var(--deep); border-color: var(--deep); }
.dest-tab.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}
.dest-tab .count {
  font-size: 11px;
  margin-left: 8px;
  opacity: 0.6;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep);
  min-height: 280px;
  transition: transform .4s ease;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card:hover .dest-card-arrow { background: var(--sun); color: var(--deep); transform: rotate(-45deg); }

.dest-card-img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,42,61,0) 30%, rgba(0,42,61,0.85) 100%);
}
.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: white;
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px;
}
.dest-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 6px;
  display: block;
}
.dest-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.dest-card-sub {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.dest-card-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .35s ease;
  font-size: 18px;
}

/* Card sizes */
.dest-card.feature { grid-column: span 6; min-height: 380px; }
.dest-card.tall    { grid-column: span 3; min-height: 380px; }
.dest-card.wide    { grid-column: span 8; min-height: 280px; }
.dest-card.small   { grid-column: span 4; min-height: 280px; }
.dest-card.third   { grid-column: span 4; min-height: 300px; }

@media (max-width: 920px) {
  .dest-grid { grid-template-columns: repeat(6, 1fr); }
  .dest-card.feature, .dest-card.tall, .dest-card.wide, .dest-card.small, .dest-card.third { grid-column: span 6; min-height: 240px; }
}

/* ===================== STEPS ===================== */
.steps {
  background: var(--deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 138, 184, 0.3), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 154, 0, 0.15), transparent 40%);
  pointer-events: none;
}
.steps-stars {
  position: absolute; inset: 0; pointer-events: none;
}
.steps-stars .s {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite;
}
.steps-head {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}
.steps-head h2 { color: white; margin-bottom: 16px; }
.steps-head p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; font-size: 16px; }
.steps-head .eyebrow { color: var(--sun); }
.steps-head .eyebrow::before { background: var(--sun); }

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform .3s, background .3s;
}
.step-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 400;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 12px;
  color: white;
}
.step-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* ===================== FORM ===================== */
.form-section {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 138, 184, 0.08), transparent 70%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 920px) { .form-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-aside h2 { color: var(--deep); margin-bottom: 24px; }
.form-aside p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; max-width: 420px; }
.form-aside .item {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 42, 61, 0.1);
  font-size: 14px;
  color: var(--deep);
  font-weight: 500;
}
.form-aside .item:last-child { border-bottom: 1px solid rgba(0, 42, 61, 0.1); }
.form-aside .item-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sky-lighter);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 30px 60px -25px rgba(0, 42, 61, 0.15);
  border: 1px solid rgba(0, 42, 61, 0.06);
}
@media (max-width: 540px) { .form-card { padding: 28px; } }
.form-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(0, 42, 61, 0.15);
}
.form-card-head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--deep);
  margin-bottom: 6px;
}
.form-card-head p { font-size: 13px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 42, 61, 0.15);
  border-radius: 12px;
  background: var(--paper);
  color: var(--deep);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: white;
}
.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.form-submit-row .note {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.success-msg {
  background: linear-gradient(135deg, var(--sky-lighter), white);
  border: 1px solid var(--sky);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: var(--deep);
}
.success-msg h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--sky);
  margin-bottom: 8px;
}
.success-msg p { color: var(--ink-soft); }
.success-msg .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sun);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
  font-size: 28px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sky-lighter) 100%);
}
.test-head { text-align: center; margin-bottom: 60px; }
.test-head h2 { color: var(--deep); margin-bottom: 12px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 14px 30px -16px rgba(0, 42, 61, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
}
.test-card::before {
  content: """;
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--sky-soft);
  line-height: 1;
}
.test-stars { color: var(--sun); margin-bottom: 16px; letter-spacing: 2px; font-size: 14px; }
.test-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--deep);
  margin-bottom: 28px;
  flex: 1;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.test-author .name { font-size: 14px; font-weight: 600; color: var(--deep); }
.test-author .meta { font-size: 12px; color: var(--ink-soft); }

/* ===================== FAQ ===================== */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 30px; } }
.faq-aside h2 { color: var(--deep); margin-bottom: 18px; }
.faq-aside p { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 42, 61, 0.08);
  overflow: hidden;
  transition: all .25s;
}
.faq-item.open { border-color: var(--sky); box-shadow: 0 12px 28px -16px rgba(0, 138, 184, 0.4); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  font-family: var(--font-body);
}
.faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sky-lighter);
  color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s, background .25s, color .25s;
}
.faq-item.open .faq-q-icon { background: var(--sun); color: var(--deep); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ===================== INSTAGRAM BANNER ===================== */
.ig-banner-simple {
  background:
    linear-gradient(135deg, rgba(0, 138, 184, 0.85) 0%, rgba(0, 42, 61, 0.95) 100%),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=2000&q=80') center/cover;
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.ig-banner-simple .ig-handle { font-size: 22px; justify-content: center; }
/* ===================== INSTAGRAM BANNER (legacy) ===================== */
.ig-banner {
  background: linear-gradient(135deg, var(--sky) 0%, var(--deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.ig-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255, 154, 0, 0.2), transparent 40%);
  pointer-events: none;
}
.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
@media (max-width: 920px) { .ig-grid { grid-template-columns: 1fr; } }
.ig-text h2 { color: white; margin-bottom: 18px; }
.ig-text p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; max-width: 420px; line-height: 1.6; }
.ig-handle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--sun);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.ig-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ig-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
  cursor: pointer;
}
.ig-tile:hover { transform: scale(1.04); }
.ig-tile-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: white;
  font-size: 24px;
  text-align: center;
  padding: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 56px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-tag { font-size: 14px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.7); }
.footer h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }

/* =============== DARK MODE OVERRIDES ============== */
body.theme-dark {
  --paper: #001A26;
  --paper-warm: #001A26;
  --ink: #F3F6F7;
  --ink-soft: rgba(243, 246, 247, 0.7);
}
body.theme-dark .nav.scrolled {
  background: rgba(0, 26, 38, 0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
body.theme-dark .nav-links a { color: var(--paper); }
body.theme-dark .nav-cta { background: var(--sky); color: white !important; }
body.theme-dark .about { background: var(--paper); }
body.theme-dark .about-text h2 { color: white; }
body.theme-dark .about-list li { color: var(--paper); }
body.theme-dark .destinos { background: linear-gradient(180deg, #001A26 0%, #002A3D 100%); }
body.theme-dark .destinos-head h2 { color: white; }
body.theme-dark .dest-tab { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--paper); }
body.theme-dark .dest-tab.active { background: var(--sky); border-color: var(--sky); color: white; }
body.theme-dark .form-section { background: var(--paper); }
body.theme-dark .form-aside h2 { color: white; }
body.theme-dark .form-aside .item { color: var(--paper); border-color: rgba(255,255,255,0.1); }
body.theme-dark .form-aside .item-icon { background: rgba(0, 138, 184, 0.2); }
body.theme-dark .form-card { background: #002A3D; border-color: rgba(255,255,255,0.08); }
body.theme-dark .form-card-head h3 { color: white; }
body.theme-dark .form-field input,
body.theme-dark .form-field select,
body.theme-dark .form-field textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
body.theme-dark .testimonials { background: linear-gradient(180deg, #001A26, #002A3D); }
body.theme-dark .test-head h2 { color: white; }
body.theme-dark .test-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
body.theme-dark .test-text { color: var(--paper); }
body.theme-dark .test-author .name { color: white; }
body.theme-dark .faq { background: var(--paper); }
body.theme-dark .faq-aside h2 { color: white; }
body.theme-dark .faq-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
body.theme-dark .faq-q { color: white; }
body.theme-dark .btn-secondary { color: white; border-color: white; }
body.theme-dark .btn-secondary:hover { background: white; color: var(--deep); }
