:root {
  --navy: #061523;
  --deep: #02070d;
  --ink: #111827;
  --muted: #687385;
  --line: rgba(255, 255, 255, 0.18);
  --gold: #d7ad62;
  --sand: #f4efe6;
  --foam: #edf7f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
}

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

img, video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand,
.main-nav,
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
  width: 36px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-btn img {
  border-radius: 2px;
  object-fit: contain;
}
.lang-btn.active {
  opacity: 1;
  border-color: var(--gold);
}
.lang-btn:hover { opacity: 0.85; }

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.main-nav {
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 74px;
  overflow: hidden;
}

.hero-media,
.hero-media:after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(2, 7, 13, 0.95) 0%,
    rgba(2, 7, 13, 0.6) 40%,
    rgba(2, 7, 13, 0.1) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.4vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #101010;
  background: var(--gold);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 74px;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  color: var(--white);
  background: rgba(5, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.fleet-card span,
.experience-cards span,
.course-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 10px 0;
  font-size: 22px;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section-dark,
.section-light {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-dark {
  color: var(--white);
  background: var(--deep);
}

.section-light {
  background: var(--sand);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(6, 21, 35, 0.12);
  background: var(--white);
}

.intro-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(6, 21, 35, 0.12);
}

.intro-grid span {
  color: var(--gold);
  font-weight: 900;
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.courses h2,
.seo-roadmap h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.intro-grid p,
.section-heading p,
.feature-copy li,
.courses p {
  color: var(--muted);
  line-height: 1.65;
}

.section-dark .section-heading p,
.section-dark .courses p,
.section-dark .feature-copy li {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.experience-cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.experience-cards article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--navy);
}

.experience-cards article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 58%);
}

.experience-cards div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}

.experience-cards h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 14px;
}

.fleet-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  background: #071421;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-card figure {
  height: 300px;
  margin: 0;
  overflow: hidden;
}

.fleet-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.fleet-card h3 {
  margin: 10px 0;
  font-size: 26px;
  line-height: 1;
}

.fleet-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.fleet-card strong {
  margin-top: auto;
  color: var(--gold);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
}

.feature-photo {
  min-height: 620px;
  overflow: hidden;
}

.feature-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-copy li {
  padding: 16px 0;
  border-top: 1px solid rgba(6, 21, 35, 0.14);
}

.courses {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 42px;
  align-items: center;
}

#habilitacao {
  position: relative;
  background-color: var(--deep);
  background-image: 
    linear-gradient(to right, rgba(2, 7, 13, 0.95) 0%, rgba(2, 7, 13, 0.7) 100%),
    url('./assets/img/alunos/021-whatsapp-image-2026-05-24-at-08-48-47-3.jpeg'),
    url('./assets/img/alunos/024-whatsapp-image-2026-05-24-at-08-48-47.jpeg');
  background-position: 
    center,
    left center,
    right center;
  background-size: 
    cover,
    50% 100%,
    50% 100%;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 60px 40px;
  margin-top: 60px;
  border: 1px solid var(--line);
}
#habilitacao > div:first-child {
  position: relative;
  z-index: 2;
}
#habilitacao .course-list {
  position: relative;
  z-index: 2;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.course-list article {
  min-height: 320px;
  padding: 24px;
  background: rgba(2, 7, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  transition: transform 0.2s, background 0.2s;
}
.course-list article:hover {
  transform: translateY(-4px);
  background: rgba(2, 7, 13, 0.8);
}

.course-list h3 {
  margin: 18px 0;
  font-size: 28px;
}

.course-list strong {
  display: block;
  margin-top: 28px;
  color: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.blog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(6, 21, 35, 0.12);
}

.blog-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.blog-card h3 {
  margin: 18px 0;
  font-size: 28px;
  line-height: 1.05;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.blog-card a {
  margin-top: auto;
  font-weight: 900;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.roadmap-grid article {
  min-height: 190px;
  padding: 20px;
  background: var(--deep);
}

.roadmap-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
}

.advisor-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 350px;
  max-width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.advisor-widget.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
}

.advisor-header {
  display: flex;
  align-items: center;
  padding: 18px 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.advisor-profile {
  position: relative;
  margin-right: 14px;
}

.advisor-profile img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.advisor-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.advisor-info {
  flex: 1;
}

.advisor-info span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.advisor-info p {
  margin: 3px 0 0;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.advisor-actions {
  display: flex;
  gap: 4px;
}

.advisor-actions button {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.advisor-actions button:hover {
  background: #f3f4f6;
  color: #4b5563;
}

.advisor-body {
  padding: 24px 16px;
  background: #ffffff;
  min-height: 140px;
}

.advisor-message-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.advisor-message-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.advisor-bubble {
  background: #f3f4f6;
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  max-width: 85%;
  position: relative;
}

.advisor-bubble p {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.45;
}

.advisor-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.advisor-input-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.advisor-input-mock span {
  flex: 1;
  color: #9ca3af;
  font-size: 14px;
}

.advisor-input-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.action-btn:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.send-btn {
  color: #ffffff;
  background: var(--navy);
  width: 32px;
  height: 32px;
}

.send-btn:hover {
  background: #000000;
  color: #ffffff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #010408;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 1100px) {
  .fleet-grid,
  .blog-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-cards,
  .courses,
  .split-feature,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 100px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .intro-grid,
  .fleet-grid,
  .blog-grid,
  .roadmap-grid,
  .course-list {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 21, 35, 0.12);
  }

  .experience-cards article,
  .feature-photo,
  .fleet-card {
    min-height: 420px;
  }

  .advisor-widget {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}

/* --- Boat Details Modal --- */
.boat-details-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--deep);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.boat-details-modal.show {
  opacity: 1; visibility: visible;
}

.boat-details-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  position: relative;
  background: var(--deep);
}

.close-modal-btn {
  position: fixed;
  top: 20px; right: 24px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--line);
  font-size: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2010;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: background 0.2s;
}
.close-modal-btn:hover { background: var(--line); }

/* Hero Gallery */
.boat-hero-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.boat-hero-gallery .hero-main-img {
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 100%;
}

.boat-hero-gallery .hero-grid-img {
  display: contents;
}

.boat-hero-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.boat-hero-gallery img:hover { transform: scale(1.02); }

/* Layout Columns */
.boat-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Main Content */
.boat-main-content h2 { font-size: 2.5rem; margin-top: 0; margin-bottom: 8px; color: var(--white); }
.boat-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.boat-tags span { background: var(--navy); padding: 4px 12px; border-radius: 16px; font-size: 0.85rem; font-weight: 500; border: 1px solid var(--line); color: var(--white); }

.boat-section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.boat-section h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--white); }
.boat-section p { line-height: 1.6; color: var(--muted); }

/* Activities Grid */
.boat-activities {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.activity-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.activity-item .icon { font-size: 1.5rem; }

/* Split Sections */
.boat-split-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.boat-conditions, .boat-equipment { list-style: none; padding: 0; margin: 0; }
.boat-conditions li, .boat-equipment li { margin-bottom: 12px; color: var(--muted); }
.boat-conditions li strong { color: var(--white); }

/* Sidebar Booking Card */
.boat-sidebar {
  position: sticky;
  top: 100px;
}
.booking-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.booking-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.price-discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.discount-badge {
  background: rgba(211, 47, 47, 0.15);
  color: #ef5350;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}
.booking-price strong {
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.captain-included {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(129, 199, 132, 0.1);
  color: #81c784;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 32px;
}

.booking-inputs {
  margin-bottom: 24px;
}
.input-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.booking-date {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color-scheme: dark;
}
.booking-date:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 173, 98, 0.2);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-reserve {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--deep);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(215, 173, 98, 0.3);
}
.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(215, 173, 98, 0.4);
}
.booking-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Map Mock */
.location-text { font-weight: 600; margin-bottom: 12px; color: var(--white); }
.boat-map-mock {
  width: 100%; height: 200px;
  background: url('./assets/img/institucional/001-institucional.jpeg') center/cover;
  border-radius: 12px;
  position: relative;
}
.boat-map-mock.has-iframe {
  background: none;
}
.boat-map-mock::after {
  content: 'Localização Aproximada';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold); color: var(--deep); padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 0.85rem;
}
.boat-map-mock.has-iframe::after {
  display: none;
}

@media (max-width: 900px) {
  .boat-details-layout { grid-template-columns: 1fr; }
  .boat-split-sections { grid-template-columns: 1fr; }
  .boat-activities { grid-template-columns: 1fr; }
  .boat-hero-gallery { grid-template-columns: 1fr; grid-template-rows: 250px 100px; }
  .boat-hero-gallery .hero-main-img { grid-column: 1 / -1; }
}

/* Make fleet cards look clickable */
.fleet-card {
  cursor: pointer;
  position: relative;
}
.fleet-card::after {
  content: "Ver fotos";
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.fleet-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Blog Timeline */
.blog-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.blog-timeline .blog-card {
  position: relative;
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
}

.blog-timeline .blog-card .blog-card-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-timeline .blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-timeline .blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-timeline .blog-card-content {
  flex: 1;
}

.blog-timeline .blog-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.blog-timeline .blog-card::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--deep);
  z-index: 2;
}

.blog-timeline .blog-card span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.blog-timeline .blog-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-timeline .blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.blog-timeline .blog-card .read-more-link {
  display: inline-block;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.blog-timeline .blog-card:hover .read-more-link {
  color: var(--gold);
}

@media (max-width: 600px) {
  .blog-timeline .blog-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-timeline .blog-card .blog-card-img {
    width: 100%;
    height: 180px;
  }
}
