﻿:root {
  --bg: #0b0f1a;
  --bg-soft: #11172a;
  --card: #131b2e;
  --text: #f1f4ff;
  --muted: #a2a9b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #5b8cff;
  --accent-dark: #3d6dff;
  --glass: rgba(19, 27, 46, 0.7);
  --shadow: 0 28px 60px rgba(5, 10, 30, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(91, 140, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(90, 120, 255, 0.18), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(10, 20, 60, 0.5), transparent 60%);
  z-index: -3;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.35;
  z-index: -2;
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(91, 140, 255, 0.18);
  background: rgba(15, 22, 38, 0.9);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.brand-tag {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(91, 140, 255, 0.12);
  color: #cdd9ff;
}

.nav-cta {
  border: 1px solid rgba(91, 140, 255, 0.35);
  color: #cdd9ff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 22, 38, 0.8);
  padding: 8px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(11, 15, 26, 0.95);
}

.mobile-menu a {
  padding: 10px 20px;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 140, 255, 0.35);
  background: rgba(91, 140, 255, 0.12);
  color: #cdd9ff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #cdd9ff;
}

.subtitle {
  color: var(--muted);
  max-width: 520px;
  font-size: 17px;
}

.hero-actions {
  margin: 28px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(91, 140, 255, 0.2);
}

.btn.primary {
  background: linear-gradient(135deg, #5b8cff, #7aa3ff);
  color: #02030a;
}

.btn.ghost {
  border: 1px solid rgba(91, 140, 255, 0.4);
  color: #cdd9ff;
  background: rgba(91, 140, 255, 0.12);
}

.btn.small {
  padding: 8px 18px;
  font-size: 12px;
  background: rgba(91, 140, 255, 0.12);
  color: #cdd9ff;
  border: 1px solid rgba(91, 140, 255, 0.3);
}

.hero-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.hero-panel {
  background: var(--glass);
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(91, 140, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-top,
.panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.status {
  color: #cdd9ff;
}

.metric {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  margin: 16px 0 6px;
}

.panel-sub {
  color: var(--muted);
}

.progress {
  height: 8px;
  background: rgba(91, 140, 255, 0.18);
  border-radius: 999px;
  margin: 16px 0;
  overflow: hidden;
}

.progress-bar {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #5b8cff, #9bb7ff);
  animation: progress 6s ease infinite;
}

.panel-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.panel-title {
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tag {
  color: #cdd9ff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.stats {
  display: grid;
  gap: 16px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 28px;
  font-family: "Space Grotesk", sans-serif;
}

.services-grid,
.benefits-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-card,
.benefit,
.portfolio-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.benefit:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 140, 255, 0.35);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  color: #cdd9ff;
  border: 1px solid rgba(91, 140, 255, 0.35);
  margin-bottom: 14px;
  background: rgba(91, 140, 255, 0.12);
}

.price {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: #cdd9ff;
}

.portfolio-cover {
  height: 140px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(120deg, rgba(91, 140, 255, 0.15), rgba(91, 140, 255, 0.35));
  border: 1px solid rgba(91, 140, 255, 0.25);
  margin-bottom: 16px;
  overflow: hidden;
}

.portfolio-cover.alt {
  background: linear-gradient(120deg, rgba(91, 140, 255, 0.35), rgba(91, 140, 255, 0.12));
}

.portfolio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.testimonials article {
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonials span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.section-callout {
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.18), rgba(13, 20, 40, 0.6));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e1424;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.25);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
  background: #0b0f1a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #10d072;
  box-shadow: 0 16px 35px rgba(16, 208, 114, 0.35);
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%2300170c' d='M16 3c-7 0-12.6 5.7-12.6 12.6 0 2.2.6 4.3 1.7 6.2L3 29l7.5-2c1.7.9 3.6 1.4 5.5 1.4 7 0 12.6-5.7 12.6-12.6S23 3 16 3zm0 22.9c-1.7 0-3.4-.4-4.9-1.3l-.4-.2-4.5 1.2 1.2-4.4-.3-.4c-1-1.6-1.5-3.4-1.5-5.3C5.6 9.5 10.2 5 16 5c5.8 0 10.4 4.5 10.4 10.3S21.8 25.9 16 25.9zm6-7.8c-.3-.2-1.9-.9-2.2-1-.3-.1-.6-.2-.8.2-.2.3-.9 1-.9 1-.2.2-.4.3-.7.1-.3-.2-1.3-.5-2.5-1.6-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.2-.2.3-.4.5-.6.2-.2.2-.3.3-.5.1-.2.1-.4 0-.6-.1-.2-.8-2-1.1-2.7-.3-.8-.6-.6-.8-.6h-.7c-.2 0-.6.1-.9.4-.3.3-1.2 1.1-1.2 2.8 0 1.6 1.2 3.2 1.3 3.4.2.2 2.3 3.6 5.7 5.1.8.3 1.4.6 1.9.7.8.2 1.5.2 2.1.1.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.3.2-1.5-.1-.2-.3-.2-.6-.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.visit-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.visit-count {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.visit-count strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  color: #cdd9ff;
}

@keyframes progress {
  0% { width: 35%; }
  50% { width: 80%; }
  100% { width: 35%; }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 60px;
  }
}
