:root {
  --navy: #083d62;
  --navy-dark: #04253d;
  --blue: #167bb5;
  --blue-light: #dff4ff;
  --sand: #f6efe3;
  --sand-2: #fffaf2;
  --white: #ffffff;
  --text: #153247;
  --muted: #6a8192;
  --border: rgba(8, 61, 98, 0.14);
  --shadow: 0 24px 70px rgba(4, 37, 61, 0.17);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--sand-2);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2,
.about-card h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 16px 0;
}

.section-heading p,
.section-copy p,
.contact-copy p,
.about-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: rgba(22, 123, 181, 0.1);
  border: 1px solid rgba(22, 123, 181, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 34px rgba(8, 61, 98, 0.28);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(8, 61, 98, 0.1);
  backdrop-filter: blur(16px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 168px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 61, 98, 0.22);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 132px 0 76px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../img/geribaile-grupo-pao-acucar.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 30%, rgba(22, 123, 181, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(4, 37, 61, 0.95) 0%, rgba(4, 37, 61, 0.8) 46%, rgba(4, 37, 61, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 840px;
  margin: 18px 0 22px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-info span {
  display: inline-flex;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 0.9rem;
}

.booking-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 390px;
  justify-self: end;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card img {
  width: 190px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 10px;
  mix-blend-mode: multiply;
}

.booking-card h2 {
  color: var(--navy-dark);
  font-size: 1.75rem;
  line-height: 1.1;
}

.booking-card p {
  color: var(--muted);
  margin: 12px 0 22px;
}

.benefits-section {
  padding-top: 48px;
  background: var(--sand-2);
}

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

.benefit-card,
.route-card,
.rule-card,
.price-box,
.about-card,
.contact-form,
.contact-info div,
.fleet-card,
.pricing-group,
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(4, 37, 61, 0.08);
}

.benefit-card {
  padding: 26px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: var(--blue-light);
  font-size: 1.5rem;
}

.benefit-card h3,
.route-card h3,
.rule-card strong,
.fleet-card h3 {
  color: var(--navy-dark);
  font-size: 1.14rem;
  line-height: 1.15;
}

.benefit-card p,
.route-card p,
.rule-card span,
.fleet-card p,
.fleet-card li {
  color: var(--muted);
  margin-top: 9px;
  font-size: 0.96rem;
}

.fleet-section,
.routes-section,
.gallery-section {
  background: var(--sand-2);
}

.boat-section,
.pricing-section,
.video-section,
.contact-section {
  background: var(--sand);
}

.boat-section-alt {
  background: var(--sand-2);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fleet-card {
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.fleet-content {
  padding: 28px;
}

.fleet-content > span {
  display: inline-flex;
  color: var(--blue);
  background: rgba(22, 123, 181, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.fleet-content h3 {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.fleet-content ul {
  display: grid;
  gap: 4px;
  margin: 16px 0 22px 18px;
}

.boat-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.boat-layout.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.section-copy p {
  margin-bottom: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.spec-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  color: var(--navy-dark);
  font-size: 0.92rem;
}

.spec-grid span {
  color: var(--muted);
  margin-top: 4px;
}

.boat-showcase {
  display: grid;
  gap: 16px;
}

.main-boat-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

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

.mini-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(4, 37, 61, 0.1);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.route-card {
  min-height: 235px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.route-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  margin-bottom: 28px;
}

.pricing-group {
  padding: 26px;
  margin-bottom: 34px;
}

.pricing-group-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}

.pricing-group-head h3 {
  color: var(--navy-dark);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 14px 0 8px;
}

.pricing-group-head p {
  color: var(--muted);
}

.price-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-box {
  overflow: hidden;
}

.price-box-featured {
  border-color: rgba(22, 123, 181, 0.32);
  box-shadow: 0 28px 80px rgba(22, 123, 181, 0.14);
}

.price-head {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 28px;
}

.price-box-featured .price-head {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.price-head span {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.price-head h4 {
  font-size: 2rem;
  line-height: 1.1;
}

.price-list {
  padding: 18px;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 15px 6px;
  border-bottom: 1px solid var(--border);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list strong {
  color: var(--navy-dark);
}

.price-list span {
  color: var(--blue);
  font-weight: 950;
  white-space: nowrap;
}

.price-list button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.rule-card {
  padding: 22px;
}

.rule-card strong,
.rule-card span {
  display: block;
}

.payment-warning {
  margin-top: 24px;
  color: var(--navy-dark);
  background: rgba(22, 123, 181, 0.1);
  border: 1px solid rgba(22, 123, 181, 0.22);
  border-radius: 22px;
  padding: 20px;
}

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

.gallery-item {
  border: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-dark);
  box-shadow: 0 16px 48px rgba(4, 37, 61, 0.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: var(--navy-dark);
}

.video-card strong {
  display: block;
  padding: 14px 18px 18px;
  color: var(--navy-dark);
}

.about-section {
  background:
    linear-gradient(rgba(4, 37, 61, 0.84), rgba(4, 37, 61, 0.84)),
    url("../img/geribaile-proa-passeio.jpg") center/cover;
}

.about-card {
  max-width: 880px;
  padding: 46px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.about-card p {
  margin-bottom: 26px;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info div {
  padding: 18px;
}

.contact-info strong,
.contact-info span {
  display: block;
}

.contact-info strong {
  color: var(--navy-dark);
}

.contact-info span {
  color: var(--muted);
  margin-top: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 850;
}

.contact-form label:nth-child(7),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--sand-2);
  color: var(--text);
  outline: 0;
  padding: 14px 15px;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-dark);
  padding: 56px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-content img {
  width: 180px;
  height: 76px;
  object-fit: contain;
  background: var(--white);
  border-radius: 18px;
  padding: 8px;
  margin-bottom: 16px;
}

.footer-content strong,
.footer-content a {
  display: block;
}

.footer-content strong {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-content a {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #19c95a;
  color: #fff;
  box-shadow: 0 18px 38px rgba(25, 201, 90, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 37, 61, 0.92);
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-dark);
  background: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 15px;
  }

  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-content,
  .boat-layout,
  .boat-layout.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    justify-self: start;
  }

  .fleet-grid,
  .price-columns {
    grid-template-columns: 1fr;
  }

  .boat-layout.reverse .boat-showcase {
    order: 2;
  }

  .boat-layout.reverse .section-copy {
    order: 1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .header-content {
    min-height: 72px;
  }

  .brand img {
    width: 142px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 37, 61, 0.94) 0%, rgba(4, 37, 61, 0.72) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4.6rem);
  }

  .main-boat-img {
    height: 390px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .pricing-group-head {
    display: block;
  }

  .pricing-group-head .btn {
    margin-top: 18px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .benefits-grid,
  .routes-grid,
  .rules-grid,
  .spec-grid,
  .footer-content,
  .mini-gallery,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .booking-card,
  .about-card,
  .contact-form,
  .pricing-group {
    padding: 22px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .price-list button {
    width: 100%;
    padding: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .video-card video {
    height: 420px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
}


/* LOGO TRANSPARENTE - AJUSTE FINAL */
.brand,
.footer-content img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand img,
.footer-content img {
  mix-blend-mode: normal !important;
}

.booking-card img {
  display: none !important;
}


/* V10 - HOME ORIGINAL + DESTINOS NA HOME + PÁGINAS INDIVIDUAIS DOS BARCOS */
.anchor-point { display: block; position: relative; top: -90px; visibility: hidden; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid rgba(8,61,98,.22); }
.destinations-home-section { background: var(--sand-2); padding-bottom: 56px; }
.destinations-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.destination-home-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 22px; box-shadow: 0 14px 42px rgba(4,37,61,.08); }
.destination-home-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 15px; color: var(--white); background: var(--navy); font-weight: 900; margin-bottom: 18px; }
.destination-home-card h3 { color: var(--navy-dark); margin: 0 0 8px; font-size: 1.2rem; }
.destination-home-card p { color: var(--muted); margin: 0; }
.compact-vitrines-section { background: var(--sand); }
.compact-vitrines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.compact-vitrine-card { background: var(--white); border: 1px solid var(--border); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.compact-vitrine-image img { width: 100%; height: 280px; object-fit: cover; }
.compact-vitrine-content { padding: 24px; }
.compact-vitrine-content h3 { color: var(--navy-dark); font-size: 1.8rem; line-height: 1; margin: 12px 0 10px; letter-spacing: -0.04em; }
.compact-vitrine-content p { color: var(--muted); margin: 0; }
.compact-vitrine-info { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.compact-vitrine-info span { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: rgba(22,123,181,.1); color: var(--navy-dark); font-size: .86rem; font-weight: 900; }
.compact-vitrine-actions { display: grid; gap: 10px; }
.compact-vitrine-actions .btn { width: 100%; }
.boat-detail-hero { padding: 140px 0 70px; color: var(--white); background: linear-gradient(135deg, rgba(4,37,61,.96), rgba(8,61,98,.9)), url('../img/geribaile-grupo-pao-acucar.jpg') center/cover; }
.detail-hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }
.back-link { display: inline-flex; margin-bottom: 18px; color: rgba(255,255,255,.86); font-weight: 900; }
.detail-hero-copy h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: .94; letter-spacing: -0.06em; margin: 18px 0; }
.detail-hero-copy p { max-width: 760px; font-size: 1.18rem; color: rgba(255,255,255,.86); }
.detail-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.detail-hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }
.detail-hero-card { background: rgba(255,255,255,.92); color: var(--text); border-radius: 26px; padding: 26px; box-shadow: var(--shadow); }
.detail-hero-card strong, .detail-hero-card span { display: block; }
.detail-hero-card strong { color: var(--navy-dark); font-size: 1.4rem; margin-bottom: 12px; }
.detail-hero-card span { padding: 12px 0; color: var(--muted); border-top: 1px solid var(--border); font-weight: 900; }
.boat-detail-section { background: var(--sand-2); }
.detail-page-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.detail-gallery, .detail-info, .detail-box-card, .detail-price-table, .detail-warning { background: var(--white); border: 1px solid var(--border); border-radius: 26px; box-shadow: 0 16px 48px rgba(4,37,61,.08); }
.detail-gallery { padding: 18px; }
.detail-main-image { width: 100%; height: 520px; object-fit: cover; border-radius: 22px; }
.detail-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.detail-thumb { padding: 0; border: 2px solid transparent; border-radius: 16px; overflow: hidden; background: var(--sand); }
.detail-thumb.active { border-color: var(--blue); }
.detail-thumb img { width: 100%; height: 105px; object-fit: cover; }
.detail-info { padding: 22px; }
.detail-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.detail-info-grid div { background: var(--sand-2); border: 1px solid var(--border); border-radius: 18px; padding: 14px; }
.detail-info-grid strong, .detail-info-grid span { display: block; }
.detail-info-grid strong { color: var(--navy-dark); font-size: .82rem; text-transform: uppercase; }
.detail-info-grid span { color: var(--muted); margin-top: 4px; font-weight: 900; }
.detail-boxes { display: grid; gap: 14px; }
.detail-box-card { box-shadow: none; padding: 22px; }
.detail-box-card h2 { color: var(--navy-dark); margin: 0 0 12px; font-size: 1.45rem; }
.detail-box-card ul { color: var(--muted); margin: 0; padding-left: 20px; }
.detail-box-card p { color: var(--muted); margin: 0; }
.detail-values-section { background: var(--sand); }
.detail-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-price-table { overflow: hidden; }
.detail-price-table h3 { margin: 0; color: var(--white); background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 22px; font-size: 1.45rem; }
.detail-price-table:nth-child(2) h3 { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.detail-price-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--border); }
.detail-price-row:last-child { border-bottom: 0; }
.detail-price-row strong { color: var(--navy-dark); }
.detail-price-row span { color: var(--blue); font-weight: 950; white-space: nowrap; }
.detail-price-row button { border: 0; border-radius: 999px; color: var(--white); background: var(--navy); padding: 9px 13px; font-weight: 900; }
.detail-warning { margin-top: 22px; padding: 20px; color: var(--navy-dark); }
@media (max-width: 1120px) { .compact-vitrines-grid, .destinations-home-grid { grid-template-columns: repeat(2, 1fr); } .detail-hero-grid, .detail-page-layout { grid-template-columns: 1fr; } .detail-hero-card { max-width: 420px; } }
@media (max-width: 820px) { .compact-vitrines-grid, .destinations-home-grid, .detail-price-grid, .detail-info-grid { grid-template-columns: 1fr; } .boat-detail-hero { padding-top: 110px; } .detail-main-image { height: 390px; } .detail-price-row { grid-template-columns: 1fr; align-items: stretch; } .detail-price-row button { width: 100%; padding: 12px; } }
@media (max-width: 560px) { .compact-vitrine-image img { height: 230px; } .detail-thumbs { grid-template-columns: repeat(2, 1fr); } .detail-thumb img { height: 90px; } .detail-main-image { height: 310px; } }


/* V11 - ROTAS COM IMAGENS NA HOME E VÍDEOS NAS PÁGINAS DAS LANCHAS */
.route-photo-grid {
  align-items: stretch;
}

.route-photo-card {
  padding: 0 !important;
  overflow: hidden;
  min-height: auto !important;
}

.route-photo-card::before {
  display: none !important;
}

.route-photo-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.route-photo-content {
  padding: 22px;
}

.route-photo-content > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
  margin-bottom: 14px;
}

.route-photo-content h3 {
  color: var(--navy-dark);
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.route-photo-content p {
  color: var(--muted);
  margin: 0 0 14px;
}

.route-photo-content small {
  display: inline-flex;
  color: var(--blue);
  background: rgba(22, 123, 181, 0.1);
  border: 1px solid rgba(22, 123, 181, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
}

.detail-video-section {
  background: var(--sand-2);
}

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

.video-placeholder img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: var(--navy-dark);
}

.footer-image-credits {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.88rem;
}

.footer-image-credits strong,
.footer-image-credits span {
  display: block;
}

.footer-image-credits strong {
  color: var(--white);
  margin-bottom: 4px;
}

@media (max-width: 820px) {
  .detail-video-grid {
    grid-template-columns: 1fr;
  }

  .route-photo-card > img {
    height: 250px;
  }
}


/* V12 - VÍDEOS DENTRO DA GALERIA DA EMBARCAÇÃO */
.detail-main-media {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #071f33;
}

.detail-main-media .detail-main-image,
.detail-main-media .detail-main-video {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.detail-main-media .detail-main-image {
  object-fit: cover;
}

.detail-main-media .detail-main-video {
  display: none;
  object-fit: contain;
  background: #071f33;
}

.detail-main-media.show-video .detail-main-image {
  display: none;
}

.detail-main-media.show-video .detail-main-video {
  display: block;
}

.detail-main-media.show-empty .detail-main-image,
.detail-main-media.show-empty .detail-main-video {
  display: none;
}

.detail-video-empty {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #083d62, #0b2438);
}

.detail-main-media.show-empty .detail-video-empty {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-video-empty strong {
  font-size: 1.6rem;
}

.detail-video-empty span {
  color: rgba(255, 255, 255, .76);
  max-width: 420px;
}

.detail-gallery > .detail-main-image {
  display: none !important;
}

.detail-thumb {
  position: relative;
  min-height: 105px;
}

.detail-thumb.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.34));
  pointer-events: none;
}

.detail-thumb.video-thumb img {
  filter: saturate(1.08) contrast(1.03);
}

.detail-thumb .play-badge,
.detail-thumb .video-empty-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(8, 61, 98, .92);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 12px 26px rgba(0,0,0,.24);
}

.detail-thumb.video-thumb small {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: .72rem;
}

.detail-thumb.unavailable {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9f4fb, #ffffff);
}

.detail-thumb.unavailable small {
  position: static;
  margin-top: 48px;
}

@media (max-width: 820px) {
  .detail-main-media {
    height: 390px;
  }
}

@media (max-width: 560px) {
  .detail-main-media {
    height: 310px;
  }
}


/* V13 - WhatsApp com ícone e número atualizado */
.floating-whatsapp {
  width: 68px !important;
  height: 68px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #19c95a !important;
  color: #fff !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 46px rgba(25, 201, 90, 0.46);
}

.whatsapp-svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  display: block;
}

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

@media (max-width: 560px) {
  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 62px !important;
    height: 62px !important;
  }

  .whatsapp-svg {
    width: 32px;
    height: 32px;
  }
}


/* V17 - HOME MAIS LIMPA E ELEGANTE */
.hero {
  min-height: 620px;
}

.hero-content {
  min-height: 620px;
  padding-top: 70px;
  padding-bottom: 74px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(4.2rem, 6.6vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 690px;
  font-size: 1.28rem;
  line-height: 1.55;
  margin-top: 0;
}

.booking-card {
  max-width: 430px;
  justify-self: end;
  padding: 34px;
  border-radius: 28px;
}

.booking-card h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.booking-card p {
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
}

/* transição discreta da dobra principal */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 68px;
  background: linear-gradient(180deg, rgba(248, 244, 235, 0) 0%, var(--sand) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 11vw, 5.4rem);
    max-width: 620px;
  }

  .hero-copy p {
    font-size: 1.08rem;
  }

  .booking-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-content {
    padding-top: 38px;
    padding-bottom: 64px;
  }
}


/* V18 - remover card lateral da home */
.hero-content {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  max-width: 900px;
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-copy p {
  max-width: 760px;
}

@media (min-width: 981px) {
  .hero-content {
    align-items: center;
  }
}
