/* ============================================================
   reset.css — normalize, box-sizing y variables globales
   Tema claro inspirado en la identidad Granfort
   ============================================================ */

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

:root {
  /* Colores base (tema claro) */
  --white: #ffffff;
  --paper: #f5f7f8;
  --paper-2: #eaeef0;
  --ink: #2b3033;
  --ink-soft: #5f686d;
  --ink-faint: #8a9297;

  /* Azules náuticos */
  --navy-deep: #0a1f2c;
  --navy: #0c2635;
  --sea: #0f6f97;
  --sea-dark: #0b567a;
  --aqua: #37b8c9;
  --aqua-light: #72d5df;
  --sand: #c9b99a;

  /* Superficies y líneas */
  --surface: #ffffff;
  --surface-alt: var(--paper);
  --line: #e3e8ea;
  --line-strong: #cfd6d9;
  --overlay: rgba(10, 31, 44, 0.55);

  /* Texto sobre fondos oscuros/imágenes */
  --on-dark: #f4f7f8;
  --on-dark-soft: rgba(244, 247, 248, 0.78);

  /* Sombras suaves de tema claro */
  --shadow-sm: 0 2px 10px rgba(12, 38, 53, 0.06);
  --shadow-md: 0 14px 36px rgba(12, 38, 53, 0.1);
  --shadow-lg: 0 30px 70px rgba(12, 38, 53, 0.16);

  /* Tipografía */
  --font-display: "Saira", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-wide: "Saira", "Space Grotesk", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --container: 1240px;
  --container-narrow: 780px;

  /* Radios */
  --radius-sm: 3px;
  --radius: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Transiciones */
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
  --t-fast: 180ms var(--ease);
  --t: 320ms var(--ease);
  --t-slow: 620ms var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}

em {
  font-style: normal;
  color: var(--sea);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(15, 111, 151, 0.18);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: var(--space-sm);
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--navy);
  color: var(--on-dark);
  border-radius: var(--radius);
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}
/* ============================================================
   layout.css — nav, hero, container, secciones, grids, footer
   ============================================================ */

/* --- Barra de progreso --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  background: transparent;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sea), var(--aqua));
  transition: width 80ms linear;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Navegación --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
  color: var(--on-dark);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.brand__logo {
  height: 32px;
  width: auto;
  display: block;
}

/* Sobre el hero (barra transparente) y en el footer oscuro: logo en blanco */
.nav .brand__logo {
  filter: brightness(0) invert(1);
  transition: filter var(--t);
}

.nav.is-scrolled .brand__logo {
  filter: brightness(1) invert(0);
}

.footer .brand__logo {
  filter: brightness(0) invert(1);
}

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

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

/* --- Secciones --- */
.section {
  position: relative;
  padding-block: var(--space-xl);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  background: var(--navy);
  color: var(--on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--on-dark);
}

.section__head {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem);
  margin-block: 0.6rem;
}

.section__intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 56ch;
}

.section--dark .section__intro {
  color: var(--on-dark-soft);
}

.kicker {
  display: inline-block;
  font-family: var(--font-wide);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sea);
}

.section--dark .kicker {
  color: var(--aqua);
}

/* --- Split --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split--reverse .split__text {
  order: 2;
}

.split__body {
  color: var(--ink-soft);
  margin-block: var(--space-sm) var(--space-md);
  max-width: 52ch;
}

.section--dark .split__body {
  color: var(--on-dark-soft);
}

/* --- Grids --- */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.dealers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: var(--on-dark);
  padding-top: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
}

.footer .brand {
  color: var(--on-dark);
}

.footer__desc {
  color: var(--on-dark-soft);
  margin-block: var(--space-sm);
  max-width: 34ch;
  font-size: 0.95rem;
}

.footer__contact {
  margin-bottom: var(--space-sm);
}

/* Doble clase para ganar a `.footer__links a`, que va después en la hoja */
.footer__links.footer__contact a {
  color: var(--on-dark);
  font-weight: 600;
}

.footer__links.footer__contact a:hover {
  color: var(--aqua);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  font-family: var(--font-wide);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  transition: color var(--t-fast);
}

.footer__social a:hover {
  color: var(--aqua);
}

.footer__title {
  font-family: var(--font-wide);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--on-dark-soft);
  margin-bottom: var(--space-sm);
}

.footer__links li {
  margin-bottom: 0.55rem;
}

.footer__links a {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}

.footer__links a:hover {
  color: var(--on-dark);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--on-dark-soft);
  font-size: 0.85rem;
}

.footer__region select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.4rem 0.7rem;
  color: var(--on-dark-soft);
  font-size: 0.82rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
  }

  .nav__links {
    display: none;
  }

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

  .split--reverse .split__text {
    order: 0;
  }

  .boats-grid,
  .stats-grid,
  .dealers-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .container {
    padding-inline: 1.25rem;
  }

  .boats-grid,
  .stats-grid,
  .dealers-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   components.css — botones, hero, tarjetas, formularios, faq, toast
   ============================================================ */

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.86rem;
}

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

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

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--sea);
  color: var(--sea);
}

.btn--on-dark {
  background: var(--white);
  color: var(--navy);
}

.btn--on-dark:hover {
  transform: translateY(-2px);
  background: var(--aqua-light);
}

.btn--outline-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--on-dark);
}

.btn--outline-dark:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-family: var(--font-wide);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge--light {
  color: var(--on-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.badge--soft {
  color: var(--sea);
  border: 1px solid rgba(15, 111, 151, 0.3);
  background: rgba(15, 111, 151, 0.07);
}

/* --- Media placeholder (foto editable) ---
   Para usar una foto real: style="--photo:url('assets/188.jpg')" */
.media {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(10, 31, 44, 0.15), rgba(10, 31, 44, 0.6)),
    var(--photo, linear-gradient(155deg, #13496a 0%, #0c2635 70%));
  background-size: cover;
  background-position: center;
}

.media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background:
    radial-gradient(120% 80% at 20% 120%, rgba(55, 184, 201, 0.28), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='60' viewBox='0 0 240 60'%3E%3Cpath d='M0 40 q30 -18 60 0 t60 0 60 0 60 0' fill='none' stroke='%2337b8c9' stroke-width='1.5' opacity='0.35'/%3E%3Cpath d='M0 50 q30 -14 60 0 t60 0 60 0 60 0' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E") repeat-x bottom / 240px 60px;
  pointer-events: none;
}

.media__tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  font-family: var(--font-wide);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
}

/* --- Hero: banner deslizante --- */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--navy);
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 0s linear 1s;
}

.hero__slide:nth-child(1) { background: linear-gradient(155deg, #13496a 0%, #0c2635 70%); }
.hero__slide:nth-child(2) { background: linear-gradient(155deg, #0f5a6e 0%, #0a1f2c 70%); }
.hero__slide:nth-child(3) { background: linear-gradient(155deg, #123a52 0%, #08151f 70%); }

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s var(--ease), visibility 0s;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 20, 30, 0.35) 0%, rgba(6, 20, 30, 0.12) 35%, rgba(6, 20, 30, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 20, 30, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: calc(var(--space-xl) + 2rem);
}

/* Entrada escalonada del contenido de la diapositiva activa */
.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
}

.hero__slide.is-active .hero__content > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero__slide.is-active .hero__content > *:nth-child(1) { transition-delay: 0.15s; }
.hero__slide.is-active .hero__content > *:nth-child(2) { transition-delay: 0.25s; }
.hero__slide.is-active .hero__content > *:nth-child(3) { transition-delay: 0.35s; }
.hero__slide.is-active .hero__content > *:nth-child(4) { transition-delay: 0.45s; }

.hero__title {
  font-size: clamp(2.8rem, 1.6rem + 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  max-width: 16ch;
  margin-block: var(--space-sm) var(--space-md);
}

.hero__title em {
  color: var(--aqua-light);
}

.hero__lead {
  font-size: 1.2rem;
  color: var(--on-dark-soft);
  max-width: 52ch;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Barra inferior: puntos de navegación + scroll hint */
.hero__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.hero__dots {
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 34px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--t), width var(--t);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero__dot.is-active {
  width: 52px;
  background: var(--aqua-light);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-wide);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

.hero__scroll span {
  width: 46px;
  height: 1px;
  background: var(--aqua-light);
}

/* --- Filtros de series --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.filter {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--font-wide);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.filter:hover {
  color: var(--navy);
  border-color: var(--sea);
}

.filter.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

/* --- Boat cards (image-forward) --- */
.boat-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.boat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.boat-card.is-hidden {
  display: none;
}

.boat-card__media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

.boat-card__series {
  font-family: var(--font-wide);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 31, 44, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.boat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md);
}

.boat-card__name {
  font-family: var(--font-wide);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.boat-card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-block: 0.5rem var(--space-md);
}

.boat-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  padding-top: var(--space-sm);
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--line);
}

.boat-card__specs div {
  display: flex;
  flex-direction: column;
}

.boat-card__specs dt {
  font-family: var(--font-wide);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.boat-card__specs dd {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

.boat-card__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.boat-card__actions .btn {
  flex: 1;
}

.boat-card__extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--t), opacity var(--t), margin var(--t);
}

.boat-card.is-detailed .boat-card__extra {
  max-height: 200px;
  opacity: 1;
  margin-bottom: var(--space-md);
}

.boat-card__extra p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--line-strong);
}

/* --- Stats (Why GF) --- */
.stat-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card__num {
  font-family: var(--font-wide);
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  font-weight: 700;
  color: var(--aqua-light);
  line-height: 1;
}

.stat-card__title {
  font-size: 1.15rem;
  margin-block: 0.6rem 0.5rem;
}

.stat-card__desc {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
}

/* --- Split visual (editorial) --- */
.split__visual {
  min-height: 340px;
}

.split__visual .media {
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius-md);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-md);
}

.feature-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.section--dark .feature-list li {
  color: var(--on-dark-soft);
}

.feature-list span {
  color: var(--sea);
  font-weight: 700;
}

.section--dark .feature-list span {
  color: var(--aqua);
}

/* --- Dealers --- */
.dealer-card {
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

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

.dealer-card__region {
  font-family: var(--font-wide);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
}

.dealer-card__name {
  font-size: 1.4rem;
  margin-block: 0.5rem 0.6rem;
}

.dealer-card__desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: var(--space-sm);
}

.dealer-card__link {
  font-weight: 600;
  color: var(--sea);
  font-size: 0.92rem;
}

/* --- Testimonios --- */
.testimonial {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__stars {
  color: var(--sand);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.testimonial__quote {
  color: var(--ink);
  margin-bottom: var(--space-md);
  flex: 1;
}

.testimonial__foot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--aqua));
  color: var(--white);
  font-family: var(--font-wide);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.testimonial__meta strong {
  color: var(--navy);
}

/* --- Formularios --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-wide);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.field__opt {
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field input::placeholder {
  color: var(--ink-faint);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 111, 151, 0.14);
}

.field.has-error input,
.field.has-error select {
  border-color: #d0554d;
  box-shadow: 0 0 0 3px rgba(208, 85, 77, 0.12);
}

.field__error {
  font-family: var(--font-wide);
  font-size: 0.68rem;
  color: #c0453d;
}

.form-grid__submit {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* --- Lead / contacto en bloque oscuro --- */
.lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--on-dark);
}

.lead h2 {
  color: var(--on-dark);
}

.lead .field input,
.lead .field select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--on-dark);
}

.lead .field input::placeholder {
  color: var(--on-dark-soft);
}

.lead .field label {
  color: var(--on-dark-soft);
}

.lead .split__body {
  color: var(--on-dark-soft);
}

.lead__visual .media {
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-md);
}

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  padding: 1.3rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t-fast);
}

.faq__question:hover {
  color: var(--sea);
}

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--sea);
  transition: transform var(--t);
}

.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--t), opacity var(--t);
}

.faq__answer p {
  padding-bottom: 1.3rem;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* --- CTA final --- */
.cta {
  background: var(--navy);
  color: var(--on-dark);
  text-align: center;
}

.cta h2 {
  color: var(--on-dark);
}

.cta__title {
  font-size: clamp(2.4rem, 1.6rem + 4vw, 4.4rem);
  margin-block: 0.6rem;
}

.cta__lead {
  color: var(--on-dark-soft);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.cta .form-grid {
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}

.cta .field input,
.cta .field select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--on-dark);
}

.cta .field label {
  color: var(--on-dark-soft);
}

.cta__secondary {
  grid-column: 1 / -1;
  color: var(--aqua-light);
  font-size: 0.92rem;
  text-align: center;
}

.cta__secondary:hover {
  color: var(--white);
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: min(92vw, 460px);
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--on-dark);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast--error {
  background: #b3433b;
}

.toast--success {
  background: #1f9d55;
}

.toast__text {
  font-size: 0.92rem;
}

.toast__close {
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--on-dark-soft);
  transition: color var(--t-fast);
}

.toast__close:hover {
  color: var(--on-dark);
}

/* --- Responsive components --- */
@media (max-width: 900px) {
  .lead {
    grid-template-columns: 1fr;
    padding: var(--space-md);
  }

  .lead__visual {
    order: -1;
  }
}

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

  .boat-card__actions {
    flex-direction: column;
  }
}
/* ============================================================
   animations.css — scroll-reveal y transiciones
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Retraso escalonado dentro de un grid */
.boats-grid .reveal:nth-child(2),
.stats-grid .reveal:nth-child(2),
.dealers-grid .reveal:nth-child(2),
.testi-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.boats-grid .reveal:nth-child(3),
.stats-grid .reveal:nth-child(3),
.dealers-grid .reveal:nth-child(3),
.testi-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.boats-grid .reveal:nth-child(4) { transition-delay: 210ms; }
.boats-grid .reveal:nth-child(5) { transition-delay: 280ms; }
.boats-grid .reveal:nth-child(6) { transition-delay: 350ms; }

/* Hover sutil de zoom en media */
.boat-card__media,
.split__visual .media,
.lead__visual .media {
  transition: transform var(--t-slow);
}

.boat-card:hover .boat-card__media {
  transform: scale(1.03);
}

/* Pulso del scroll-hint */
@keyframes hint-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.hero__scroll {
  animation: hint-pulse 2.6s var(--ease) infinite;
}

/* Respeto por prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Home simplificado + página de modelos (añadidos)
   ============================================================ */

/* Modelos destacados: línea de uso y pie de sección */
.boat-card__use {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 var(--space-sm);
  color: var(--sea);
  font-weight: 600;
  font-size: 0.95rem;
}

.section__foot {
  margin-top: var(--space-lg);
  text-align: center;
}

/* Por qué elegir GF: tres beneficios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.benefit {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

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

.benefit__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 111, 151, 0.08);
  color: var(--sea);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.benefit__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.benefit__text {
  color: var(--ink-soft);
}

/* Imagen destacada con mensaje */
.feature-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62vh;
  color: var(--on-dark);
  overflow: hidden;
}

.feature-band__media {
  position: absolute;
  inset: 0;
}

.feature-band__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 30, 0.5), rgba(6, 20, 30, 0.72));
}

.feature-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--space-xl);
}

.feature-band__title {
  color: var(--on-dark);
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem);
  margin-bottom: var(--space-sm);
}

.feature-band__title em {
  color: var(--aqua-light);
}

.feature-band__text {
  color: var(--on-dark-soft);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto var(--space-md);
}

/* Campo de texto largo y campo a todo el ancho */
.field--full {
  grid-column: 1 / -1;
}

.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field textarea:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 111, 151, 0.14);
}

.cta .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--on-dark);
}

/* Cabecera de página interior (modelos.html) */
.page-hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: var(--space-lg);
  background: linear-gradient(160deg, #13496a 0%, var(--navy) 72%);
  color: var(--on-dark);
}

.page-hero h1 {
  color: var(--on-dark);
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem);
  margin-block: 0.6rem;
}

.page-hero .kicker {
  color: var(--aqua);
}

.page-hero p {
  color: var(--on-dark-soft);
  max-width: 56ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

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

/* Página de gracias */
.page-hero .thanks {
  text-align: center;
  padding-block: var(--space-lg);
}

.thanks__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: rgba(55, 184, 201, 0.15);
  color: var(--aqua);
  font-size: 2.2rem;
  font-weight: 700;
}

.thanks .kicker { justify-content: center; }

.thanks p {
  margin-inline: auto;
}

.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

/* Campo trampa anti-spam (oculto a personas) */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Iconos sociales flotantes (WhatsApp / Instagram) */
.floating-social {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fsocial {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 20, 30, 0.28);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.fsocial:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 26px rgba(6, 20, 30, 0.34);
}

.fsocial svg {
  width: 28px;
  height: 28px;
}

.fsocial--wa {
  background: #25d366;
}

.fsocial--ig {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

@media (max-width: 560px) {
  .floating-social { right: 14px; bottom: 14px; gap: 10px; }
  .fsocial { width: 48px; height: 48px; }
  .fsocial svg { width: 24px; height: 24px; }
}

/* Presencia: mapa regional estilo pines */
.presence-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
}

.presence-text .section__intro {
  margin-left: 0;
}

.presence-map {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 132 / 140;
}

@media (max-width: 860px) {
  .presence-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    justify-items: center;
    text-align: center;
  }
  .presence-text { order: -1; max-width: 620px; }
}

.presence-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.presence-map__land path {
  fill: #d9dee3;
  stroke: var(--paper);
  stroke-width: 0.4;
  stroke-linejoin: round;
  transition: fill var(--t);
}

.presence-map__land #pe,
.presence-map__land #cr,
.presence-map__land #pa {
  fill: var(--sea);
}

/* Marcadores con pin pulsante y etiqueta píldora */
.pmark {
  position: absolute;
  left: var(--x);
  top: var(--y);
}

.pmark__dot {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 3px #fff, 0 2px 8px rgba(12, 38, 53, 0.35);
}

.pmark__dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--sea);
  opacity: 0.7;
  animation: pmarkPulse 2.2s ease-out infinite;
}

@keyframes pmarkPulse {
  from { transform: scale(0.7); opacity: 0.7; }
  to   { transform: scale(2.4); opacity: 0; }
}

.pmark__pill {
  position: absolute;
  left: 14px;
  top: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-wide);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.pmark--left .pmark__pill {
  left: auto;
  right: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .pmark__dot::before { animation: none; }
}

@media (max-width: 560px) {
  .presence-map { max-width: 420px; }
  .pmark__pill { font-size: 0.62rem; padding: 0.32rem 0.6rem; }
}

/* Formas de contacto (teléfono / correo) */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.contact-method {
  border-top: 2px solid var(--aqua);
  padding-top: var(--space-sm);
}

.contact-method__label {
  display: block;
  font-family: var(--font-wide);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}

.contact-method__value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t-fast);
}

.contact-method__value:hover {
  color: var(--sea);
}

@media (max-width: 700px) {
  .contact-methods { grid-template-columns: 1fr; }
}

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

/* ============================================================
   Páginas de modelo individuales
   ============================================================ */
/* Portada del modelo: vídeo (o foto) a pantalla completa con el texto encima */
.model-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82vh;
  overflow: hidden;
  color: var(--on-dark);
  background: linear-gradient(160deg, #13496a 0%, var(--navy) 72%);
}

/* Fallback cuando el modelo aún no tiene vídeo */
.model-hero--photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}

.model-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.model-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 20, 30, 0.35) 0%, rgba(6, 20, 30, 0.12) 35%, rgba(6, 20, 30, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 20, 30, 0.55) 0%, transparent 55%);
}

.model-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: var(--space-xl);
}

.model-hero .kicker {
  color: var(--aqua);
}

.model-hero__name {
  color: var(--on-dark);
  font-family: var(--font-wide);
  font-size: clamp(2.6rem, 1.8rem + 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-block: 0.4rem 0.6rem;
}

.model-hero__use {
  color: var(--aqua-light);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.model-hero__desc {
  color: var(--on-dark-soft);
  max-width: 48ch;
  margin-bottom: var(--space-md);
}

.model-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-table > div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  font-family: var(--font-wide);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.spec-table dd {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

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

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

/* ============================================================
   Pestañas de página de modelo (Descripción / Detalles / Galería…)
   ============================================================ */
.model-tabs {
  position: sticky;
  top: 64px;
  z-index: 120;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.model-tabs__inner {
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.model-tabs__inner::-webkit-scrollbar { display: none; }

.model-tab {
  flex: 0 0 auto;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-wide);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.model-tab:hover { color: var(--sea); }

.model-tab.is-active {
  color: var(--sea);
  border-bottom-color: var(--sea);
}

.model-tab:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: -4px;
}

.model-panels {
  padding-block: var(--space-xl);
  background: var(--surface);
}

.model-panel[hidden] { display: none; }

.model-panel { animation: panelIn var(--t) both; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.model-general__lead {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.model-general__subtitle {
  font-family: var(--font-wide);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sea);
  margin-top: var(--space-md);
  margin-bottom: 0.6rem;
}

.hl {
  color: var(--sea);
  font-weight: 700;
}

/* Partes principales del bote (Arco · Carlinga · Popa) */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.part-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

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

.part-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.part-card__body {
  padding: var(--space-md);
}

.part-card__index {
  font-family: var(--font-wide);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--aqua);
}

.part-card__title {
  font-size: 1.4rem;
  margin: 0.2rem 0 0.5rem;
}

.part-card__text {
  color: var(--ink-soft);
}

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

/* Especificaciones: imagen + desplegables */
.spec-split {
  align-items: start;
}

.spec-faq .spec-table {
  border-top: none;
  padding-bottom: 1.3rem;
}

.spec-plan {
  aspect-ratio: 3 / 4;
  background-color: var(--white);
  background-image: var(--photo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.spec-plan--empty {
  display: grid;
  place-items: center;
  padding: var(--space-md);
  text-align: center;
  background-color: var(--paper);
  border-style: dashed;
  color: var(--ink-faint);
  font-family: var(--font-wide);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-general__split + .model-highlights {
  margin-top: var(--space-lg);
}

.model-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.model-highlight {
  border-top: 2px solid var(--aqua);
  padding-top: var(--space-sm);
}

.model-highlight dt {
  font-family: var(--font-wide);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}

.model-highlight dd {
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 700px) {
  .model-highlights { grid-template-columns: 1fr; gap: var(--space-sm); }
}

@media (prefers-reduced-motion: reduce) {
  .model-panel { animation: none; }
}

/* ============================================================
   Media con foto real (sustituye al placeholder)
   ============================================================ */
.media--photo::after {
  content: none;
}

.media--photo {
  background-image:
    linear-gradient(180deg, rgba(6, 20, 30, 0.05) 0%, rgba(6, 20, 30, 0.5) 100%),
    var(--photo);
}

/* --- Aviso de cookies --- */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: 420px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
  animation: cookieIn 0.35s ease both;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text { margin: 0; }
.cookie-banner a { color: var(--aqua); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.6rem; margin-top: 0.85rem; }
.cookie-banner .btn { padding: 0.5rem 0.95rem; font-size: 0.85rem; }
.cookie-banner__reject {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(0, 0, 0, 0.18);
}
.cookie-banner__reject:hover { background: rgba(0, 0, 0, 0.04); }
@media (max-width: 520px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
