/* ============================================================
   NIDO VIAJES — Design System
   Palette: Green · Blue · White
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand colors - be traveler (New Corporate Branding) */
  --clr-bosque: #0D3B3B; /* Deep Forest Green/Teal */
  --clr-oceano: #0F2E46; /* Deep Ocean Navy Blue */
  --clr-coral: #FF6B5B;  /* Vibrant Coral/Salmon */
  --clr-niebla: #F5F5F2; /* Soft Off-White/Light Gray */
  --clr-roca: #B9BEC3;   /* Solid Mid-Gray */

  /* Theme mappings to maintain compatibility with existing CSS */
  --clr-green-900: #071724; /* Dark ocean shadow */
  --clr-green-800: #0F2E46; /* Oceano */
  --clr-green-700: #0D3B3B; /* Bosque */
  --clr-green-600: #0D3B3B; /* Bosque */
  --clr-green-500: #FF6B5B; /* Coral */
  --clr-green-400: #FF887D; /* Lighter Coral */
  --clr-green-300: #FFAA9E; /* Soft Coral */
  --clr-green-100: rgba(13, 59, 59, 0.08); /* Bosque with opacity */

  --clr-blue-900: #071724; /* Dark ocean shadow */
  --clr-blue-700: #0F2E46; /* Oceano */
  --clr-blue-500: #FF6B5B; /* Coral */
  --clr-blue-300: #FF887D; /* Lighter Coral */
  --clr-blue-100: rgba(15, 46, 70, 0.06); /* Oceano with opacity */

  --clr-white: #FFFFFF;
  --clr-off-white: #F5F5F2; /* Niebla */
  --clr-gray-100: #EAEAE6;  /* Soft warm gray matching Niebla */
  --clr-gray-200: #D4D6D9;  /* Light gray matching Roca */
  --clr-gray-400: #B9BEC3;  /* Roca */
  --clr-gray-600: #4E565E;  /* Sophisticated dark slate gray - NOT black */
  --clr-gray-900: #1A252C;  /* Deep slate gray - NOT black */

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--clr-bosque), var(--clr-oceano));
  --grad-hero: linear-gradient(180deg, rgba(15, 46, 70, 0.3) 0%, rgba(13, 59, 59, 0.65) 60%, rgba(7, 23, 36, 0.95) 100%);
  --grad-cta: linear-gradient(135deg, var(--clr-bosque) 0%, var(--clr-oceano) 100%);
  --grad-card: linear-gradient(180deg, transparent 40%, rgba(7, 23, 36, 0.95) 100%);

  /* Typography */
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-serif: 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px hsla(160,30%,10%,0.08);
  --shadow-md: 0 8px 32px hsla(160,30%,10%,0.14);
  --shadow-lg: 0 20px 60px hsla(160,30%,10%,0.2);
  --shadow-card: 0 4px 24px hsla(160,30%,10%,0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-normal: 360ms;
  --dur-slow: 600ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--clr-off-white);
  color: var(--clr-gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8em 1.8em;
  border-radius: var(--radius-pill);
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 20px hsla(165,46%,42%,0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(165,46%,42%,0.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  color: var(--clr-white);
  border: 1.5px solid hsla(0,0%,100%,0.5);
  backdrop-filter: blur(8px);
  background: hsla(0,0%,100%,0.08);
}
.btn--ghost:hover {
  background: hsla(0,0%,100%,0.18);
  border-color: hsla(0,0%,100%,0.8);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-green-700);
  box-shadow: 0 4px 24px hsla(0,0%,0%,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px hsla(0,0%,0%,0.22);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur-normal) var(--ease-out),
              backdrop-filter var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.nav.scrolled {
  background: var(--clr-oceano); /* Solid Midnight Blue matching Be Traveler theme */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1400px;
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.85);
  position: relative;
  transition: color var(--dur-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-green-400);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}
.nav__link:hover { color: var(--clr-white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-white);
  background: var(--grad-brand);
  padding: 0.55em 1.4em;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 16px hsla(165,46%,42%,0.4);
  transition: all var(--dur-normal) var(--ease-out);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px hsla(165,46%,42%,0.55);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-out);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: hsla(160, 50%, 10%, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid hsla(0,0%,100%,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--dur-normal) var(--ease-out);
  pointer-events: none;
}
.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(0,0%,100%,0.06);
  transition: color var(--dur-fast);
}
.nav__mobile-link:hover { color: var(--clr-green-300); }
.nav__mobile-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--grad-brand);
  padding: 0.9em 2em;
  border-radius: var(--radius-pill);
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
  animation: fade-up 1s var(--ease-out) both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green-300);
  background: hsla(0,0%,100%,0.1);
  backdrop-filter: blur(8px);
  padding: 0.45em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid hsla(0,0%,100%,0.15);
  margin-bottom: 1.5rem;
  animation: fade-up 1s 0.1s var(--ease-out) both;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  background: var(--clr-green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  animation: fade-up 1s 0.2s var(--ease-out) both;
}
.hero__title em {
  font-style: normal;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--clr-green-300);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: hsla(0,0%,100%,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fade-up 1s 0.3s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-up 1s 0.4s var(--ease-out) both;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0,0%,100%,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: fade-up 1s 0.8s var(--ease-out) both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to top, transparent, hsla(0,0%,100%,0.4));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: top;    opacity: 0; }
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  background: hsla(0,0%,100%,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid hsla(0,0%,100%,0.1);
  animation: fade-up 1s 0.6s var(--ease-out) both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: hsla(0,0%,100%,0.6);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: hsla(0,0%,100%,0.15);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding-block: var(--space-3xl);
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-coral); /* Gold color matching Nosotros */
  margin-bottom: 1.1rem;
}
.section__tag--light { color: var(--clr-green-300); background: hsla(0,0%,100%,0.12); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--clr-gray-900);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--clr-white); }

.section__desc {
  font-size: 1rem;
  color: var(--clr-gray-600); /* Darker slate gray for better readability and consistency */
  line-height: 1.75;
}

/* ============================================================
   DESTINOS (Modern Cards Carousel)
   ============================================================ */
.destinos {
  background-color: #FDFBF7; /* Warm light background */
  padding: var(--space-xl) 0 var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.destinos__intro-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  padding-inline: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--clr-oceano);
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 640px) {
  .destinos__intro-text {
    max-width: 100%;
    padding-inline: 1rem;
    margin: 0 auto 2.5rem auto;
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.8;
  }
}

.destinos__slider-wrapper {
  position: relative;
  width: 100%;
}

.destinos__slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 2rem;
}

.destinos__slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.dest-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--clr-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 11, 41, 0.03);
  border: 1px solid rgba(17, 11, 41, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-normal), box-shadow var(--dur-normal);
}

@media (max-width: 1024px) {
  .dest-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .dest-card {
    flex: 0 0 295px;
    scroll-snap-align: center;
  }
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17, 11, 41, 0.08);
}

.dest-card__img-wrap {
  position: relative;
  height: 230px;
  overflow: visible;
  padding-bottom: 1rem;
}

.dest-card__copyright {
  position: absolute;
  left: 2rem;
  bottom: 0;
  display: block;
  font-size: 0.72rem;
  color: rgba(17, 11, 41, 0.6);
  letter-spacing: 0.04em;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.dest-card:hover .dest-card__img {
  transform: scale(1.04);
}

.dest-card__content {
  padding: 16px 2rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card__subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-coral);
  margin-bottom: 0.6rem;
}

.dest-card__title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--clr-oceano);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.dest-card__desc {
  font-size: 0.9rem;
  color: var(--clr-gray-600);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
}

.dest-card__btn {
  align-self: flex-start;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--clr-oceano);
  color: var(--clr-white) !important;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.dest-card__btn:hover {
  background: var(--clr-bosque);
}

.destinos__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.destinos__dots {
  display: flex;
  gap: 0.5rem;
}

.destinos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 11, 41, 0.12);
  cursor: pointer;
  transition: all var(--dur-normal);
}

/* Responsive certificate logos (shared) */
.cert-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0 1rem;
  height: 120px; /* fixed height so all logos align */
  box-sizing: border-box;
}

.cert-card__logo-img {
  display: block;
  max-width: 320px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Specific sizing for College logo to keep card proportions */
.cert-logo--college {
  max-width: 180px;
  height: auto;
  display: block;
}

/* Fine-tune: larger logo for a specific certification card (card 3) */
.cert-card--large-logo .cert-card__logo-img {
  max-width: 420px;
  max-height: 200px;
}

.destinos__dot.active {
  background: var(--clr-oceano);
  width: 20px;
  border-radius: var(--radius-pill);
}

.destinos__arrows {
  display: flex;
  gap: 1rem;
}

.destinos__arrow-btn {
  background: var(--clr-white);
  border: 1px solid rgba(17, 11, 41, 0.08);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  color: var(--clr-oceano);
  transition: all var(--dur-normal);
}

.destinos__arrow-btn:hover {
  background: var(--clr-oceano);
  border-color: var(--clr-oceano);
  color: var(--clr-white);
  transform: scale(1.05);
}

/* ============================================================
   CINTILLA DE AYUDA (Ribbon)
   ============================================================ */
.cintilla-ayuda {
  background-color: var(--clr-oceano); /* Deep Midnight Blue background */
  padding: var(--space-xl) 0;
  color: var(--clr-white);
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(17, 11, 41, 0.15);
}

.cintilla__content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cintilla__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.cintilla__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.cintilla__stars {
  color: #f5b82e; /* Golden stars */
  filter: drop-shadow(0 0 6px rgba(245, 184, 46, 0.35));
}

.cintilla__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.cintilla__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #dfdcf0;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.cintilla__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}

@media (max-width: 580px) {
  .cintilla__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cintilla__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Gold Buttons styles */
.btn--gold-solid {
  background-color: #d1ab66; /* Elegant gold tone from reference */
  color: var(--clr-oceano) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: var(--radius-pill);
  border: 1.5px solid #d1ab66;
  transition: all var(--dur-normal);
  text-decoration: none;
}

.btn--gold-solid:hover {
  background-color: #e5be7a;
  border-color: #e5be7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 171, 102, 0.25);
}

.btn--gold-outline {
  background-color: transparent;
  color: #d1ab66 !important;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: var(--radius-pill);
  border: 1.5px solid #d1ab66;
  transition: all var(--dur-normal);
  text-decoration: none;
}

.btn--gold-outline:hover {
  background-color: rgba(209, 171, 102, 0.08);
  transform: translateY(-2px);
}

/* ============================================================
   EXPERIENCIAS
   ============================================================ */
.experiencias {
  position: relative;
  overflow: hidden;
}

.experiencias__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-cta);
  z-index: 0;
}
.experiencias__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, hsla(165,60%,50%,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, hsla(210,70%,60%,0.12) 0%, transparent 50%);
}

.experiencias .container { position: relative; z-index: 1; }

.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.exp__card {
  background: hsla(0,0%,100%,0.07);
  border: 1px solid hsla(0,0%,100%,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--dur-normal) var(--ease-out);
}
.exp__card:hover {
  background: hsla(0,0%,100%,0.12);
  transform: translateY(-4px);
  border-color: hsla(0,0%,100%,0.22);
}

.exp__icon {
  width: 56px; height: 56px;
  background: hsla(0,0%,100%,0.12);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  padding: 14px;
  transition: background var(--dur-normal);
}
.exp__card:hover .exp__icon { background: hsla(0,0%,100%,0.2); }

.exp__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.exp__desc {
  font-size: 0.88rem;
  color: hsla(0,0%,100%,0.65);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
  background: var(--clr-white);
}

.test__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.test__card {
  background: var(--clr-off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur-normal) var(--ease-out);
  border: 1px solid var(--clr-gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
}
.test__card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-green-100);
  pointer-events: none;
  user-select: none;
}
.test__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.test__card--featured {
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.test__card--featured::before { color: hsla(0,0%,100%,0.12); }
.test__card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px hsla(165,46%,35%,0.4);
}

.test__stars {
  font-size: 0.85rem;
  color: hsl(45, 95%, 55%);
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}
.test__card--featured .test__stars { color: hsl(45, 100%, 70%); }

.test__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1 1 auto;
}
.test__card--featured .test__text { color: hsla(0,0%,100%,0.85); }

.test__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.test__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--clr-white);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.test__avatar--green { background: var(--clr-green-600); }
.test__card--featured .test__avatar { background: hsla(0,0%,100%,0.25); }

.test__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-gray-900);
  font-style: normal;
}
.test__card--featured .test__name { color: var(--clr-white); }

.test__trip {
  font-size: 0.78rem;
  color: var(--clr-gray-400);
}
.test__card--featured .test__trip { color: hsla(0,0%,100%,0.65); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-3xl);
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-cta);
  z-index: 0;
}
.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, hsla(165,60%,60%,0.2), transparent),
    radial-gradient(ellipse 40% 80% at 80% 100%, hsla(210,70%,55%,0.2), transparent);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section__content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section__brand-icon {
  width: 100px; height: 100px;
  margin-inline: auto;
  margin-bottom: 2rem;
  opacity: 0.25;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.cta-section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-section__subtitle {
  font-size: 1.05rem;
  color: hsla(0,0%,100%,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-green-900);
  color: hsla(0,0%,100%,0.7);
  padding-block: var(--space-2xl) var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid hsla(0,0%,100%,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 0.88rem;
  color: hsla(0,0%,100%,0.45);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 220px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid hsla(0,0%,100%,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: hsla(0,0%,100%,0.5);
  transition: all var(--dur-fast);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover {
  background: hsla(0,0%,100%,0.08);
  border-color: hsla(0,0%,100%,0.3);
  color: var(--clr-white);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.footer__list { display: flex; flex-direction: column; gap: 0.65rem; }

.footer__link, .footer__text {
  font-size: 0.88rem;
  color: hsla(0,0%,100%,0.5);
  transition: color var(--dur-fast);
}
.footer__link:hover { color: var(--clr-green-300); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: hsla(0,0%,100%,0.3);
}
.footer__legal { display: flex; gap: 1.5rem; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__scroll-hint { display: none; }
  .cert-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__stats {
    display: none;
  }
  .hero__stat-divider { display: none; }

  .hero__tag {
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    font-size: 0.72rem;
    margin-bottom: 1.25rem;
  }
  .hero__tag-dot {
    width: 6px;
    height: 6px;
  }

  .destinos__grid {
    grid-template-columns: 1fr;
  }
  .dest-card--large { grid-row: auto; }
  .dest-card--large .dest-card__img-wrap { height: 260px; }

  .test__grid { grid-template-columns: 1fr; }
  .test__card--featured { transform: none; }
  .test__card--featured:hover { transform: translateY(-4px); }

  .section { padding-block: var(--space-2xl); }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .exp__grid { grid-template-columns: 1fr; }
  .hero__scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   WHATSAPP — Floating bubble
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(142, 70%, 37%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 28px hsla(142,70%,30%,0.5);
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
  /* Expand on hover to show tooltip */
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px hsla(142,70%,30%,0.6);
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

/* Pulsing ring behind the bubble */
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(142, 70%, 37%);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* WhatsApp icon */
.wa-float__icon {
  width: 30px;
  height: 30px;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform var(--dur-fast);
}
.wa-float:hover .wa-float__icon {
  transform: rotate(-8deg) scale(1.12);
}

/* Tooltip that slides in from the right */
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--clr-gray-900);
  color: var(--clr-white);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45em 1em;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: var(--shadow-md);
}
/* Tooltip arrow */
.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--clr-gray-900);
}

/* ============================================================
   WHATSAPP — CTA Section inline button
   ============================================================ */
.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8em 1.8em;
  border-radius: var(--radius-pill);
  background: hsl(142, 70%, 37%);
  color: var(--clr-white);
  box-shadow: 0 4px 20px hsla(142,70%,30%,0.4);
  transition: all var(--dur-normal) var(--ease-out);
  border: 2px solid hsla(0,0%,100%,0.25);
  cursor: pointer;
  white-space: nowrap;
}
.btn--whatsapp:hover {
  background: hsl(142, 72%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(142,70%,30%,0.55);
  border-color: hsla(0,0%,100%,0.4);
}
.btn--whatsapp:active { transform: translateY(0); }

@media (max-width: 480px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
  .wa-float__tooltip { display: none; }
  .cta-section__buttons { flex-direction: column; }
  .cta-section__buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CERTIFICACIONES & SLIDER STYLES
   ============================================================ */
.certificaciones {
  background-color: #FDFBF7; /* Soft warm light background */
  padding: var(--space-xl) 0;
  overflow: hidden;
  position: relative;
}

.section__header--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.cert__slider-wrapper {
  position: relative;
  width: 100%;
}

.cert__slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 2rem;
  width: 100%;
}

.cert__slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.cert-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(17, 11, 41, 0.04);
  transition: transform var(--dur-normal), box-shadow var(--dur-normal);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(17, 11, 41, 0.08);
}

.cert-card__logo-wrap {
  /* ensure cards keep consistent spacing; min-height overrides small fixed values */
  height: 120px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cert-card__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--clr-oceano);
  line-height: 1.1;
}

/* Logos custom text styling */
.logo-disney {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--clr-oceano); /* Navy Disney color */
}

.logo-resort {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cda235; /* Gold tone */
  display: block;
  margin-top: 1px;
}

.cert-card__content {
  flex: 1;
}

.cert-card__tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-coral); /* Muted Gold */
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.cert-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-oceano);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.cert-card__desc {
  font-size: 0.9rem;
  color: var(--clr-gray-600);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.btn-cert {
  width: 100%;
  padding: 0.82em 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--clr-oceano); /* Dark Navy button */
  color: var(--clr-white);
  border: 1.5px solid var(--clr-oceano);
  cursor: pointer;
  text-align: center;
  transition: all var(--dur-normal);
}

.btn-cert:hover {
  background: var(--clr-bosque);
  border-color: var(--clr-bosque);
  transform: translateY(-1px);
}

/* Slider Controls (Responsive) */
.cert__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.cert__arrow-btn {
  background: var(--clr-white);
  border: 1.5px solid rgba(17, 11, 41, 0.08);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  color: var(--clr-oceano);
  transition: all var(--dur-normal);
}

.cert__arrow-btn:hover {
  background: var(--clr-oceano);
  border-color: var(--clr-oceano);
  color: var(--clr-white);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .cert__slider {
    gap: 1.5rem;
  }
  
  .cert-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
  }
}

@media (max-width: 900px) {
  .cert-card__logo-wrap { height: 100px; padding-top: 0.5rem; }
  .cert-card__logo-img { max-width: 90%; }
}

@media (max-width: 600px) {
  .cert-card__logo-wrap { height: 72px; }
  .cert-card__logo-img { max-width: 80%; }
  .cert-card { padding: 1.75rem 1.25rem; }
}

/* ============================================================
   CERTIFICATE PREVIEW MODAL
   ============================================================ */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(17, 11, 41, 0.85);
  backdrop-filter: blur(5px);
}

.modal__container {
  position: relative;
  max-width: 820px;
  width: 90%;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  z-index: 1001;
}

.modal.open .modal__container {
  transform: scale(1);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--clr-white);
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(17, 11, 41, 0.15);
  display: grid;
  place-items: center;
  transition: transform var(--dur-normal), background var(--dur-normal);
  z-index: 1002;
  color: var(--clr-oceano);
  font-weight: 300;
}

.modal__close:hover {
  transform: rotate(90deg);
  background: #f3f0fc;
}

.modal__body {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f0fc;
}

.modal__img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(17, 11, 41, 0.1);
}

/* ============================================================
   OFERTAS (Mega Travel Iframe Integration)
   ============================================================ */
.ofertas-section {
  background-color: #FDFBF7; /* Warm light background */
  padding: 120px 0 var(--space-xl) 0; /* Align with nav clearance */
  min-height: 100vh;
}

.ofertas-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1.5rem;
}

.ofertas-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-coral); /* Gold tone matching the theme */
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ofertas-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--clr-oceano); /* Midnight Blue */
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.ofertas-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--clr-gray-600);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.iframe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: var(--clr-white);
  border: 1px solid rgba(17, 11, 41, 0.08);
  border-radius: var(--radius-md); /* 16px */
  box-shadow: 0 10px 30px rgba(17, 11, 41, 0.04);
  overflow: hidden;
  position: relative;
}

.ofertas-iframe {
  width: 100%;
  height: 1200px;
  display: block;
  border: none;
  background: var(--clr-white);
}

.ofertas-footer-btn {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .ofertas-section {
    padding-top: 100px;
  }
  .ofertas-iframe {
    height: 1100px;
  }
  .iframe-container {
    border-radius: var(--radius-sm); /* smaller radius on mobile */
  }
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros {
  background-color: var(--clr-white);
  padding: 100px 0 120px 0; /* Increased bottom spacing to separate from Destinos */
  position: relative;
}

.nosotros__inner {
  max-width: 720px; /* Reduced width to align with destinos intro and break lines nicely */
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.nosotros__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--clr-oceano); /* Midnight Blue */
  line-height: 1.25;
  margin-bottom: 2rem;
}

.nosotros__text-lead {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--clr-gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.nosotros__text-highlight {
  font-family: var(--font-sans);
  font-style: normal; /* Normal style instead of italic for cleaner typography */
  font-size: 1.2rem;
  color: var(--clr-oceano); /* Midnight Blue (Dark) color instead of Magic Purple */
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.nosotros__text-highlight::before,
.nosotros__text-highlight::after {
  content: '“';
  font-size: 3rem;
  font-family: var(--font-serif);
  position: absolute;
  opacity: 0.15;
  color: var(--clr-oceano); /* Midnight Blue matching color */
}

.nosotros__text-highlight::before {
  top: -1.5rem;
  left: -1rem;
}

.nosotros__text-highlight::after {
  content: '”';
  bottom: -2.5rem;
  right: -1rem;
}

/* ============================================================
   OFERTAS COTIZADOR
   ============================================================ */
.ofertas-cotizador {
  max-width: 580px;
  margin: 4rem auto 0 auto;
  text-align: center;
  background: var(--clr-niebla); /* Warm light Niebla card background */
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 46, 70, 0.08); /* Mapped to Oceano */
  box-shadow: 0 4px 20px rgba(15, 46, 70, 0.02);
}

.ofertas-cotizador__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--clr-gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}

.ofertas-cotizador__row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.ofertas-cotizador__input {
  flex: 1;
  max-width: 240px;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1.5px solid rgba(15, 46, 70, 0.15); /* Mapped to Oceano */
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  color: var(--clr-oceano);
  text-transform: uppercase; /* Autofit uppercase for MT keys */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ofertas-cotizador__input:focus {
  outline: none;
  border-color: var(--clr-bosque); /* Bosque color on focus */
  box-shadow: 0 0 0 3px rgba(13, 59, 59, 0.15);
}

@media (max-width: 576px) {
  .ofertas-cotizador__row {
    flex-direction: column;
    align-items: center;
  }
  .ofertas-cotizador__input {
    max-width: 100%;
    width: 100%;
  }
  .ofertas-cotizador {
    padding: 1.5rem;
    margin-top: 3rem;
  }
}
