:root {
  --blue-950: #00385f;
  --blue-900: #004b7a;
  --blue-800: #005f9f;
  --blue-700: #0077c8;
  --blue-600: #0797dc;
  --green: #18b957;
  --green-dark: #0e9f48;
  --text: #12304a;
  --muted: #5f7284;
  --soft: #f6fbfd;
  --beige: #fff3e6;
  --white: #ffffff;
  --border: rgba(0, 75, 122, .12);
  --shadow: 0 10px 28px rgba(0, 47, 88, .10);
  --shadow-soft: 0 6px 18px rgba(0, 47, 88, .08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#topo {
  position: absolute;
  top: 0;
  left: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f7fcff 46%, #fff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(24, 185, 87, .55);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin-inline: auto;
}

.section {
  padding-block: 42px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--black);
  background-color: #dbdbdb;
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.site-logo__img {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-logo__mark,
.site-logo__text {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav__link {
  opacity: .92;
  transition: opacity .2s ease, color .2s ease;
}

.site-nav__link:hover {
  opacity: 1;
  color: #dff7ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn img,
.proof-bar img,
.feature-card img,
.testimonial-card img,
.structure-card img,
.site-footer img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn img {
  filter: brightness(0) invert(1);
}

.btn--primary {
  background: var(--blue-700);
}

.btn--whatsapp {
  background: var(--green);
}

.btn--whatsapp:hover {
  background: var(--green-dark);
}

.btn--outline {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(6px);
}

.btn--small {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  min-height: 500px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 45, 85, .96) 0%, rgba(0, 75, 125, .78) 42%, rgba(0, 75, 125, .18) 100%),
    url("../img/hero/equipe-hero.png?v=2"),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, .35) 0 8%, transparent 9%),
    linear-gradient(135deg, #00385f 0%, #0077c8 62%, #fff3e6 100%);
  background-size: cover, cover, 360px 260px, cover;
  background-position: center right;
}

.hero__inner {
  padding-top: 72px;
}

.hero__content {
  width: min(100%, 535px);
  padding-block: 58px 34px;
}

.hero__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 5vw, 58px);
  line-height: .98;
  letter-spacing: 0;
}

.hero__text {
  margin: 20px 0 26px;
  max-width: 510px;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-bar {
  position: relative;
  z-index: 5;
  margin-top: -36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 72px;
}

.proof-bar__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: center;
  gap: 0 10px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
}

.proof-bar__item:last-child {
  border-right: 0;
}

.proof-bar__item img {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  filter: invert(32%) sepia(96%) saturate(1307%) hue-rotate(177deg) brightness(92%) contrast(96%);
}

.proof-bar__item strong {
  font-size: 14px;
  line-height: 1.1;
}

.proof-bar__item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.features-grid,
.tours-grid,
.structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 112px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  filter: invert(32%) sepia(96%) saturate(1307%) hue-rotate(177deg) brightness(92%) contrast(96%);
}

.feature-card h2,
.structure-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.feature-card p,
.structure-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.about__image,
.faq__image {
  min-height: 275px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(135deg, rgba(0, 56, 95, .16), rgba(24, 185, 87, .14)),
    url("../img/about/lary-atendimento.jpg"),
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .75) 0 12%, transparent 13%),
    linear-gradient(135deg, #0077c8, #18b957);
  background-size: cover;
  background-position: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about__content h2,
.section-heading h2,
.route-cta h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.about__content h2 {
  font-size: 38px;
  color: var(--blue-950);
}

.about__content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.about__badge {
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf7ff;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 12px;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading--left {
  text-align: left;
  margin-bottom: 16px;
}

.section-heading h2 {
  color: var(--blue-950);
  font-size: 34px;
  text-transform: uppercase;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tour-card {
  position: relative;
  min-height: 136px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  background-image:
    linear-gradient(180deg, rgba(0, 56, 95, .06) 0%, rgba(0, 37, 67, .78) 100%),
    var(--tour-img),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tours-grid .tour-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/praia-de-pipa.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/genipabu.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/maracajau.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/litoral-norte.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/litoral-sul.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/buggy.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(7) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/quadriciclo.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tours-grid .tour-card:nth-child(8) {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 45, 85, .82) 100%),
    url("../img/passeios/mergulho.jpg"),
    linear-gradient(135deg, var(--fallback-a), var(--fallback-b));
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .28), transparent 18%);
  pointer-events: none;
}

.tour-card__title {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  color: var(--white);
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.tour-card__button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tour-card__button img {
  width: 14px;
  height: 14px;
}

.route-cta {
  display: grid;
  grid-template-columns: .9fr 1.3fr .8fr;
  gap: 22px;
  min-height: 230px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7ec 0%, #f2fbff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.route-cta h2 {
  color: var(--blue-950);
  font-size: 33px;
}

.route-cta p {
  margin: 12px 0;
  color: var(--muted);
}

.route-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.route-cta li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
}

.route-cta__map {
  position: relative;
  min-height: 190px;
  border-radius: 18px;
  background-image:
    radial-gradient(circle at 20% 35%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 66% 55%, #fff 0 12%, transparent 13%),
    url("../img/mapa/roteiro-personalizado-bg.jpg"),
    linear-gradient(135deg, #aee7ff, #eafff4 48%, #fff3e6);
  background-size: cover;
  border: 1px dashed rgba(0, 95, 159, .35);
}

.route-cta__map::after {
  content: "";
  position: absolute;
  inset: 38px 48px;
  border: 3px dashed rgba(0, 95, 159, .55);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(13deg);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
  box-shadow: 0 7px 16px rgba(0, 0, 0, .18);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.pin--one {
  left: 18%;
  top: 30%;
}

.pin--two {
  left: 54%;
  top: 54%;
  background: var(--blue-700);
}

.pin--three {
  right: 17%;
  top: 24%;
  background: #f2a43a;
}

.route-cta__box {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.route-cta__box h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

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

.testimonial-card {
  min-height: 218px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card--green {
  background: #f2fff7;
}

.testimonial-card img {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  font-size: 13px;
}

.testimonial-card span {
  color: var(--muted);
}

.stars {
  margin-top: 10px;
  color: #f5b424;
  letter-spacing: 0;
  font-size: 13px;
}

.structure-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.structure-card__image {
  height: 120px;
  background-size: cover;
  background-position: center;
}

.structure-card__image--fleet {
  background-image: url("../img/estrutura/frota-propria.jpg"), linear-gradient(135deg, #0077c8, #dbefff);
}

.structure-card__image--team {
  background-image: url("../img/estrutura/equipe-especializada.jpg"), linear-gradient(135deg, #18b957, #dff7ff);
}

.structure-card__image--support {
  background-image: url("../img/estrutura/suporte-local.jpg"), linear-gradient(135deg, #005f9f, #fff3e6);
}

.structure-card__image--agency {
  background-image: url("../img/estrutura/agencia-fisica.jpg"), linear-gradient(135deg, #00385f, #0797dc);
}

.structure-card>div:last-child {
  padding: 15px;
}

.structure-card img {
  filter: invert(32%) sepia(96%) saturate(1307%) hue-rotate(177deg) brightness(92%) contrast(96%);
  margin-bottom: 6px;
}

.galeria,
#galeria,
.gallery-section {
  overflow: visible;
}

.galeria .container,
#galeria .container,
.gallery-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.galeria-grid,
.gallery-grid,
.momentos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: visible;
}

.galeria-grid img,
.gallery-grid img,
.momentos-grid img {
  width: 163px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.galeria-grid a,
.gallery-grid a,
.momentos-grid a,
.galeria-item,
.gallery-item,
.momento-item {
  width: 163px;
  height: 120px;
  flex: 0 0 163px;
  display: block;
}

.galeria-grid,
.gallery-grid,
.momentos-grid {
  overflow-x: visible !important;
  overflow-y: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.gallery-item:first-child {
  border-radius: 14px;
}

.gallery-item:last-child {
  border-radius: 14px;
}

.gallery-item--one {
  background-image: url("../img/galeria/memoria-01.jpg"), linear-gradient(135deg, #0077c8, #fff3e6);
}

.gallery-item--two {
  background-image: url("../img/galeria/memoria-02.jpg"), linear-gradient(135deg, #18b957, #dff7ff);
}

.gallery-item--three {
  background-image: url("../img/galeria/memoria-03.jpg"), linear-gradient(135deg, #005f9f, #f6d68b);
}

.gallery-item--four {
  background-image: url("../img/galeria/memoria-04.jpg"), linear-gradient(135deg, #0797dc, #b4f0df);
}

.gallery-item--five {
  background-image: url("../img/galeria/memoria-05.jpg"), linear-gradient(135deg, #00385f, #7ed8ff);
}

.gallery-item--six {
  background-image: url("../img/galeria/memoria-06.jpg"), linear-gradient(135deg, #0e9f48, #fff3e6);
}

.gallery-item--seven {
  background-image: url("../img/galeria/memoria-07.jpg"), linear-gradient(135deg, #004b7a, #18b957);
}

.faq {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.faq__image {
  min-height: 330px;
}

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

.faq-item {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.faq-item__question span {
  color: var(--blue-700);
  font-size: 19px;
  line-height: 1;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
  transition: max-height .25s ease, padding .25s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 160px;
  padding: 0 18px 14px;
}

.final-cta {
  min-height: 200px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 56, 95, .78), rgba(0, 119, 200, .42)),
    url("../img/cta/natal-praia-final.jpg"),
    linear-gradient(135deg, #00385f, #0797dc 60%, #fff3e6);
  background-size: cover;
  background-position: center;
}

.final-cta h2 {
  max-width: 680px;
  margin-inline: auto;
  font-size: 39px;
}

.final-cta p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, .9);
}

.site-footer {
  color: var(--white);
  background: var(--blue-950);
}

.site-footer__grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}

.site-footer__item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0 10px;
  align-content: center;
  color: rgba(255, 255, 255, .9);
}

.site-footer__item img {
  grid-row: span 2;
  width: 22px;
  height: 22px;
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.site-footer__item span {
  font-size: 12px;
  opacity: .75;
}

.site-footer__item strong {
  font-size: 13px;
}

.site-footer__copyright {
  padding: 12px 0 16px;
  text-align: center;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}

.site-footer__copyright p {
  margin: 0;
  font: inherit;
}

.site-footer__copyright a {
  color: #f5b424;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .site-header__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--text);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    padding: 12px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .site-header__cta {
    display: none;
  }

  .proof-bar__grid,
  .features-grid,
  .tours-grid,
  .structure-grid,
  .testimonials-grid,
  .faq__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-bar__item {
    border-bottom: 1px solid var(--border);
  }

  .route-cta {
    grid-template-columns: 1fr;
  }

  .about,
  .faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-logo__img {
    width: 140px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 34px;
  }

  .hero {
    min-height: 650px;
    background-image:
      linear-gradient(180deg, rgba(0, 45, 85, .95) 0%, rgba(0, 75, 125, .78) 58%, rgba(0, 75, 125, .35) 100%),
      url("../img/hero/hero-lc-equipe-frota-natal.jpg"),
      linear-gradient(135deg, #00385f 0%, #0077c8 62%, #fff3e6 100%);
  }

  .hero__content {
    padding-top: 84px;
  }

  .hero__title {
    font-size: 43px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .proof-bar {
    margin-top: -28px;
  }

  .proof-bar__grid,
  .features-grid,
  .tours-grid,
  .structure-grid,
  .testimonials-grid,
  .faq__list,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .proof-bar__item {
    border-right: 0;
  }

  .tour-card {
    min-height: 180px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .about__content h2,
  .route-cta h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .route-cta {
    padding: 22px;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:last-child {
    border-radius: 14px;
  }

  .site-footer {
    padding-block: 16px;
  }
}

@media (max-width: 420px) {
  .site-logo__img {
    width: 125px;
  }
}
