/* ============================================================
   ITCOMPANY — Dark Modern Theme
   Wiliam Gomes
   ============================================================ */

:root {
  --bg:          #080c18;
  --bg2:         #0c1425;
  --card:        rgba(255, 255, 255, 0.04);
  --accent:      #00c8e8;
  --accent-d:    #009bb5;
  --accent-glow: rgba(0, 200, 232, 0.2);
  --accent-soft: rgba(0, 200, 232, 0.08);
  --text:        #e2e8f4;
  --muted:       #7a8ba0;
  --border:      rgba(0, 200, 232, 0.14);
  --border-sub:  rgba(255, 255, 255, 0.06);
  --radius:      12px;
  --radius-lg:   18px;
  --tr:          0.3s ease;
  --font:        'Poppins', sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html   { scroll-behavior: smooth; }
body   {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
}
a      { text-decoration: none; }
img    { max-width: 100%; }
strong { color: var(--text); }

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #0077c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn-accent {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  transition: var(--tr);
  padding: 0.65rem 1.6rem;
}
.btn-accent:hover {
  background: var(--accent-d);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  transition: var(--tr);
  padding: 0.65rem 1.6rem;
}
.btn-ghost:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}
.btn-login {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--tr);
  padding: 0.5rem 1rem;
}
.btn-login:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--border);
}
.btn-wpp {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  transition: var(--tr);
}
.btn-wpp:hover {
  background: #128c7e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== TOPBAR ===== */
#topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border-sub);
  padding: 7px 0;
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
  z-index: 1001;
}
.tb-left span { display: flex; align-items: center; }
.tb-left .bi  { color: var(--accent); }
.tb-right a   {
  color: var(--muted);
  font-size: 1rem;
  transition: color var(--tr);
}
.tb-right a:hover { color: var(--accent); }

/* ===== NAVBAR ===== */
#navbar {
  top: 37px;
  background: rgba(8, 12, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
#navbar.scrolled {
  top: 0;
  background: rgba(8, 12, 24, 0.97);
  border-bottom-color: var(--border);
  padding: 10px 0;
}

.navbar-brand,
.footer-brand {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand-it { color: var(--accent); }
.brand-co { color: var(--text); }

.navbar-nav .nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  transition: color var(--tr);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler .bi {
  font-size: 1.5rem;
  color: var(--accent);
}

/* ===== SECTION HELPERS ===== */
.sec-dark   { padding: 100px 0; background: var(--bg); }
.sec-darker { padding: 100px 0; background: var(--bg2); }

.sec-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}
.sec-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}
.sec-text {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0.8rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,232,0.11) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,119,200,0.09) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-duration: 6s;
  animation-direction: reverse;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

.hero-content { position: relative; z-index: 2; padding-top: 90px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 510px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}
.hero-btns .btn { min-width: 160px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item .bi { color: var(--accent); }

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
}
.hv-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.hv-ring-1 { width: 280px; height: 280px; }
.hv-ring-2 { width: 200px; height: 200px; border-style: dashed; opacity: 0.5; }

.hv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--accent), #0077c8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: #000;
  box-shadow: 0 0 50px var(--accent-glow);
  z-index: 2;
}

.hv-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
}
.hv-orbit .hv-dot {
  position: absolute;
  transform:
    rotate(var(--a))
    translateX(140px)
    rotate(calc(-1 * var(--a)));
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--accent);
  backdrop-filter: blur(8px);
  animation: floatDot 4s ease-in-out infinite;
}
.hv-orbit:nth-child(4) .hv-dot { animation-delay: 0s; }
.hv-orbit:nth-child(5) .hv-dot { animation-delay: 1s; }
.hv-orbit:nth-child(6) .hv-dot { animation-delay: 2s; }
.hv-orbit:nth-child(7) .hv-dot { animation-delay: 3s; }
@keyframes floatDot {
  0%, 100% { box-shadow: 0 0 0 rgba(0,200,232,0); }
  50%       { box-shadow: 0 0 20px rgba(0,200,232,0.3); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.5rem;
  z-index: 2;
  animation: scrollBounce 2.2s infinite;
  transition: color var(--tr);
}
.hero-scroll:hover { color: var(--accent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS STRIP ===== */
#stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stat-item { padding: 12px 16px; }
.stat-item + .stat-item { border-left: 1px solid var(--border-sub); }
.stat-val {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== SOBRE ===== */
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-sub);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li .bi { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* About Visual */
.about-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.av-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 24px;
}
.av-avatar {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), #0077c8);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #000;
  flex-shrink: 0;
}
.av-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.av-role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 2px;
}
.av-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.av-tech {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  transition: var(--tr);
  cursor: default;
}
.av-tech .bi { font-size: 1.3rem; color: var(--accent); }
.av-tech:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

/* ===== SERVIÇOS ===== */
.srv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  height: 100%;
  position: relative;
  backdrop-filter: blur(8px);
  transition: var(--tr);
  overflow: hidden;
}
.srv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #0077c8);
  opacity: 0;
  transition: opacity var(--tr);
}
.srv-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,200,232,0.12);
}
.srv-card:hover::after { opacity: 1; }

.srv-featured {
  border-color: var(--accent);
  background: rgba(0, 200, 232, 0.05);
}
.srv-featured::after { opacity: 1; }

.srv-top-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.srv-icon {
  width: 62px; height: 62px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: var(--tr);
}
.srv-card:hover .srv-icon {
  background: var(--accent);
  color: #000;
  transform: scale(1.08);
}

.srv-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.srv-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.srv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.srv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 4px 0;
}
.srv-list .bi { color: var(--accent); }

.srv-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.87rem;
  font-weight: 600;
  transition: gap var(--tr), color var(--tr);
}
.srv-cta:hover { color: var(--accent-d); gap: 10px; }

/* ===== PROCESSO ===== */
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--tr);
  overflow: hidden;
}
.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px var(--accent-glow);
}
.step-num {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,200,232,0.07);
  line-height: 1;
  user-select: none;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: var(--tr);
}
.step-card:hover .step-icon-wrap {
  background: var(--accent);
  color: #000;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CONTATO ===== */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.contact-card .form-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.dark-input {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border-sub) !important;
  color: var(--text) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-family: var(--font) !important;
  font-size: 0.92rem !important;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.dark-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
  outline: none;
}
.dark-input::placeholder { color: #3d4f60 !important; }
.dark-input option { background: var(--bg2); }

/* CIC (Contact Info Card) */
.cic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  backdrop-filter: blur(8px);
}
.cic-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.cic-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-sub);
  text-decoration: none;
  transition: var(--tr);
}
.cic-item:last-of-type { border-bottom: none; }
.cic-item:hover .cic-icon { background: var(--accent); color: #000; border-color: var(--accent); }
.cic-icon {
  width: 46px; height: 46px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--tr);
}
.cic-wpp { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #25d366; }
.cic-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cic-val {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 2px;
}
.cic-note {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-brand { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; }
.footer-desc  { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: var(--tr);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
}
.footer-heading {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.87rem;
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--accent); }
.footer-links.no-hover li {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}
.footer-links.no-hover .bi { color: var(--accent); }
.footer-hr   { border-color: var(--border-sub); margin: 32px 0 18px; }
.footer-copy { color: var(--muted); font-size: 0.8rem; margin: 0; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--tr);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  background: #128c7e;
  color: #fff;
  transform: scale(1.1);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  #navbar { top: 0; }
  #topbar { display: none; }
  .hero-content { padding-top: 100px; }
  .sec-dark, .sec-darker { padding: 70px 0; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border-sub); }
}
@media (max-width: 767px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .av-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 22px 18px; }
  .cic-card { padding: 22px 18px; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .srv-card { padding: 28px 20px; }
}
