:root {
  --bg: #060913;
  --bg2: #0d1222;
  --card: rgba(14, 20, 36, 0.82);
  --card-solid: #0e1424;
  --text: #f5f7ff;
  --muted: #b8c1d9;
  --line: rgba(255, 255, 255, 0.09);
  --pink: #ff2e88;
  --cyan: #1ed9ff;
  --violet: #9d5cff;
  --green: #25d366;
  --warning: #ffbf47;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(30, 217, 255, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 46, 136, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #060913 0%, #09101b 38%, #060913 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(3, 7, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--cyan) 45%,
    var(--pink) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  transition: 0.25s ease;
}
.nav a:hover {
  color: var(--cyan);
}

.cta-btn,
.ghost-btn,
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cta-btn {
  background: linear-gradient(90deg, var(--pink), #ff5cb2);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 46, 136, 0.32);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-btn {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(30, 217, 255, 0.95),
    rgba(157, 92, 255, 0.95)
  );
  color: #061018;
  font-weight: 800;
}

.cta-btn:hover,
.ghost-btn:hover,
.site-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero {
  padding: 56px 0 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(30, 217, 255, 0.22),
    transparent 68%
  );
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(30, 217, 255, 0.22);
  background: rgba(30, 217, 255, 0.08);
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.accent-pink {
  color: var(--pink);
}
.accent-cyan {
  color: var(--cyan);
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.point {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px;
  min-height: 108px;
}

.point strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(6, 9, 19, 0.82));
  pointer-events: none;
}

.section {
  padding: 36px 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 26px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.section-header p {
  margin: 0 auto;
  max-width: 840px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.project-card {
  background: linear-gradient(
    180deg,
    rgba(18, 26, 45, 0.88),
    rgba(10, 15, 28, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.project-top {
  padding: 20px 20px 14px;
}

.project-index {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.i-pink {
  background: linear-gradient(135deg, #ff408f, #ff70bf);
}
.i-cyan {
  background: linear-gradient(135deg, #00d4ff, #4cf0ff);
  color: #021723;
}
.i-violet {
  background: linear-gradient(135deg, #7f5cff, #bb8dff);
}

.project-card h3 {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.15;
}

.project-link {
  color: var(--cyan);
  font-weight: 700;
  font-size: 15px;
}

.project-image {
  padding: 0 20px;
}

.project-image img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.project-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li {
  position: relative;
  padding-left: 24px;
  color: #edf2ff;
  font-size: 14px;
  line-height: 1.55;
}

.bullets li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -1px;
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.story-block-title {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-phone {
  width: min(240px, 100%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0f172a, #050b14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 26px rgba(0, 0, 0, 0.28);
}

.story-screen {
  position: relative;
  cursor: pointer;
}

.story-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 16;
  display: block;
  background: #000;
}

.play-badge {
  cursor: pointer;
  border: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-badge:hover {
  transform: scale(1.08);
}

.story-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.story-overlay {
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 19, 0.15),
    rgba(6, 9, 19, 0.76)
  );
}

.story-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.play-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 26px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.story-meta {
  text-align: center;
}

.story-meta strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.story-meta small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 12px;
}

.hint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 46, 136, 0.18),
    rgba(30, 217, 255, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.results-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.results-intro,
.result-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.results-intro {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.results-intro h3 {
  margin: 0;
  font-size: 40px;
  line-height: 1.02;
}

.results-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.result-card {
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card .num {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.num-pink {
  color: #ff4ca2;
}
.num-cyan {
  color: #26e5ff;
}
.num-violet {
  color: #b484ff;
}
.num-yellow {
  color: #ffc74d;
}

.cta-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0.92),
    rgba(14, 20, 36, 0.97)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.cta-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  color: var(--pink);
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
}

.cta-content h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.cta-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 540px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  text-align: left;
  padding: 18px 18px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  font-size: 26px;
  color: var(--pink);
  flex: 0 0 auto;
  transition: 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.final-cta {
  margin-top: 26px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(
    90deg,
    rgba(255, 46, 136, 0.92),
    rgba(30, 217, 255, 0.92)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.final-cta h3 {
  margin: 0 0 6px;
  font-size: clamp(28px, 3vw, 42px);
}

.final-cta p {
  margin: 0;
  max-width: 700px;
  line-height: 1.65;
  font-size: 16px;
}

.footer {
  margin-top: 40px;
  padding: 38px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 6, 14, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 24px;
  margin-bottom: 22px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--cyan);
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1180px) {
  .hero-grid,
  .cta-band,
  .results-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .projects {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .results-intro {
    grid-column: 1 / -1;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(6, 9, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .desktop-cta {
    display: none;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 24px;
  }
}

/* LIGHTBOX VIDEO */
#videoLightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

#videoLightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 420px;
  z-index: 2;
}

#lightboxVideo {
  width: 100%;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
