:root {
  --blue-start: #0870c8;
  --blue-end: #004ca2;
  --blue-dark: #004b9f;
  --blue-title: #004d9d;
  --soft-bg: #f3f7ff;
  --sand: #f6ead7;
  --whatsapp: #24d366;
  --text: #30343d;
  --muted: #5c6270;
  --card-border: #e5edf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft-bg);
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 645px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 150px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 15% 45%, rgba(0, 174, 210, 0.34), transparent 23%),
    radial-gradient(circle at 48% 0%, rgba(16, 166, 219, 0.28), transparent 26%),
    linear-gradient(120deg, var(--blue-start) 0%, #0067bf 42%, var(--blue-end) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin-top: 6px;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.28;
}

.hero__glow--left {
  width: 440px;
  height: 440px;
  left: 12%;
  top: 20%;
  background: #10afd3;
}

.hero__glow--right {
  width: 520px;
  height: 390px;
  right: 14%;
  top: 2%;
  background: #1984da;
}

.bus {
  width: 88px;
  height: 70px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 4px 1px rgba(0, 0, 0, 0.14));
}

.hero__welcome {
  margin: 0 0 18px;
  font-family: "Pacifico", cursive;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

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

h1 {
  margin-bottom: 27px;
  font-size: clamp(33px, 4.95vw, 62px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.hero__subtitle {
  margin-bottom: 58px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 0 47px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 900;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-2px);
  background: #1fc65e;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.14);
}

.whatsapp__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-10deg);
}

.sand {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--sand);
  pointer-events: none;
}

.sand--wave {
  z-index: 1;
  bottom: 41px;
  height: 84px;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  transform: scaleX(1.22) translateY(28px);
}

.sand--base {
  z-index: 1;
  bottom: 0;
  height: 52px;
}

.destinations {
  padding: 107px 24px 96px;
  background: var(--soft-bg);
}

.section-head {
  margin: 0 auto 61px;
  max-width: 900px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 19px;
  color: var(--blue-title);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.section-head p {
  margin-bottom: 0;
  color: #525761;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 600;
}

.cards {
  width: min(1660px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 27px;
}

.card {
  min-height: 190px;
  padding: 36px 22px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(34, 58, 84, 0.03);
}

.card__icon {
  min-height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  font-size: 42px;
  line-height: 1;
}

.card h3 {
  margin-bottom: 9px;
  color: #2d3038;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.pyramid {
  position: relative;
  width: 62px;
  min-height: 54px;
  margin-inline: auto;
}

.pyramid::before {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  background:
    linear-gradient(135deg, transparent 47%, #b88b59 48% 52%, transparent 53%) 50% 0 / 28px 16px no-repeat,
    linear-gradient(to bottom, transparent 0 18%, #b88b59 19% 28%, transparent 29% 43%, #b88b59 44% 53%, transparent 54% 68%, #b88b59 69% 78%, transparent 79%),
    conic-gradient(from 225deg at 50% 0, transparent 0 25%, #c49968 0 75%, transparent 0);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media (max-width: 1100px) {
  .hero {
    min-height: 610px;
    padding-top: 78px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 600px;
    padding: 58px 18px 125px;
  }

  .bus {
    margin-bottom: 20px;
    font-size: 48px;
  }

  h1 {
    letter-spacing: -0.9px;
  }

  h1 br {
    display: none;
  }

  .hero__subtitle {
    margin-bottom: 36px;
  }

  .whatsapp {
    width: min(100%, 390px);
    min-height: 64px;
    padding: 0 20px;
    gap: 7px;
  }

  .whatsapp__icon {
    width: 31px;
    height: 31px;
    font-size: 17px;
    border-width: 2px;
  }

  .destinations {
    padding: 72px 18px 64px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 18px;
  }

  .card {
    min-height: 165px;
    padding: 29px 18px 25px;
  }
}

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

  .hero__welcome {
    margin-bottom: 14px;
  }

  .whatsapp {
    flex-wrap: wrap;
    line-height: 1.1;
  }
}
