/* ===================================================
   ALIBOAT — Global Design System
   Nautical Premium | Mobile-First
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors */
  --c-primary: #0A2647;
  --c-secondary: #1565C0;
  --c-accent: #D4AF37;
  --c-accent-dark: #B8961E;
  --c-light: #EBF5FB;
  --c-white: #FFFFFF;
  --c-text: #1A1A2E;
  --c-text-muted: #6B7280;
  --c-success: #27AE60;
  --c-danger: #E74C3C;
  --c-surface: #F8FAFC;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

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

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 38, 71, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 38, 71, 0.15);
  --shadow-lg: 0 20px 60px rgba(10, 38, 71, 0.22);

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 70px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--c-primary);
  box-shadow: var(--shadow-md);
}

.navbar.solid {
  background: var(--c-primary);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: 2px;
}

.nav-logo-text span {
  color: var(--c-accent);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-links.stat-item {
  color: var(--c-light);
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 var(--space-md);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    padding: var(--space-md) var(--space-sm);
    gap: var(--space-md);
  }
  .stat-item { padding: var(--space-sm) 0; }
  .stat-item:not(:last-child)::after {
    right: 15%; /* Las líneas horizontales llegaban cortas, en móvil ajustamos a 15% o width 70% */
    top: auto;
    bottom: -0.5rem;
    height: 1px;
    width: 70%;
    left: 15%;
  }
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--c-white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--c-accent);
  color: var(--c-primary) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
  background: var(--c-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--c-primary);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile .nav-cta {
  text-align: center;
  padding: 0.8rem;
  margin-top: var(--space-xs);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-primary);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: #0d2f57;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

/* ===================================================
   SECTIONS & CONTAINERS
   =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-primary);
  text-align: center;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 0.75rem auto var(--space-md);
}

.bg-primary {
  background: var(--c-primary);
}

.bg-light {
  background: var(--c-light);
}

.bg-surface {
  background: var(--c-surface);
}

.text-white {
  color: var(--c-white);
}

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

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
      rgba(10, 38, 71, 0.78) 0%,
      rgba(10, 38, 71, 0.55) 50%,
      rgba(10, 38, 71, 0.72) 100%);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(10, 38, 71, 0.82) 0%, rgba(10, 38, 71, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--c-white);
  padding: var(--space-lg);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--c-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.label-dark {
  background: var(--c-accent);
  color: var(--c-primary);
  box-shadow: none;
}

/* En móviles centramos labels y breadcrumbs para guardar coherencia visual con títulos h1/h2 */
@media (max-width: 768px) {
  .breadcrumb {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: max-content;
  }
  
  .page-hero-content {
    text-align: center;
  }
}

/* ===================================================
   STATS SUMMARY (HERO/ABOUT)
   =================================================== */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--c-accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item .icon {
  color: var(--c-accent);
  font-size: 1rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: var(--c-primary);
  padding: var(--space-md) 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-accent);
  display: block;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================================
   SERVICE CARDS
   =================================================== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

@media (max-width: 480px) {
  .service-card {
    margin: 0 0.5rem; 
  }
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 38, 71, 0.7) 0%, transparent 60%);
}

.cal-day.full::after {
  content: 'COMPLETO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: var(--c-danger);
  color: var(--c-white);
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 480px) {
  .cal-day.full::after {
    font-size: 0.5rem;
    padding: 1px 4px;
  }
}

.service-card-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  z-index: 1;
}

.service-card-price {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.service-card-body {
  padding: var(--space-md);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--space-xs);
}

.service-card-desc {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.feature-tag {
  background: var(--c-light);
  color: var(--c-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

/* ===================================================
   WHY US / FEATURES GRID
   =================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 2rem;
  transition: background var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--c-accent);
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-primary);
  margin-bottom: var(--space-xs);
}

.feature-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================================================
   TESTIMONIALS SLIDER
   =================================================== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-lg);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-xs);
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(100% / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: calc(100% / 3);
  }
}

.testimonial-inner {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-stars {
  color: var(--c-accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  color: var(--c-text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-primary);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  background: transparent;
  color: var(--c-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-light);
  border: 2px solid var(--c-primary);
  cursor: pointer;
  transition: background var(--transition);
}

.slider-dot.active {
  background: var(--c-primary);
}

/* ===================================================
   GALLERY GRID
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    height: 150px;
  }
}

.gallery-item {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-light);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: '+';
  ;
  position: absolute;
  inset: 0;
  background: rgba(10, 38, 71, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===================================================
   BOOKING CALENDAR
   =================================================== */
.booking-section {
  background: var(--c-primary);
  padding: var(--space-xl) 0;
  scroll-margin-top: var(--nav-h);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.booking-info .section-title {
  color: var(--c-white);
  text-align: left;
}

.booking-info .section-subtitle {
  text-align: left;
  color: rgba(255, 255, 255, 0.72);
  margin-left: 0;
}

.calendar-container {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-month {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-primary);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-light);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cal-nav-btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.cal-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.past {
  color: #CBD5E0;
  cursor: not-allowed;
}

.cal-day.available {
  background: rgba(46, 204, 113, 0.08); /* Fondo verde muy suave */
  color: var(--c-primary); /* Texto azul oscuro legible */
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(46, 204, 113, 0.3);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.cal-day.available:hover {
  background: rgba(46, 204, 113, 0.15);
  border-color: var(--c-success);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cal-day.available.selected {
  background: var(--c-secondary); /* Azul náutico cuando se selecciona */
  color: var(--c-white);
  border-color: var(--c-secondary);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
  transform: scale(1.1);
}

.cal-day.full {
  background: #feeceb;
  color: var(--c-danger);
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.3);
  cursor: not-allowed;
}

.cal-day.today {
  border: 2px solid var(--c-accent);
  font-weight: 700;
}

/* Spots bar */
.spots-bar-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-top: var(--space-md);
}

.spots-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.spots-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.spots-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--c-success);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spots-fill.danger {
  background: var(--c-danger);
}

/* ===================================================
   BOOKING FORM / STEPS
   =================================================== */
.booking-form-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 38, 71, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  backdrop-filter: blur(4px);
}

.booking-form-modal.open {
  display: flex;
}

.booking-form-box {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.booking-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-light);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.booking-modal-close:hover {
  background: var(--c-danger);
  color: var(--c-white);
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-light);
  border: 2px solid var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.step-dot.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.step-dot.done {
  background: var(--c-success);
  border-color: var(--c-success);
  color: var(--c-white);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--c-light);
  transition: background var(--transition);
}

.step-line.done {
  background: var(--c-success);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--c-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.form-input::placeholder {
  color: #B0BEC5;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* Coupon */
.coupon-wrap {
  display: flex;
  gap: 8px;
}

.coupon-wrap .form-input {
  flex: 1;
}

.coupon-wrap .btn {
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.payment-option {
  border: 2px solid var(--c-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.payment-option:hover {
  border-color: var(--c-secondary);
}

.payment-option.selected {
  border-color: var(--c-primary);
  background: var(--c-light);
}

.payment-option .pay-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.payment-option .pay-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-primary);
}

/* Order Summary */
.order-summary {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-light);
}

.order-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-primary);
}

.order-row .discount-amount {
  color: var(--c-success);
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
}

.faq-item {
  border: 1px solid var(--c-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  background: var(--c-white);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--c-surface);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-primary);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-primary);
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--c-primary);
  color: var(--c-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--c-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '⚓';
  position: absolute;
  font-size: 15rem;
  opacity: 0.04;
  top: -3rem;
  right: -2rem;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.cta-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-white);
  color: var(--c-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
  }
}

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--c-white);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

.breadcrumb span {
  color: var(--c-accent);
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-lg);
  max-width: 680px;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .check-list li {
    font-size: 1.05rem; /* Un poco más de legibilidad en móviles para "Qué traer" */
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
}

.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--c-success);
  font-size: 1.2rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.page-hero-title span {
  color: var(--c-accent);
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

/* ===================================================
   INFO BLOCKS (pesca page)
   =================================================== */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.info-block.reverse {
  direction: rtl;
}

.info-block.reverse>* {
  direction: ltr;
}

.info-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
}

.info-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .info-block-text — no custom styles needed */

.info-block-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.info-block-desc {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--c-text);
}

.checklist-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-success);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================================================
   TIPO RESERVA CARDS
   =================================================== */
.tipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.tipo-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-light);
  transition: all var(--transition);
}

.tipo-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tipo-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.tipo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-primary);
  margin-bottom: var(--space-xs);
}

.tipo-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================================================
   COURSE CARD (cursos page)
   =================================================== */
.course-card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--c-light);
  max-width: 520px;
}

.course-price-badge {
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.course-price-sub {
  font-size: 0.85rem;
}

.course-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-md) 0;
}

/* Upcoming dates */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-white);
  border: 2px solid var(--c-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition);
}

.date-item:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}

/* .date-item-info — no custom styles needed */

.date-item-day {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--c-primary);
  font-size: 1rem;
}

.date-item-meta {
  color: var(--c-text-muted);
  font-size: 0.82rem;
}

.date-item .badge-full {
  background: #feeceb;
  color: var(--c-danger);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.date-item .badge-seats {
  background: #E8F5E9;
  color: var(--c-success);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(39, 174, 96, 0.3);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #060F1E;
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo-text {
  font-size: 1.8rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: var(--space-sm) 0;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--c-white);
}

/* Instagram — color oficial */
.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* WhatsApp — color oficial */
.social-whatsapp:hover {
  background: #25D366;
}


.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--c-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact-item .icon {
  color: var(--c-accent);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--c-accent);
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-card {
  background: var(--c-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  color: var(--c-white);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-accent);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  color: var(--c-white);
  font-weight: 500;
  margin-top: 2px;
}

.contact-info-value a {
  color: var(--c-white);
  transition: color var(--transition);
}

.contact-info-value a:hover {
  color: var(--c-accent);
}

.contact-form-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--space-lg);
}

.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .info-block {
    grid-template-columns: 1fr;
  }

  .info-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  section {
    padding: var(--space-lg) 0;
  }

  .stats-grid {
    flex-direction: column;
    gap: 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-content {
    padding: var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr 1fr;
  }

  .tipo-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-box {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .tipo-grid {
    grid-template-columns: 1fr;
  }
}


/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ===================================================
   PAGE HERO (Inner pages)
   =================================================== */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  padding-top: calc(var(--nav-h) + 3rem);
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 400px;
    padding-bottom: 2rem;
    padding-top: calc(var(--nav-h) + 2rem);
    align-items: center;
    background-position: center 20%;
  }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  max-width: 700px;
  width: 100%;
  padding: 0 var(--space-xl);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
  color: var(--c-white);
}

@media (max-width: 768px) {
  .page-hero-content {
    padding: 0 var(--space-md);
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
  }
  .page-hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

.page-hero-title span {
  color: var(--c-accent);
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

/* Tipo grid */
.tipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.tipo-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tipo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tipo-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tipo-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.tipo-desc {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Info block */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-block.reverse {
  direction: rtl;
}

.info-block.reverse>* {
  direction: ltr;
}

.info-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.info-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-block-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.info-block-desc {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.5;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Spots bar */
.spots-bar-wrap {
  margin: 1.5rem 0;
}

.spots-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.spots-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.spots-fill {
  height: 100%;
  background: var(--c-accent);
  border-radius: 999px;
  transition: width 0.6s ease;
}

/* Course card */
.course-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--c-light);
}

.course-price-badge {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}

.course-includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--c-light);
  border-radius: var(--radius-md);
}

/* Dates list */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.date-item-day {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-white);
  text-transform: capitalize;
}

.date-item-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.badge-full {
  display: inline-block;
  background: rgba(231, 76, 60, 0.25);
  color: #ff8a80;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.badge-seats {
  display: inline-block;
  background: rgba(39, 174, 96, 0.25);
  color: #69f0ae;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info-card {
  background: var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-white);
}

.contact-info-value a {
  color: var(--c-accent);
}

.contact-form-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 2rem;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-light);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--c-primary);
  color: var(--c-white);
}

.step-dot.done {
  background: var(--c-success);
  color: var(--c-white);
}

.step-line {
  height: 2px;
  width: 50px;
  background: var(--c-light);
  transition: background var(--transition);
}

.step-line.done {
  background: var(--c-success);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* Responsive page-specific */
@media (max-width:1024px) {
  .info-block {
    grid-template-columns: 1fr;
  }

  .info-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    padding: 0 1rem 1.5rem;
  }

  .info-block-img {
    height: 240px;
  }

  .date-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-price-badge {
    font-size: 2.5rem;
  }
}