/* ═══════════════════════════════════════
   LOGÍSTICA MULE — Design System
   ═══════════════════════════════════════ */

:root {
  --orange: #FE6605;
  --orange-dark: #D45500;
  --orange-glow: rgba(254, 102, 5, 0.15);
  --orange-subtle: rgba(254, 102, 5, 0.08);
  --dark-900: #0A0A0F;
  --dark-800: #111118;
  --dark-700: #1A1A24;
  --dark-600: #24243A;
  --gray-500: #6B6B80;
  --gray-400: #9090A0;
  --gray-300: #B0B0C0;
  --white: #F5F5F7;
  --white-pure: #FFFFFF;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--dark-900);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.accent { color: var(--orange); }

/* ═══ LOADER ═══ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  animation: loaderFade 1.5s ease-in-out infinite alternate;
}
@keyframes loaderFade {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.loader-bar {
  width: 120px; height: 3px;
  background: var(--dark-700); border-radius: 3px; overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); border-radius: 3px;
  animation: loaderSlide 1s var(--ease-out) infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ═══ PROMO BANNER ═══ */
.promo-banner {
  background: linear-gradient(135deg, #0071BB, #E91F5E);
  color: white; padding: 10px 0; font-size: 0.85rem;
  position: relative; width: 100%; z-index: 1001;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.promo-inner {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.promo-banner p { margin: 0; }
.promo-banner a { color: white; font-weight: 700; text-decoration: underline; }
.promo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 18px; background: rgba(255,255,255,0.2);
  border-radius: 50px; font-weight: 600; font-size: 0.8rem;
  text-decoration: none !important; color: white !important;
  transition: all 0.3s var(--ease-out);
  border: 1px solid rgba(255,255,255,0.3);
}
.promo-btn:hover { background: rgba(255,255,255,0.35); }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
  top: 38px;
}
.nav.scrolled {
  top: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(254, 102, 5, 0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s var(--ease-spring);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  color: var(--gray-400); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { width: 20px; }
.nav-link-cta {
  background: var(--orange); color: var(--white-pure) !important;
  border-radius: 8px; font-weight: 600;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  position: absolute; left: 0;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0f05 30%, #0d0d14 60%, #12080a 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(254,102,5,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(254,102,5,0.06) 0%, transparent 70%);
  animation: heroGradientPulse 6s ease-in-out infinite alternate;
}
@keyframes heroGradientPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero-bg-video {
  position: absolute; inset: -20px;
  width: calc(100% + 40px); height: calc(100% + 40px);
  object-fit: cover;
  filter: brightness(0.4);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-video.loaded { opacity: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(254, 102, 5, 0.25) 0%, rgba(10, 10, 15, 0.9) 50%, rgba(10, 10, 15, 0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero-badge, .hero-title, .hero-sub, .hero-actions .btn, .hero-stats, .hero-scroll { opacity: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(254, 102, 5, 0.25);
  color: var(--orange); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9040 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--gray-400);
  max-width: 540px; margin-bottom: 28px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  padding: 14px 28px; border-radius: 12px;
  transition: all 0.3s var(--ease-out);
}
.btn-primary {
  background: var(--orange); color: var(--white-pure);
  box-shadow: 0 4px 20px rgba(254, 102, 5, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(254, 102, 5, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { text-align: center; }
.hero-stat-num, .hero-stat-num2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--orange);
}
.hero-stat-plus, .hero-stat-dash {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--orange);
}
.hero-stat-label {
  display: block; font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-500); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══ SECTIONS ═══ */
.section { padding: 80px 0; }
.section-dark { background: var(--dark-800); }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-header-center { text-align: center; margin-bottom: 36px; }
.section-subtitle {
  color: var(--gray-400); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
}
.section-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center;
}
.section-grid-reverse { direction: rtl; }
.section-grid-reverse > * { direction: ltr; }

/* ═══ ABOUT ═══ */
.about-text {
  color: var(--gray-400); font-size: 1.05rem;
  margin-bottom: 16px; line-height: 1.8;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: 12px;
  background: var(--orange-subtle);
  border: 1px solid rgba(254, 102, 5, 0.1);
  transition: all 0.3s var(--ease-out);
}
.about-feature:hover {
  background: var(--orange-glow);
  border-color: rgba(254, 102, 5, 0.2);
  transform: translateX(4px);
}
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); border-radius: 10px; color: var(--white-pure);
}
.about-feature h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  margin-bottom: 2px;
}
.about-feature p { font-size: 0.85rem; color: var(--gray-500); }

.about-image-stack { position: relative; height: 420px; }
.about-img {
  position: absolute; border-radius: 16px;
  object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-img-1 { width: 70%; height: 65%; top: 0; right: 0; z-index: 1; }
.about-img-2 { width: 60%; height: 55%; bottom: 0; left: 0; z-index: 2; border: 3px solid var(--dark-900); }
.about-img-badge {
  position: absolute; bottom: 20px; right: 20px; z-index: 3;
  background: var(--orange); padding: 16px 24px; border-radius: 12px;
  text-align: center; box-shadow: 0 8px 30px rgba(254, 102, 5, 0.3);
}
.about-img-badge-num {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--white-pure);
}
.about-img-badge-text {
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ═══ FLOTILLA ═══ */
.flotilla-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start;
}
.flotilla-text p {
  color: var(--gray-400); font-size: 1.02rem; line-height: 1.8;
  margin-bottom: 16px;
}
.flotilla-text strong { color: var(--white); }
.flotilla-right { display: flex; flex-direction: column; gap: 16px; }
.flotilla-image {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 16/9;
}
.flotilla-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 14px;
  transition: transform 0.6s var(--ease-out);
}
.flotilla-image:hover img { transform: scale(1.03); }
.flotilla-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.flotilla-card {
  padding: 28px; border-radius: 16px;
  background: var(--dark-700);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.flotilla-card:hover {
  background: var(--dark-600);
  border-color: rgba(254, 102, 5, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.flotilla-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-glow); border-radius: 12px;
  color: var(--orange); margin-bottom: 16px;
}
.flotilla-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.flotilla-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ═══ EQUIPO ═══ */
.equipo-image-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/2;
}
.equipo-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s var(--ease-out);
}
.equipo-image-wrap:hover .equipo-img { transform: scale(1.05); }
.equipo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(254, 102, 5, 0.15) 100%);
}
.equipo-content p {
  color: var(--gray-400); font-size: 1.02rem; line-height: 1.8;
  margin-bottom: 16px;
}
.equipo-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.equipo-highlight {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); font-weight: 500; font-size: 0.95rem;
}
.equipo-highlight svg { color: var(--orange); flex-shrink: 0; }

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(254, 102, 5, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.gallery-overlay span {
  color: var(--white-pure); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transform: translateY(10px);
  transition: transform 0.3s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ═══ CONTACTO ═══ */
.contacto-form-wrap { padding-right: 40px; }
.contacto-form { margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--dark-800); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: all 0.3s var(--ease-out);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 102, 5, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-500); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contacto-info { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.contacto-card {
  padding: 24px; border-radius: 14px;
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease-out);
  flex: 1;
}
.contacto-card:hover {
  border-color: rgba(254, 102, 5, 0.15);
  transform: translateY(-2px);
}
.contacto-card-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-glow); border-radius: 10px;
  color: var(--orange); margin-bottom: 12px;
}
.contacto-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.contacto-card a, .contacto-card p {
  color: var(--gray-400); font-size: 0.9rem;
  text-decoration: none; transition: color 0.2s;
}
.contacto-card a:hover { color: var(--orange); }
.contacto-social {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 10px;
  background: rgba(59, 89, 152, 0.1); border: 1px solid rgba(59, 89, 152, 0.2);
  color: #8B9DC3; text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s var(--ease-out);
}
.contacto-social:hover {
  background: rgba(59, 89, 152, 0.2);
  border-color: rgba(59, 89, 152, 0.4);
}

/* Social buttons row */
.form-social-row {
  display: flex; gap: 12px; margin-top: 12px;
}
.btn-social {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 1; justify-content: center;
  padding: 12px 16px; border-radius: 10px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s var(--ease-out);
  border: 1px solid;
}
.btn-facebook {
  background: rgba(59, 89, 152, 0.1); border-color: rgba(59, 89, 152, 0.25);
  color: #8B9DC3;
}
.btn-facebook:hover {
  background: rgba(59, 89, 152, 0.2); border-color: rgba(59, 89, 152, 0.4);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.25);
  color: #25D366;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2); border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* CTA card highlight */
.contacto-card-cta {
  background: var(--orange-subtle);
  border-color: rgba(254, 102, 5, 0.15);
}
.contacto-card-cta:hover {
  background: var(--orange-glow);
  border-color: rgba(254, 102, 5, 0.3);
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  height: 32px; filter: brightness(0) invert(1); opacity: 0.5;
  margin-bottom: 8px;
}
.footer-brand p { color: var(--gray-500); font-size: 0.8rem; }
.footer-credit {
  margin-top: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-credit a {
  color: var(--orange); text-decoration: none; font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.footer-credit a:hover { color: #FF9040; }
.footer-copy p { color: var(--gray-500); font-size: 0.8rem; }

/* ═══ WHATSAPP FLOAT ═══ */
/* Floating social group */
.float-social {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
}
.float-btn {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  text-decoration: none; color: var(--white-pure);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.3s var(--ease-out);
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-fb {
  background: #1877F2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.35);
}
.float-wa {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  width: auto; padding: 0 20px; gap: 8px;
  border-radius: 60px; font-weight: 600; font-size: 0.9rem;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-wa:hover { animation: none; }
.float-wa-text { white-space: nowrap; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 16px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.4s var(--ease-out);
  }
  .nav-links.active { opacity: 1; visibility: visible; pointer-events: all; }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .nav-toggle { display: block; }

  .section { padding: 60px 0; }
  .section-grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .flotilla-content { grid-template-columns: 1fr; gap: 28px; }
  .flotilla-cards { grid-template-columns: 1fr; margin-top: 20px; }
  .section-grid-reverse { direction: ltr; }
  .section-header-center { margin-bottom: 28px; }
  .contacto-form-wrap { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-image-stack { height: 280px; }

  .hero-stats { gap: 20px; }
  .hero-stat-num, .hero-stat-num2 { font-size: 1.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .promo-banner { font-size: 0.72rem; text-align: center; padding: 8px 12px; }
  .promo-btn { display: none; }
  .promo-inner { gap: 8px; }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }
  .hero-title { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-actions {
    flex-direction: column; gap: 10px;
    margin-bottom: 32px;
  }
  .btn { padding: 12px 22px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .hero-stats {
    flex-wrap: wrap; gap: 16px;
    padding-top: 24px;
    justify-content: center;
  }
  .hero-stat-divider { display: none; }
  .hero-stat-num, .hero-stat-num2 { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.65rem; }
  .hero-scroll { display: none; }

  .section { padding: 44px 0; }
  .section-title { margin-bottom: 12px; }
  .section-grid-2 { gap: 24px; }
  .flotilla-content { gap: 24px; }
  .about-image-stack { height: 240px; }
  .about-features { gap: 12px; margin-top: 20px; }
  .about-feature { padding: 12px; }

  .flotilla-card { padding: 20px; }
  .flotilla-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }

  .equipo-highlights { margin-top: 20px; gap: 8px; }
  .equipo-highlight { font-size: 0.85rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { border-radius: 8px; }

  .contacto-card { padding: 18px; }
  .contacto-card-icon { width: 36px; height: 36px; margin-bottom: 10px; }

  .footer { padding: 30px 0; }
  .float-social { bottom: 20px; right: 16px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; }
  .float-wa { padding: 0 14px; }
  .float-wa-text { display: none; }
  .form-social-row { flex-direction: column; }
}
