@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --blue: #0754ae;
  --blue-dark: #052f64;
  --orange: #ff6b21;
  --orange-dark: #eb5410;
  --turquoise: #00a6c7;
  --sand: #f7f3ed;
  --paper: #fff;
  --ink: #152333;
  --muted: #6d7782;
  --green: #25d366;
  --line: rgba(7, 84, 174, 0.12);
  --shadow: 0 22px 60px rgba(5, 47, 100, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}
.section {
  padding: 96px 0;
}
.section-soft {
  background: linear-gradient(180deg, #fff, var(--sand));
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0.45rem 0 1rem;
  color: var(--blue-dark);
}
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}
.center {
  text-align: center;
}
.center .section-lead {
  margin-inline: auto;
}
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 92px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  color: #fff;
}
.site-header.fixed {
  position: fixed;
  height: 74px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-dark);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.header-inner {
  width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 100px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.18));
  z-index: 99;
}
.site-header.fixed .brand img {
  width: 100px;
  filter: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.93rem;
}
.nav a:not(.btn) {
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}
.nav a:not(.btn):hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: currentColor;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 13px 30px rgba(255, 107, 33, 0.28);
}
.btn-orange:hover {
  background: var(--orange-dark);
}
.btn-light {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}
.btn-outline {
  border: 1px solid rgba(7, 84, 174, 0.25);
  color: var(--blue);
  background: #fff;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 13px 30px rgba(37, 211, 102, 0.25);
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: url("../img/hero-fallback.webp") center/cover no-repeat;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.777vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(3, 35, 75, 0.87) 0%,
    rgba(5, 70, 130, 0.67) 42%,
    rgba(0, 30, 55, 0.28) 78%,
    rgba(0, 0, 0, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 90px;
  color: #fff;
  width: 100%;
}
.hero-copy {
  max-width: 760px;
}
.hero .eyebrow {
  color: #fff;
}
.hero .eyebrow::before {
  background: var(--orange);
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 3vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 18px 0 24px;
  max-width: 900px;
  text-wrap: balance;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  font-weight: 700;
}
.scroll-hint {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 75px rgba(5, 47, 100, 0.18);
}
.tour-media {
  height: 330px;
  position: relative;
  overflow: hidden;
}
.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.tour-card:hover .tour-media img {
  transform: scale(1.055);
}
.tour-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(3, 35, 75, 0.74) 100%
  );
}
.tour-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tour-duration {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}
.tour-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-body h3 {
  font-family: "Montserrat";
  font-size: 1.55rem;
  color: var(--blue-dark);
  margin: 0 0 10px;
}
.tour-body p {
  color: var(--muted);
  margin: 0 0 18px;
}
.tour-points {
  font-size: 0.9rem;
  color: #4f5b68;
  border-top: 1px solid #edf0f3;
  padding-top: 17px;
  margin-top: auto;
}
.card-link {
  margin-top: 22px;
  color: var(--orange);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.experience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.experience-media {
  position: relative;
  min-height: 520px;
}
.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(5, 47, 100, 0.42));
}
.experience-copy {
  color: #fff;
  padding: 72px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-copy .eyebrow {
  color: #fff;
}
.experience-copy h2 {
  font-family: "Montserrat";
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 18px 0 22px;
}
.experience-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.audience div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.audience strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}
.audience span {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.68);
}
.price-image{

    max-width:700px;
    margin:50px auto 0;
    cursor:pointer;

}

.price-image img{

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:.30s;

}

.price-image img:hover{

    transform:translateY(-6px);

}

.modal-price{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    z-index:99999;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.modal-price img{

    max-width:95%;

    max-height:95%;

    border-radius:12px;

}

.modal-price.show{

    display:flex;

}

#priceClose{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:48px;

    cursor:pointer;

}

.private-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 54px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff 10%, #f7f3ed 100%);
  border: 1px solid rgba(7, 84, 174, 0.1);
}
.private-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 450px;
  box-shadow: var(--shadow);
}
.private-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(7, 84, 174, 0.09);
}
.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 166, 199, 0.1);
  color: var(--turquoise);
  font-weight: 900;
  flex: 0 0 auto;
}
.feature strong {
  display: block;
  color: var(--blue-dark);
}
.feature small {
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 42px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.trust-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.trust-photo {
  border-radius: 28px;
  overflow: hidden;
  background: var(--sand);
  min-height: 500px;
  position: relative;
}
.trust-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.trust-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.route-panel {
  background: var(--blue-dark);
  color: #fff;
  border-radius: 32px;
  padding: 54px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.route-panel .section-title {
  color: #fff;
}
.route-panel .section-lead {
  color: rgba(255, 255, 255, 0.72);
}
.route-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.route-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.route-map {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  min-height: 520px;
}
.route-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq {
  max-width: 900px;
  margin: 42px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
}
.faq-button span:last-child {
  font-size: 1.35rem;
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  max-height: 260px;
}
.final-cta {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("../img/barrinha-sunset.webp") center/cover no-repeat;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 35, 75, 0.88),
    rgba(5, 84, 174, 0.56),
    rgba(0, 0, 0, 0.18)
  );
}
.final-cta .container {
  position: relative;
  z-index: 2;
}
.cta-copy {
  max-width: 760px;
}
.final-cta h2 {
  font-family: "Montserrat";
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 15px 0 22px;
}
.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}
.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 30, 60, 0.22),
    rgba(3, 35, 75, 0.9)
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
  padding-top: 160px;
}
.page-hero h1 {
  font-family: "Montserrat";
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  margin: 14px 0;
  letter-spacing: -0.05em;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 46px;
  align-items: start;
}
.timeline {
  display: grid;
  gap: 0;
}
.stop {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}
.stop:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -2px;
  width: 2px;
  background: rgba(7, 84, 174, 0.12);
}
.stop-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  z-index: 2;
}
.stop h3 {
  margin: 2px 0 6px;
  color: var(--blue-dark);
  font-family: "Montserrat";
  font-size: 1.15rem;
}
.stop p {
  margin: 0;
  color: var(--muted);
}
.sidebar-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-family: "Montserrat";
  margin: 0 0 10px;
  color: var(--blue-dark);
}
.sidebar-card .price-note {
  padding: 14px;
  border-radius: 14px;
  background: var(--sand);
  color: #5f6770;
  margin: 18px 0;
  font-size: 0.9rem;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.detail-gallery img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.detail-gallery img:first-child {
  grid-column: span 2;
  height: 420px;
}
.notice {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff7f0;
  border: 1px solid rgba(255, 107, 33, 0.18);
  color: #704026;
  margin-top: 28px;
}
.footer {
  background: #041f40;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 50px;
}
.footer .brand img {
  width: 100px;
}
.footer h4 {
  color: #fff;
  font-family: "Montserrat";
  margin: 0 0 14px;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  :root {
    --container: min(100% - 30px, 900px);
  }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 31, 64, 0.98);
    padding: 130px 28px 350px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
    font-size: 1.3rem;
  }
  .nav.open {
    display: flex;
  }
  .nav .btn {
    margin-top: 12px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    z-index: 90;
  }
  .site-header.fixed .menu-toggle {
    color: var(--blue-dark);
  }
  .tour-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tour-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 12px);
    margin-inline: auto;
  }
  .experience,
  .private-box,
  .trust-wrap,
  .route-panel {
    grid-template-columns: 1fr;
  }
  .experience-copy {
    padding: 46px 38px;
  }
  .experience-media {
    min-height: 430px;
  }
  .private-box {
    gap: 38px;
  }
  .route-map {
    min-height: 430px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 680px) {
  .section {
    padding: 72px 0;
  }
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 100px;
  }
  .site-header.fixed .brand img {
    width: 100px;
  }
  .hero-content {
    padding: 125px 0 70px;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .scroll-hint {
    display: none;
  }
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .tour-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .tour-media {
    height: 300px;
  }
  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .experience {
    border-radius: 24px;
  }
  .experience-media {
    min-height: 360px;
  }
  .experience-copy {
    padding: 38px 26px;
  }
  .audience {
    grid-template-columns: 1fr;
  }
  .private-box {
    padding: 26px;
    border-radius: 24px;
  }
  .private-photo {
    min-height: 300px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .gallery-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }
  .trust-photo {
    min-height: 380px;
  }
  .route-panel {
    padding: 32px 24px;
    border-radius: 24px;
  }
  .route-map {
    min-height: 370px;
  }
  .final-cta {
    min-height: 540px;
  }
  .final-cta h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
  .page-hero {
    min-height: 60vh;
  }
  .page-hero .container {
    padding-bottom: 48px;
    padding-top: 130px;
  }
  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery img,
  .detail-gallery img:first-child {
    grid-column: auto;
    height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    font-size: 1.25rem;
  }
}
