/* =========================================================
   LANDING PAGE — HERO PARALLAX + FADE TO WHITE
   DominicanToDo.com — By ScriptNow
   ========================================================= */

/* =========================================================
   HERO PARALLAX + FADE
========================================================= */

.hero-parallax {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Fondo Parallax */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* Fade: oscuro a la izquierda (texto legible) + blanco en la base (fusión con la página) */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to right,
      rgba(0, 10, 40, 0.78) 0%,
      rgba(0, 10, 40, 0.42) 55%,
      rgba(0, 10, 40, 0.08) 100%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 32%
    );
}

/* Contenido HERO */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 5px 14px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3.9rem;
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.hero-content h1 span {
  color: var(--color-accent, #99c2ff);
}

.hero-sub {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 22px;
  max-width: 540px;
}

/* BOTONES */
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 13px 22px;
  color: white;
  background: #0055ff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #003ecc;
}

.btn-secondary {
  display: inline-block;
  padding: 13px 22px;
  color: #0055ff;
  background: #e8f0ff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: #d7e4ff;
}

/* Meta */
.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 10px;
  flex-wrap: wrap;
  color: #efefef;
  font-size: 0.9rem;
}

.hero-meta-label {
  font-weight: 700;
}


/* Indicador Scroll */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.85;
  z-index: 4;
}

.hero-scroll-hint:hover {
  opacity: 1;
}

/* ============================================================
   GLOBAL SECTION HEADER — Rediseñado
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.section-header .section-sub {
  color: #5a6a7a;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

.cities-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 20px;
  flex-wrap: wrap;
}

.cities-section-header h2 { margin-bottom: 6px; }
.cities-section-header .section-sub { margin: 0; max-width: 420px; }

/* ============================================================
   SECTION: RANKING DE CIUDADES — Vertical + Preview
   ============================================================ */

.section-ranking {
  padding: 90px 0;
  background: #fff;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 40px;
}

/* Lista vertical scrollable */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d0dcf5 transparent;
  padding-right: 4px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #ebebeb;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  width: 100%;
}

.ranking-item:hover {
  background: #eef4ff;
  border-color: #c7d9ff;
  transform: translateX(4px);
}

.ranking-item.active {
  background: var(--color-primary, #0055ff);
  border-color: var(--color-primary, #0055ff);
  color: #fff;
  transform: translateX(0);
}

.rank-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #9ca3af;
  min-width: 20px;
  text-align: center;
}

.ranking-item.active .rank-num {
  color: rgba(255,255,255,0.7);
}

.rank-thumb-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
}

.rank-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-sub {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.rank-score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f59e0b;
  flex-shrink: 0;
}

.ranking-item.active .rank-score {
  color: #fde68a;
}

/* Preview card */
.ranking-preview {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0d1b2a;
  min-height: 400px;
}

.ranking-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.ranking-preview:hover img {
  opacity: 0.85;
}

.ranking-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);
  color: #fff;
}

.ranking-preview-overlay p:first-child {
  font-size: 0.82rem;
  color: #fde68a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ranking-preview-overlay h3 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.ranking-preview-overlay p#rankingPreviewTagline {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ============================================================
   SECTION: SOBRE EL PROYECTO
   ============================================================ */

.section-about-project {
  padding: 96px 0;
  background: #f8faff;
  position: relative;
}

.about-project-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Columna texto ──────────────────────────────────── */
.about-project-text .hero-eyebrow {
  color: var(--color-primary, #0055ff);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-project-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0d1b2a;
  margin-bottom: 18px;
}

.about-highlight {
  color: var(--color-primary, #0055ff);
  position: relative;
  display: inline-block;
}

.about-sub-line {
  font-size: 1.12rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

.about-desc {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Grid de características ────────────────────────── */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,55,180,0.06);
  border-left: 3px solid var(--color-primary, #0055ff);
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-feature:hover {
  box-shadow: 0 6px 22px rgba(0,55,180,0.12);
  transform: translateY(-2px);
}

.about-feature:nth-child(2) { border-left-color: #f59e0b; }
.about-feature:nth-child(3) { border-left-color: #10b981; }
.about-feature:nth-child(4) { border-left-color: #6366f1; }

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary, #0055ff);
  flex-shrink: 0;
}

.about-feature:nth-child(2) .about-feature-icon { background: #fffbeb; color: #d97706; }
.about-feature:nth-child(3) .about-feature-icon { background: #ecfdf5; color: #059669; }
.about-feature:nth-child(4) .about-feature-icon { background: #f0f0fe; color: #4f46e5; }

.about-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .about-project-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-project-text h2 {
    font-size: 1.7rem;
  }
}



/* ============================================================
   SECTION: CIUDADES — SLIDER BURBUJA PREMIUM
   ============================================================ */
/* CONTENEDOR PRINCIPAL */
.section-cities-widget {
  padding: 80px 0;
}

.cities-widget-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* COLUMNA IZQUIERDA */
.cities-widget-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cities-widget-sub {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.cities-widget-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-item {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
  transition: 0.25s ease;
}

.city-item:hover {
  background: #eef4ff;
  border-color: #ccdfff;
  transform: translateX(4px);
}

.city-item.active {
  background: #0055ff;
  color: white;
  border-color: #0055ff;
}

.city-name {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.city-desc {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* COLUMNA DERECHA */
.cities-widget-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.cities-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.city-preview-overlay:hover {
  color: #cfe3ff;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .cities-widget-card {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ACTIVIDADES
========================================================= */

.section-activities {
  padding: 90px 0;
  background: #f7faff;
}

.activities-grid {
  margin-top: 40px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.activity-card {
  background: white;
  padding: 32px 22px 28px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.activity-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.11);
}

.activity-card i {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

/* Colores de icono por posición */
.activity-card:nth-child(1) i { background: #fff7ed; color: #ea580c; }
.activity-card:nth-child(2) i { background: #eff6ff; color: #2563eb; }
.activity-card:nth-child(3) i { background: #f0fdf4; color: #16a34a; }
.activity-card:nth-child(4) i { background: #faf5ff; color: #7c3aed; }
.activity-card:nth-child(5) i { background: #fef2f2; color: #dc2626; }
.activity-card:nth-child(6) i { background: #fdf4ff; color: #9333ea; }

.activity-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 8px;
}

.activity-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   CALENDARIO CTA
========================================================= */

.section-calendar {
  padding: 90px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
}

.calendar-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.calendar-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d1b2a;
  margin-bottom: 14px;
  line-height: 1.2;
}

.calendar-text .section-sub {
  color: #546070;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.calendar-bullets {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.calendar-bullets li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.calendar-bullets li i {
  margin-top: 2px;
  color: var(--color-primary, #0055ff);
  flex-shrink: 0;
  font-size: 1rem;
}

/* Calendar Preview */
.calendar-preview {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 55, 180, 0.1);
  border: 1px solid #e0eaff;
}

.calendar-preview-header {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.preview-month {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.01em;
}

.preview-city {
  font-size: 0.85rem;
  color: #6b7280;
}

.preview-city i {
  color: var(--color-primary, #0055ff);
}

/* Day grid */
.calendar-preview-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day-label {
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.day, .day-empty {
  padding: 8px 4px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #374151;
}

.day {
  background: #f3f6fc;
}

.day-empty {
  background: transparent;
}

.has-cruise {
  background: var(--color-primary, #0055ff);
  color: #fff;
  font-weight: 700;
}

.calendar-preview-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.5;
}

/* =========================================================
   SECCIÓN BLOG / GUÍA
========================================================= */

.section-blog {
  padding: 90px 0;
  background: #fff;
}

.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.blog-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

.blog-card-img {
  border-radius: 0;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

/* Padding para el contenido de texto debajo de la imagen */
.blog-card .blog-tag,
.blog-card h3,
.blog-card p,
.blog-card .blog-link {
  padding-left: 22px;
  padding-right: 22px;
}

.blog-card .blog-tag {
  display: inline-block;
  background: #eff4ff;
  color: var(--color-primary, #0055ff);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-left: 22px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-primary, #0055ff) !important;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: auto;
  margin-bottom: 20px;
  text-decoration: none !important;
}

.blog-link:hover {
  text-decoration: underline !important;
}

/* Empty state */
.blog-empty-state {
  text-align: center;
  padding: 64px 20px;
  color: #9ca3af;
}

.blog-empty-state i {
  font-size: 3.2rem;
  margin-bottom: 18px;
  display: block;
  opacity: 0.45;
}

.blog-empty-state p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Cards SIN imagen (solo texto) */
.blog-card:not(.has-img) {
  padding-top: 24px;
}

.blog-card:not(.has-img) .blog-tag {
  margin-top: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .section-why-modern,
  .section-featured-activities,
  .section-today-cruises,
  .section-blog,
  .section-events,
  .section-ranking {
    padding: 70px 0;
  }

  .ranking-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .ranking-preview {
    min-height: 280px;
  }

  .ranking-list {
    max-height: 360px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .why-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .feat-act-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cruises-today-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why-modern-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .feat-act-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cruises-today-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-parallax {
    height: 80vh;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .cities-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .feat-act-grid {
    grid-template-columns: 1fr;
  }

  .feat-act-filters {
    gap: 7px;
  }

  .act-pill {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .section-why-modern,
  .section-featured-activities,
  .section-today-cruises,
  .section-blog,
  .section-events,
  .section-ranking {
    padding: 56px 0;
  }

  .ranking-preview-overlay h3 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   SECTION: BARRA DE ESTADÍSTICAS
   ============================================================ */
.section-stats {
  background: #f0f5ff;
  padding: 32px 0;
  border-bottom: 1px solid #e0eaff;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
  border-right: 1px solid #d0dcf5;
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.6rem;
  color: var(--color-primary, #0055ff);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .stats-bar { gap: 0; }
  .stat-item {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid #d0dcf5;
    width: 50%;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid #d0dcf5; }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   SECTION: PRÓXIMOS EVENTOS
   ============================================================ */
.section-events {
  padding: 80px 0;
  background: #f9fafb;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.event-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-card-img img {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary, #0055ff);
  color: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.ev-day {
  font-size: 1.2rem;
  font-weight: 800;
}

.ev-mon {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.event-card-body {
  padding: 14px 16px 18px;
}

.event-city {
  font-size: 0.75rem;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.event-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

/* ============================================================
   SECTION: ACTIVIDADES DESTACADAS
   ============================================================ */

.section-featured-activities {
  padding: 90px 0;
  background: #f7faff;
}

/* Filtros de categoría */
.feat-act-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.act-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0eaff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.act-pill:hover {
  background: var(--color-primary, #0055ff);
  border-color: var(--color-primary, #0055ff);
  color: #fff;
}

.act-pill i {
  font-size: 0.9rem;
}

/* Grid de actividades */
.feat-act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.feat-act-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.11);
}

.feat-act-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feat-act-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e5e7eb;
}

.feat-act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feat-act-card:hover .feat-act-img img {
  transform: scale(1.05);
}

.feat-act-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #9ca3af;
}

.feat-act-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.feat-act-body {
  padding: 14px 16px 18px;
}

.feat-act-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary, #0055ff);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.feat-act-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #0d1b2a;
}

.feat-act-city {
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.feat-act-city i {
  font-size: 0.7rem;
  color: #9ca3af;
}

/* Estado vacío */
.feat-act-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}

.feat-act-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  opacity: 0.45;
}

.feat-act-empty p {
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================================
   SECTION: CRUCEROS HOY
   ============================================================ */

.section-today-cruises {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3050 100%);
  color: #fff;
}

.section-today-cruises .section-header {
  margin-bottom: 36px;
}

.section-today-cruises .section-header h2 {
  color: #fff;
}

.section-today-cruises .section-sub {
  color: rgba(255,255,255,0.7);
}

.today-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

.section-today-cruises .cities-section-header {
  align-items: flex-start;
}

.section-today-cruises .btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.section-today-cruises .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}

/* Grid de cruceros */
.cruises-today-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.cruise-card-today {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px 20px;
  transition: background 0.2s;
}

.cruise-card-today:hover {
  background: rgba(255,255,255,0.12);
}

.cruise-ship-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #93c5fd;
}

.cruise-today-info {
  flex: 1;
  min-width: 0;
}

.cruise-ship-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.cruise-line {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.cruise-today-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cruise-today-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 8px;
}

.cruise-today-meta i {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ── Hero rotating badge ────────────────────────────────────── */
.hero-rotate {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: .28rem .9rem .28rem .6rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-rotate-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dttd-dot-pulse 2s ease-in-out infinite;
}

@keyframes dttd-dot-pulse {
  0%, 100% { box-shadow: 0 0 4px #4ade80; }
  50%       { box-shadow: 0 0 10px #4ade80, 0 0 20px rgba(74, 222, 128, .35); }
}

.hero-rotate-text {
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .32s ease, transform .32s ease;
}

/* ── CTA primario — pulso sutil ──────────────────────────────── */
.hero-cta-group .btn-primary {
  animation: dttd-btn-pulse 3.5s ease-in-out infinite;
}

@keyframes dttd-btn-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 85, 255, .35); }
  50%       { box-shadow: 0 4px 28px rgba(0, 85, 255, .6), 0 0 0 5px rgba(0, 85, 255, .1); }
}

/* Sin cruceros hoy */
.cruises-none-today {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.55);
}

.cruises-none-today i {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 18px;
  opacity: 0.35;
}

.cruises-none-today p {
  font-size: 1rem;
}

