@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

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

section[id] { scroll-margin-top: 120px; }

:root {
  --bg-color: #ffffff;
  --bg-alt: #f5f5f3;
  --bg-dark: #111111;
  --text-color: #111111;
  --text-muted: #6b7280;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Barlow Condensed', system-ui, sans-serif;
  --accent: #b91c1c;
  --accent-dark: #991b1b;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 120px;
}

#app { width: 100%; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background-color: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  height: 120px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.navbar-logo { display: flex; align-items: center; }

.navbar-logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

/* Hamburguesa */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
  position: relative;
}

.navbar-hamburger span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.navbar-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-item { position: relative; }

.navbar-item a {
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.navbar-item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-item a::after { display: none; }

/* CTA button */
.navbar-item:last-child a {
  color: #ffffff;
  background: var(--accent);
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.navbar-item:last-child a:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

/* Chevron */
.chevron { width: 14px; height: 14px; transition: transform 0.3s ease; margin-top: 2px; }
.navbar-item.dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  list-style: none;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.navbar-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { margin: 0; padding: 0; }

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #999 !important;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: transparent;
  border-radius: 0;
}

.dropdown-menu li a:hover { color: #ffffff !important; background: rgba(255,255,255,0.06); }
.dropdown-menu li a::after { display: none !important; }
.dropdown-menu li a span { position: relative; display: inline-block; }
.dropdown-menu li a span::after { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 58fr 42fr;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 70%, rgba(255,255,255,0.08) 100%);
}

.hero-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 56px 60px 56px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.hero-about-card {
  max-width: 420px;
  background: transparent;
  border: none;
  border-left: 4px solid var(--accent);
  border-radius: 0;
  padding: 0 0 0 32px;
  color: #111111;
  box-shadow: none;
}

.hero-about-card h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.1;
}

.hero-about-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #6b7280;
  margin: 0 0 12px 0;
  font-family: var(--font-family);
  font-weight: 400;
}

.hero-about-card p:last-of-type { margin-bottom: 32px; }

.hero-btn-container { display: flex; justify-content: flex-start; }

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero-image-container { }
  .hero-content-wrapper {
    padding: 40px 24px 48px;
    justify-content: flex-start;
  }
  .hero-about-card {
    max-width: 100%;
    padding-left: 24px;
  }
  .hero-about-card h2 { font-size: 26px; margin-bottom: 14px; }
  .hero-about-card p { font-size: 14px; }
  .hero-btn-container { justify-content: flex-start; }
}

/* =============================================
   BOTONES
   ============================================= */
.btn-primary {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  padding: 14px 36px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #111111;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background-color: var(--bg-color);
  padding: 100px 40px;
  color: var(--text-color);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--accent);
}

.service-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Bloques alternos */
.service-block:nth-of-type(odd) .service-carousel { grid-column: 1; grid-row: 1 / 3; }
.service-block:nth-of-type(odd) .service-content  { grid-column: 2; grid-row: 1; }
.service-block:nth-of-type(odd) .btn-outline       { grid-column: 2; grid-row: 2; justify-self: start; }

.service-block:nth-of-type(even) .service-content  { grid-column: 1; grid-row: 1; }
.service-block:nth-of-type(even) .btn-outline       { grid-column: 1; grid-row: 2; justify-self: start; }
.service-block:nth-of-type(even) .service-carousel { grid-column: 2; grid-row: 1 / 3; }

@media (max-width: 1024px) {
  .services-section { padding: 60px 20px; }

  .service-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    text-align: center;
  }
  .service-content  { order: 1; }
  .service-carousel { order: 2; width: 100%; }
  .btn-outline      { order: 3; align-self: center; }
  .service-content h2 { font-size: 28px; }
  .service-content h2::after { margin-left: auto; margin-right: auto; }
  .service-content h3 { font-size: 13px; }

  .nautica-cta { padding: 16px 20px 48px; }

  /* hero ya es grid en mobile — ver bloque @media hero arriba */

  .navbar { height: 90px; padding: 0 20px; }
  body { padding-top: 90px; }
  .navbar-logo img { height: 80px; }

  .navbar-hamburger { display: flex; }

  .navbar-hamburger { z-index: 2100; }

  .navbar-menu {
    position: fixed;
    top: 90px; right: 0;
    width: 100%; height: calc(100vh - 90px);
    background-color: #111111;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 32px;
    box-sizing: border-box;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 2050;
    overflow-y: auto;
  }
  .navbar-menu.active { transform: translateX(0); }

  .navbar-item { width: 100%; }
  .navbar-item a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .navbar-item:last-child a {
    border-bottom: none;
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    justify-content: center;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
  /* Cancelar el hover transform del desktop en móvil */
  .navbar-item.dropdown:hover .dropdown-menu {
    transform: none !important;
    position: static !important;
  }
  .dropdown-menu li a {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #888 !important;
    padding: 8px 0 8px 16px !important;
    border-bottom: none !important;
    white-space: normal !important;
  }
  .navbar-item.dropdown.active .dropdown-menu { max-height: 300px; padding: 8px 0; }
  .navbar-item.dropdown.active .chevron { transform: rotate(180deg); }
}

/* =============================================
   CAROUSEL
   ============================================= */
.service-carousel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carousel-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.carousel-track, .carousel-slide { width: 100%; height: 100%; }

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.carousel-slide.active { opacity: 1; z-index: 2; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 2.5s infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transform: translateY(-50%) scale(1.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-btn svg { 
  width: 26px; height: 26px; 
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}

.carousel-dots { display: flex; justify-content: center; gap: 8px; }

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Contenido del servicio */
.service-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
}

.service-content h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 2px;
}

.service-content h3 {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.4;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-content p {
  color: #4b5563;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 36px 0;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  padding: 11px 28px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  border: 3px solid var(--accent);
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.4);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  background-color: var(--bg-alt);
  padding: 90px 40px;
  color: var(--text-color);
}

.reviews-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 70px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
}

.reviews-title::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}

.review-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-author { display: flex; flex-direction: column; gap: 2px; }

.review-author h4 {
  margin: 0;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.review-author span {
  color: var(--accent);
  font-size: 13px;
  font-style: italic;
  font-family: var(--font-family);
}

.review-card p {
  margin: 0;
  color: #6b7280;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.7;
}

/* =============================================
   CTA  —  sección oscura para contraste
   ============================================= */
.cta-section {
  background: #111111;
  padding: 110px 40px;
  text-align: center;
  color: #ffffff;
}

.cta-container { max-width: 800px; margin: 0 auto; }

.cta-container h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  margin: 0 0 20px 0;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
}

.cta-container p {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 44px 0;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.btn-pill {
  display: inline-block;
  background-color: var(--accent);
  color: #ffffff;
  padding: 16px 52px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* =============================================
   FORMULARIO
   ============================================= */
.contact-section {
  background-color: var(--bg-color);
  padding: 80px 40px 120px;
  color: var(--text-color);
  text-align: center;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 60px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
}

.form-title::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #111111;
  font-family: var(--font-family);
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder { color: #9ca3af; }

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.btn-submit {
  width: auto;
  display: block;
  margin: 0 auto;
  background-color: #111111;
  color: #ffffff;
  padding: 12px 44px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #111111;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background-color: transparent;
  color: #111111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* =============================================
   FOOTER CONTACTO
   ============================================= */
.footer-contact-section {
  background-color: var(--bg-alt);
  padding: 100px 40px;
  color: var(--text-color);
  border-top: 1px solid #e5e7eb;
}

.footer-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer-contact-container { flex-direction: column; gap: 40px; }
}

.map-container {
  flex: 1;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-info-container { flex: 1; }

.contact-info-container h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
}

.contact-info-container p {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.contact-item { display: flex; align-items: center; gap: 14px; }

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

.contact-item span {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.4;
  color: #374151;
}

@media (max-width: 1024px) {
  .contact-info-container h2 { font-size: 30px; }
  .map-container { width: 100%; height: 350px; }
}

/* =============================================
   FOOTER PRINCIPAL
   ============================================= */
.main-footer {
  background-color: #111111;
  padding: 60px 40px 40px;
  color: #ffffff;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  max-width: 320px;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -60px auto;
}

.footer-logo img { width: 100%; height: auto; display: block; }

.social-icons { display: flex; gap: 12px; justify-content: center; }

.social-icons a {
  color: #666;
  background-color: #1c1c1c;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  color: #ffffff;
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.35);
}

.social-icons a svg { transition: transform 0.25s ease; }
.social-icons a:hover svg { transform: scale(1.1); }

.footer-nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: #555;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-nav-links a:hover { color: #ffffff; }

.footer-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #3a3a3a;
  font-family: var(--font-family);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* =============================================
   MÓVIL PEQUEÑO (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .services-section { padding: 40px 16px; }
  .service-content h2 { font-size: 24px; }
  .service-content p { font-size: 14px; }
  .hero-about-card h2 { font-size: 22px; }
  .cta-section { padding: 60px 20px; }
  .cta-container h2 { font-size: 32px; }
  .reviews-section { padding: 60px 16px; }
  .contact-section { padding: 60px 16px 80px; }
  .footer-contact-section { padding: 60px 16px; }
  .section-heading { padding: 32px 16px 12px; }
  .section-heading h2 { font-size: 30px; }
  .nautica-cta { padding: 12px 16px 40px; }
}

/* =============================================
   SECTION HEADINGS (Vehículos / Náutica)
   ============================================= */
.section-heading {
  padding: 60px 60px 20px;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 20px;
}

.section-heading .section-label {
  display: block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  color: #111111;
  line-height: 1;
}

.section-heading h2::after { display: none; }

@media (max-width: 1024px) {
  .section-heading { padding: 40px 24px 16px; }
  .section-heading h2 { font-size: 38px; }
}

/* =============================================
   NÁUTICA SECTION — fondo alternativo
   ============================================= */
/* Imagen intro náutica — se muestra entera sin recortar */
#nautica-intro .service-carousel {
  align-self: start;
}

#nautica-intro .carousel-image-container {
  aspect-ratio: unset;
  height: auto;
  overflow: visible;
  box-shadow: none;
}

#nautica-intro .carousel-track,
#nautica-intro .carousel-slide {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  border-radius: 8px;
}



/* =============================================
   NÁUTICA OVERRIDES
   ============================================= */
.nautica-section {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
}

.nautica-section .btn-outline:hover {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #dce8f0;
  border: 2px dashed #93bdd0;
  border-radius: 8px;
  min-height: 380px;
  color: #5a8fa8;
}

.photo-placeholder span {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
