﻿:root {
  --bg-1: #02090d;
  --bg-2: #05171d;
  --surface: #09232b;
  --surface-soft: #0d303a;
  --text: #ebfeff;
  --muted: #b8dfe3;
  --accent: #22d8d5;
  --accent-2: #25b4f4;
  --line: rgba(54, 206, 220, 0.3);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 14%, rgba(34, 216, 213, 0.25), transparent 34%),
    radial-gradient(circle at 86% 6%, rgba(37, 180, 244, 0.18), transparent 28%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(2, 10, 14, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(34, 216, 213, 0.75);
  object-fit: cover;
  object-position: center;
  padding: 0.16rem;
  background: #081a23;
  box-shadow: 0 8px 22px rgba(34, 216, 213, 0.28);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
}

.main-nav a {
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0.7rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ecf5ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.1rem;
  border-radius: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001216;
  box-shadow: 0 10px 28px rgba(37, 180, 244, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(34, 216, 213, 0.45);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #f1f8ff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.nav-cta {
  font-size: 0.92rem;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-social a:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.header-social svg {
  width: 1rem;
  height: 1rem;
  fill: #e9fcff;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-lights {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(2, 24, 28, 0.35)),
    radial-gradient(circle at 20% 100%, rgba(34, 216, 213, 0.34), transparent 52%),
    radial-gradient(circle at 78% 20%, rgba(37, 180, 244, 0.24), transparent 36%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 52px);
  animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    filter: saturate(1);
  }
  to {
    transform: scale(1.04);
    filter: saturate(1.25);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: 4.4rem 0 3.6rem;
}

.hero-logo {
  width: clamp(180px, 30vw, 320px);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  justify-content: center;
  align-items: center;
}

.hero-actions .btn {
  min-width: 210px;
}

.hero-slogan {
  margin-top: 1.35rem;
  font-weight: 600;
  color: #9ad5ff;
  display: table;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  max-width: 100%;
}

.section {
  padding: 5.2rem 0;
}

.section-alt {
  background: linear-gradient(160deg, rgba(6, 24, 29, 0.92), rgba(3, 15, 20, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.lead {
  margin-top: 0;
  color: var(--muted);
  max-width: 74ch;
}

.services-grid,
.gallery-grid,
.packages-grid {
  display: grid;
  gap: 1rem;
}

.services-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(205px, 0.9fr) minmax(420px, 1.35fr) minmax(205px, 0.9fr);
  gap: 0.72rem;
  align-items: stretch;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.service-item {
  padding: 0.82rem 0.62rem;
  border-radius: 0.9rem;
  background: linear-gradient(155deg, rgba(11, 42, 49, 0.88), rgba(7, 26, 34, 0.88));
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
  min-height: 58px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-carousel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(10, 33, 41, 0.92), rgba(5, 21, 28, 0.92));
  aspect-ratio: 1 / 1;
  min-height: 0;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-track {
  position: relative;
  display: flex;
  flex: 1;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;
  cursor: grab;
}

.carousel-track.dragging {
  cursor: grabbing;
  transition: none;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.carousel-btn-prev {
  left: 0.6rem;
}

.carousel-btn-next {
  right: 0.6rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.38rem;
  z-index: 3;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--accent);
}

.gallery-grid {
  margin-top: 1.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row dense;
}

.gallery-item {
  min-height: 170px;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 20%, rgba(34, 216, 213, 0.26), transparent 45%),
    linear-gradient(160deg, #10303a, #071820);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.gallery-item span {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.gallery-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  background: #07141d;
}

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

.gallery-photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.gallery-item.video-horizontal {
  grid-column: span 2;
  order: 30;
  min-height: 250px;
}

.gallery-photo:hover img {
  transform: scale(1.05);
}

.gallery-note {
  margin-top: 0.85rem;
  color: #9fc2c8;
  font-size: 0.9rem;
}

.packages-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
  background: linear-gradient(160deg, rgba(8, 31, 38, 0.9), rgba(9, 25, 34, 0.9));
  box-shadow: var(--shadow);
}

.package-featured {
  border-color: rgba(34, 216, 213, 0.72);
  transform: translateY(-4px);
}

.package-card h3 {
  font-family: "Sora", sans-serif;
  margin-bottom: 1rem;
}

.package-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.package-card li + li {
  margin-top: 0.35rem;
}

.price {
  margin: 1rem 0 0;
  font-weight: 700;
  color: #9ef8f0;
}

.note {
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(4, 22, 27, 0.86);
  color: #d6ebff;
  border-radius: 0.55rem;
}

.addons {
  margin-top: 1.6rem;
}

.addons h3 {
  margin-bottom: 0.65rem;
}

.addons ul {
  margin: 0;
  padding-left: 1rem;
}

.addons li + li {
  margin-top: 0.36rem;
}

.contact-wrap {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(8, 33, 40, 0.92), rgba(5, 20, 28, 0.92));
  padding: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.62rem;
  border: 1px solid rgba(119, 214, 224, 0.38);
  background: rgba(4, 16, 22, 0.86);
  color: #f5fbff;
  padding: 0.72rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 215, 255, 0.2);
}

.contact-info h3 {
  margin-bottom: 0.7rem;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.contact-info a {
  color: #8cf3f7;
}

.contact-info .slogan {
  margin-top: 1rem;
  color: #d9f7ff;
  font-weight: 600;
}

.site-footer {
  padding: 1.25rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, #25d366, #13a650);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(22, 199, 92, 0.38);
}

.floating-whatsapp svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

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

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

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .nav-cta {
    display: none;
  }

  .header-social {
    margin-left: auto;
    margin-right: 0.4rem;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: rgba(4, 13, 25, 0.97);
  }

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

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

  .services-layout {
    grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.35fr) minmax(180px, 0.82fr);
    gap: 0.62rem;
  }

  .services-carousel {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .service-item {
    font-size: 0.84rem;
    padding: 0.74rem 0.55rem;
    min-height: 54px;
  }

  .gallery-item.video-horizontal {
    grid-column: span 1;
    order: 0;
    min-height: 220px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 820px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .services-carousel {
    aspect-ratio: 16 / 10;
    min-height: 300px;
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .service-item {
    font-size: 0.88rem;
    padding: 0.78rem 0.65rem;
    min-height: 0;
    white-space: normal;
    text-overflow: clip;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.4rem 0;
  }

  .container {
    width: min(1120px, calc(100% - 1.3rem));
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-slogan {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

