:root {
  --bg: #0d1118;
  --bg-soft: #121826;
  --surface: rgba(19, 25, 37, 0.8);
  --surface-strong: rgba(23, 31, 45, 0.92);
  --text: #eef2ff;
  --muted: #97a3bf;
  --accent: #5eead4;
  --accent-strong: #2dd4bf;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(94, 234, 212, 0.08), transparent 26%),
    linear-gradient(180deg, #0f141d 0%, #0b0f16 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.app-navbar {
  background: rgba(9, 13, 20, 0.78);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 136px;
  height: auto;
}

.app-navbar .nav-link {
  color: var(--muted);
  font-weight: 500;
  padding-inline: 0.75rem;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus-visible {
  color: var(--text);
}

.hero-section {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(15, 26, 40, 0.96) 0%,
    rgba(10, 18, 28, 0.98) 58%,
    rgba(7, 10, 17, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.95;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -140px;
  left: calc(50% - 300px);
  background: radial-gradient(circle, rgba(94, 234, 212, 0.45), transparent 70%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  top: -100px;
  right: calc(50% - 320px);
  background: radial-gradient(circle, rgba(61, 139, 255, 0.34), transparent 72%);
}

.hero-blur-band {
  position: absolute;
  inset: 42% -12% auto;
  height: 180px;
  background: linear-gradient(
    90deg,
    rgba(94, 234, 212, 0.08),
    rgba(32, 95, 161, 0.12),
    rgba(94, 234, 212, 0.08)
  );
  filter: blur(40px);
}

.hero-logo-wrap {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(94, 234, 212, 0.28),
    rgba(10, 18, 27, 0.12) 72%
  );
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.18),
    0 20px 58px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-logo {
  width: 84px;
  height: auto;
}

.hero-title {
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy {
  max-width: 700px;
  color: #c6d0e6;
}

.eyebrow,
.section-kicker,
.mini-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-inline-link,
.glass-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible,
.glass-link:hover,
.glass-link:focus-visible {
  text-decoration: underline;
}

.hero-btn-primary {
  color: #091117;
  background: linear-gradient(135deg, var(--accent), #72f0db);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(45, 212, 191, 0.18);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  color: #091117;
  background: linear-gradient(135deg, #71f2de, #84f5e4);
}

.section-block {
  position: relative;
}

.section-heading {
  max-width: 840px;
}

.glass-card {
  background: linear-gradient(
    180deg,
    rgba(26, 31, 45, 0.72),
    rgba(17, 22, 32, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.text-body-secondary-dark,
.section-copy,
.tagline {
  color: var(--muted) !important;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.product-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 1.25rem;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.product-link:hover,
.product-link:focus-visible {
  transform: translateX(4px);
  background: var(--accent);
  color: #081016;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.2);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.product-cta:hover,
.product-cta:focus-visible {
  color: #f4ffff;
  background: rgba(94, 234, 212, 0.18);
  transform: translateY(-1px);
}

.contact-badge {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.15rem;
  background: rgba(94, 234, 212, 0.14);
  color: var(--accent);
  flex: 0 0 68px;
}

.contact-icon {
  width: 30px;
  height: 30px;
}

.contact-label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-link {
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-pill:hover,
.footer-pill:focus-visible {
  background: rgba(94, 234, 212, 0.1);
  color: var(--accent);
}

.floating-socials {
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.floating-socials a {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.floating-socials img {
  width: 18px;
  height: 18px;
  filter: invert(1) opacity(0.85);
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  transform: translateX(6px) scale(1.06);
  background: rgba(94, 234, 212, 0.14);
}

.floating-socials a::after {
  content: attr(data-label);
  position: absolute;
  left: 52px;
  white-space: nowrap;
  background: #1a1f2d;
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.floating-socials a:hover::after,
.floating-socials a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.floating-socials .whatsapp {
  background: rgba(37, 211, 102, 0.16);
}

.floating-socials .whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.36);
  animation: pulse 2s infinite;
  z-index: -1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  .app-navbar .navbar-collapse {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .app-navbar .nav-link {
    padding-inline: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 4.5rem 0 3.75rem;
  }

  .hero-logo-wrap {
    width: 112px;
    height: 112px;
  }

  .hero-logo {
    width: 72px;
  }

  .brand-logo {
    width: 122px;
  }

  .floating-socials {
    top: auto;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(10, 13, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .floating-socials a:hover,
  .floating-socials a:focus-visible {
    transform: translateY(-4px) scale(1.04);
  }

  .floating-socials a::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
