/* Victor Consultoria em TI - CSS */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #E8E8E8;
  background: #0B0E14;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,14,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56,189,248,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #38BDF8, #6366F1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.logo-text span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.15;
}
.logo-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #38BDF8;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-left: 28px;
  transition: color 0.3s;
}
.nav-links a:hover { color: #38BDF8; }
.nav-cta {
  background: linear-gradient(135deg, #38BDF8, #6366F1) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: opacity 0.3s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(135deg, #0B0E14 0%, #1A1A2E 50%, #0B0E14 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-tag {
  display: inline-block;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  color: #38BDF8;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.gradient {
  background: linear-gradient(135deg, #38BDF8, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #38BDF8, #6366F1);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: #38BDF8; color: #38BDF8; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.15);
  color: #38BDF8;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-desc {
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.7;
}
.section-desc.center { margin: 0 auto; text-align: center; }

/* ABOUT */
.about { background: #0D1017; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-text strong { color: #fff; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat-box {
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #38BDF8;
  display: block;
}
.stat-box .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.about-card:hover { border-color: rgba(56,189,248,0.25); }
.about-card .icon { font-size: 28px; margin-bottom: 12px; }
.about-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.about-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* SERVICES */
.services { background: #0B0E14; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.4s;
}
.service-card:hover {
  border-color: rgba(56,189,248,0.25);
  background: rgba(56,189,248,0.03);
}
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(99,102,241,0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #38BDF8, #6366F1);
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 90px 0;
  background: #0D1017;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta .container { position: relative; z-index: 2; }
.cta-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 60px 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-whatsapp:hover { background: #20BD5A; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(56,189,248,0.3);
  color: #38BDF8;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-phone:hover { background: rgba(56,189,248,0.1); }

/* FOOTER */
footer {
  background: #080A0F;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #38BDF8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col li .ic {
  color: #38BDF8;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-col a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-col a:hover { color: #38BDF8; }
.footer-col .dot {
  width: 4px; height: 4px;
  background: #38BDF8;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.footer-bottom {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-legal {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  line-height: 1.8;
}
.footer-legal strong { color: rgba(255,255,255,0.4); }
.footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section { padding: 60px 0; }
  .cta-box { padding: 40px 20px; }
  .section-title { font-size: 28px; }
}
