* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b1220;
  --text: #ffffff;
  --muted: #dbe7ff;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.08);
  --blue: #4ea1ff;
  --blue-dark: #2563eb;
  --green: #25d366;
  --gold: #f59e0b;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(78, 161, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #0b1220 0%, #101a30 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0 18px;
}

.brand {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.logo {
  width: min(520px, 96%);
  display: block;
  border-radius: 18px;
  background: white;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 24px rgba(78, 161, 255, 0.25),
    0 18px 30px rgba(0,0,0,0.24);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  width: 100%;
}

.hero,
.page-hero {
  padding: 62px 0 54px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(78, 161, 255, 0.15);
  color: #b7d6ff;
  font-weight: 700;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  text-align: center;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.hero-text,
.lead,
.video-note,
.gallery-note {
  color: var(--muted);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8f0ff;
  font-size: 0.92rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.98;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.btn-whatsapp {
  background: linear-gradient(180deg, #33d977, #20b85c);
}

.btn-secondary {
  background: linear-gradient(180deg, #f8b84a, #e89105);
}

.section {
  padding: 62px 0;
}

.section-dark {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-accent {
  background: linear-gradient(180deg, rgba(78,161,255,0.08), rgba(78,161,255,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lead,
.about-text {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.spotlight-copy,
.spotlight-image,
.card,
.mini-card,
.review,
.contact-card,
.gallery-item,
.video-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.spotlight-copy,
.card,
.mini-card,
.review,
.contact-card {
  padding: 22px;
}

.spotlight-image,
.gallery-item,
.video-card {
  display: block;
  padding: 10px;
  text-decoration: none;
}

.spotlight-image img,
.gallery-item img,
.video-card video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.card-grid,
.mini-grid,
.review-grid,
.gallery-grid,
.video-grid {
  display: grid;
  gap: 18px;
}

.card-grid,
.mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-grid,
.gallery-grid,
.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review {
  margin: 0;
  font-style: italic;
}

.video-note {
  text-align: center;
  margin: 12px 0 4px;
}

.video-note a,
.contact-card a {
  color: #b9d8ff;
  text-decoration: none;
  font-weight: 700;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  text-align: center;
  color: #b7c6e6;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg, #33d977, #20b85c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  z-index: 1001;
  animation: floatPulse 2.2s infinite;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.92);
  z-index: 1200;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

.brand-animate {
  animation: slideFadeDown 0.7s ease both;
}

.nav-animate {
  animation: slideFadeUp 0.8s ease both;
}

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

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

.reveal-delay {
  transition-delay: 0.12s;
}

@keyframes slideFadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 14px 26px rgba(0,0,0,0.28);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.34);
  }
}

@media (max-width: 860px) {
  .hero-inner,
  .spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.96rem;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}