:root {
  --bg: #040d18;
  --bg-soft: #0c2238;
  --surface: #102a43;
  --surface-2: #0a1e31;
  --text: #edf7ff;
  --muted: #a8bfd1;
  --accent: #25ddcf;
  --accent-2: #ffca57;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 56px rgba(2, 10, 18, 0.54);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(37, 221, 207, 0.2) 0%, transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(255, 202, 87, 0.18) 0%, transparent 24%),
    linear-gradient(145deg, #03101d 0%, #061a2d 45%, #030d18 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  filter: blur(70px);
  z-index: -1;
}

.orb-one {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: 8%;
  left: -110px;
  background: rgba(25, 211, 197, 0.22);
}

.orb-two {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -80px;
  top: 35%;
  background: rgba(246, 196, 81, 0.14);
}

.topbar {
  position: sticky;
  top: 0.8rem;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(6, 24, 40, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: auto;
  height: 74px;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.42));
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topnav a {
  position: relative;
  overflow: hidden;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.topnav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(110, 194, 255, 0.35), transparent);
  transition: left 320ms ease;
}

.topnav a:hover {
  color: var(--text);
  background: rgba(37, 153, 255, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 153, 255, 0.22);
}

.topnav a:hover::before {
  left: 120%;
}

.topnav a:focus-visible {
  outline: 2px solid rgba(110, 194, 255, 0.8);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0 2.4rem;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--accent-2);
  text-shadow: 0 0 24px rgba(255, 202, 87, 0.28);
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-highlights {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.35rem;
  color: #d7e8f7;
  font-size: 0.95rem;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(37, 221, 207, 0.18);
}

.hero-kpis {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-kpis article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.72rem;
}

.hero-kpis strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-kpis span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  border: 1px solid var(--line);
}

.hero-slider {
  position: relative;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 11, 20, 0.56) 0%, transparent 45%);
  pointer-events: none;
}

.hero-media .slide {
  width: 100%;
  height: 460px;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 420ms ease;
}

.hero-media .slide.is-active {
  opacity: 1;
  position: relative;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 13, 24, 0.62);
  backdrop-filter: blur(3px);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 2;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(237, 247, 255, 0.45);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent-2);
}

.slider-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(4, 16, 29, 0.58);
  z-index: 2;
}

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.32rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #12a8b0 55%, var(--accent-2));
  color: #04222d;
  box-shadow: 0 12px 24px rgba(25, 211, 197, 0.42);
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.reserve-cta {
  color: #04222d;
  background: linear-gradient(135deg, var(--accent), #15b8c0 55%, var(--accent-2));
  box-shadow: 0 10px 24px rgba(37, 221, 207, 0.4);
}

.reserve-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(37, 221, 207, 0.5);
}

.btn-link {
  background-color: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 2rem 0 4.5rem;
}

.impact-strip {
  margin-bottom: 2.4rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(37, 221, 207, 0.15), rgba(255, 202, 87, 0.09) 58%, rgba(255, 255, 255, 0.04));
}

.impact-strip p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.26rem);
  font-weight: 700;
  color: #e8f6ff;
}

.section-heading h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.cards {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 221, 207, 0.55);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.42);
}

.card-tag {
  display: inline-block;
  padding: 0.26rem 0.55rem;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #02242d;
  background: linear-gradient(135deg, var(--accent-2), #ffe3a1);
}

.card h3 {
  margin-top: 0;
  font-size: 1.03rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-extras {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.service-extras h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.service-extras p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.extras-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  color: #dcecf9;
}

.extras-list li::marker {
  color: var(--accent-2);
}

.gallery {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 202, 87, 0.6);
}

.gallery img {
  border-radius: var(--radius);
  height: 250px;
  width: 100%;
  object-fit: cover;
  border: 0;
}

.gallery-item figcaption {
  padding: 0.7rem 0.8rem 0.9rem;
  color: #d3e6f6;
  font-size: 0.88rem;
}

.section-contact {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  background: linear-gradient(145deg, var(--surface), rgba(11, 41, 63, 0.9));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--text);
}

.contact-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.contact-link:hover {
  color: #ffe5a4;
  text-decoration: underline;
}

.contact-points {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: #d4e8f8;
}

.contact-points li {
  margin-bottom: 0.5rem;
}

.contact-card .btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.8rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.contact-actions .btn {
  margin-top: 0;
}

.contact-note {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #002d0f;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(130deg, #47e18f, #22b06a);
  box-shadow: 0 12px 24px rgba(34, 176, 106, 0.45);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.muted {
  opacity: 0.82;
}

.footer-social {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.footer-social:hover {
  color: #7ef1e7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.footer-mail {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.78;
}

.footer-mail:hover {
  opacity: 1;
  color: #d2e6f7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 210ms;
}

@media (max-width: 920px) {
  .topbar {
    border-radius: 16px;
    position: static;
  }

  .topnav {
    display: none;
  }

  .hero,
  .cards,
  .gallery,
  .contact-grid,
  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero-media {
    width: min(100%, 640px);
    justify-self: center;
    transform: none;
  }

  .hero-media .slide,
  .hero-media img {
    height: 420px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand img {
    height: 58px;
    max-width: 200px;
  }

  .extras-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .hero-media .slide,
  .hero-media img {
    height: 460px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .gallery img {
    height: 200px;
  }

  .slider-tag {
    font-size: 0.68rem;
  }

  .footer-links {
    align-items: flex-start;
  }
}
