@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --black: #080A0E;
  --surface: #0F1117;
  --surface2: #161820;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.06);
  --accent: #00C2FF;
  --accent-dim: rgba(0,194,255,0.12);
  --accent-glow: rgba(0,194,255,0.3);
  --gold: #F0B429;
  --gold-dim: rgba(240,180,41,0.1);
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}



.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--accent); }

.logo-tagline {
  font-size: 10px;
  color: var(--white-40);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  font-size: 13.5px;
  color: var(--white-70);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--white); background: var(--white-10); }
.nav-links a.active { color: var(--white); background: var(--white-10); font-weight: 500; }

.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: #33CFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(8,10,14,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 12px 0 20px;
  animation: slideDown 0.2s ease;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  padding: 14px 28px;
  font-size: 15px;
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: var(--white-10); }
.mobile-menu .mob-wpp {
  margin: 12px 20px 0;
  background: #25D366;
  color: var(--black) !important;
  font-weight: 600 !important;
  border-radius: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,194,255,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent), #0077FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #33CFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--border-hover);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: var(--white-10);
}

.btn-wpp {
  background: #25D366;
  color: var(--black);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-wpp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stat-item {
  padding: 24px 48px;
  text-align: center;
  border-right: 1px solid var(--border);
  flex: 1;
  max-width: 200px;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 4px;
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--white-40);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 48px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-lg);
}

.service-card:hover {
  border-color: rgba(0,194,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.service-icon svg { width: 22px; height: 22px; color: var(--accent); }

.service-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,194,255,0.15);
}

/* ===== FEATURED (destaque) ===== */
.featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,194,255,0.08), rgba(0,119,255,0.05));
  border: 1px solid rgba(0,194,255,0.2);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip-glow {
  position: absolute;
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,194,255,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-strip h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 15px;
  color: var(--white-40);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--surface);
}

.footer-copy {
  font-size: 13px;
  color: var(--white-40);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white-70); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 72px 40px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,194,255,0.07) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 15px;
  color: var(--white-40);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.info-card:hover { border-color: var(--border-hover); }

.info-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.info-card-text {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== CONTACT FORM AREA ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contact-info p {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 17px; height: 17px; color: var(--accent); }

.contact-item-label {
  font-size: 11px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--white-70);
  font-weight: 400;
}

/* ===== PROCESS STEPS ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 60px 24px; min-height: auto; }
  .hero h1 { letter-spacing: -1px; }
  .hero p { font-size: 15px; }

  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 24px; max-width: 50%; flex: 0 0 50%; }
  .stat-item:nth-child(2n) { border-right: none; }

  .section { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: span 1; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 48px 24px 40px; }
  .cta-strip { padding: 48px 24px; }
  footer { padding: 24px 20px; flex-direction: column; text-align: center; }
}

.fab-whatsapp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: fabPop 0.6s var(--ease) 1s both;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.fab-whatsapp svg { width: 30px; height: 30px; color: var(--white); }

/* Pulse ring */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}

/* Tooltip */
.fab-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--green-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--trans), transform var(--trans);
}
.fab-whatsapp__tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--green-900);
  border-right: 0;
}
.fab-whatsapp:hover .fab-whatsapp__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.politica{
  color: white;
  text-decoration: none;
}