*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
body{background:#f5f7fa;color:#111}

.header{
  display:flex;justify-content:space-between;align-items:center;
  padding:15px 8%;background:#fff;position:sticky;top:0;z-index:1000;
}
.logo span{color:#0066ff}

.nav a{margin:0 10px;text-decoration:none;color:#111}
.btn{background:#0066ff;color:#fff;padding:10px 20px;border:none;border-radius:5px}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero{
  display:grid;grid-template-columns:1fr 1fr;align-items:center;
  padding:80px 8%;background:linear-gradient(135deg,#020617,#003c99);
  color:#fff;
}



.section{padding:70px 8%;text-align:center}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}

.card{
  background:#fff;padding:30px;border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}
.card:hover{transform:translateY(-8px)}

.stats{
  display:flex;justify-content:space-around;
  background:#111;color:#fff;padding:50px
}

.chatbot{
  position:fixed;bottom:90px;right:20px;
  width:260px;background:#fff;border-radius:10px;
  box-shadow:0 0 20px rgba(0,0,0,.2)
}

.whatsapp{
  position:fixed;bottom:20px;right:20px;
  background:#25d366;color:#fff;padding:15px;border-radius:50%;
}

#topBtn{
  position:fixed;bottom:20px;left:20px;
}

/* ===== SERVIÇOS COM SCROLL HORIZONTAL ===== */

.services {
  background: #fafafa;
  overflow: hidden;
}

.section-subtitle {
  margin: 10px 0 40px;
  color: #555;
}

.services-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.services-wrapper::-webkit-scrollbar {
  display: none; /* Chrome */
}

.services-track {
  display: flex;
  gap: 25px;
  padding: 20px;
  width: max-content;
  animation: scrollServices 40s linear infinite;
}

.service-card {
  min-width: 260px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all .4s ease;
  text-align: center;
  cursor: pointer;
}

.service-card i {
  font-size: 38px;
  color: #0066ff;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,102,255,0.25);
}

/* Animação automática direita -> esquerda */
@keyframes scrollServices {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausa animação no hover */
.services-wrapper:hover .services-track {
  animation-play-state: paused;
}



/* =====================
   HERO AVANÇADO 3D
===================== */

.hero-3d {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,102,255,.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,102,255,.15), transparent 40%),
    linear-gradient(135deg,#020617,#020a1f);
  z-index: 0;
}

.hero-3d * {
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: #4da3ff;
}

/* =====================
   ANIMAÇÕES DE ENTRADA
===================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   HERO BACKGROUND IMAGE
===================== */
.hero,
.hero-3d {
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo */
.hero::before,
.hero-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(fundo-home.jpeg) center/cover no-repeat;
  z-index: 0;
}

/* Garantir que conteúdo fique acima */
.hero > *,
.hero-3d > * {
  position: relative;
  z-index: 1;
}

/* =====================
   FLOATING 3D
===================== */

.floating {
  animation: float 6s ease-in-out infinite;
}


.hero-visual {
  max-width: 420px;
  background: none;
  box-shadow: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* =====================
   BOTÃO GLOW TECH
===================== */

.glow {
  position: relative;
  box-shadow: 0 0 20px rgba(0,102,255,.6);
}

.glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0,102,255,.4);
  filter: blur(25px);
  z-index: -1;
}

/* =====================
   CARDS 3D TILT
===================== */

.card, .service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover, .service-card:hover {
  transform: rotateY(12deg) rotateX(6deg) scale(1.06);
}

/* =====================
   GLASSMORPHISM
===================== */

.service-card {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.4);
}

/* =====================
   SEÇÃO COM PARALLAX
===================== */

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,102,255,.05), transparent 70%);
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

/* =====================
   PROJETOS – PREMIUM
===================== */

.projects {
  background: #020617;
  color: #fff;
}

.projects .section-subtitle {
  color: #b3c7ff;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.project-filters button {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.project-filters button.active,
.project-filters button:hover {
  background: #0066ff;
  border-color: #0066ff;
  box-shadow: 0 0 20px rgba(0,102,255,.5);
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 320px;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,.95),
    rgba(2,6,23,.3)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity .4s ease;
}

.project-overlay h3 {
  margin-bottom: 8px;
}

.project-overlay span {
  font-size: 13px;
  color: #4da3ff;
}

/* HOVER EFFECTS */
.project-card:hover img {
  transform: scale(1.15) rotate(1deg);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover {
  box-shadow: 0 30px 60px rgba(0,102,255,.35);
}




/* =====================
   SOBRE NÓS – PREMIUM
===================== */

.about {
  background: linear-gradient(180deg,#020617,#142355);
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: #c7d2fe;
  margin-top: 15px;
  line-height: 1.7;
}

/* VALORES */
.about-values {
  display: flex;
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: all .4s ease;
  transform-style: preserve-3d;
}

.value-card i {
  font-size: 34px;
  color: #4da3ff;
  margin-bottom: 12px;
}

.value-card:hover {
  transform: translateY(-10px) rotateX(8deg);
  box-shadow: 0 20px 40px rgba(149, 192, 255, 0.35);
}

/* ESTATÍSTICAS */
.about-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 70px;
  text-align: center;
}

.about-stats span {
  font-size: 40px;
  font-weight: 700;
  color: #4da3ff;
}

/* PARCEIROS */
.partners {
  margin-top: 80px;
  text-align: center;
}

.partners h3 {
  margin-bottom: 35px;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  gap: 30px;
  align-items: center;
}

.partners-logos img {
  max-width: 120px;
  margin: auto;
 background: transparent;
  opacity: 50;
  transition: all .4s ease;
}

.partners-logos img:hover {
  filter: none;
  opacity: 50;
  transform: scale(1.1);
}



/* =====================
   FAQ – ENTERPRISE
===================== */

.faq {
  background: linear-gradient(180deg,#050b1f,#334285);
  color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .4s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(0,102,255,.25);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 22px 25px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform .4s ease;
  color: #4da3ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}

.faq-answer p {
  padding: 0 25px 22px;
  color: #c7d2fe;
  line-height: 1.7;
}

/* FAQ ATIVO */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* =====================
   SUPORTE – ENTERPRISE
===================== */

.support {
  background: radial-gradient(circle at 20% 20%, rgba(0,102,255,.15), transparent 40%),
              linear-gradient(180deg,#334285,#050b1f);
  color: #fff;
}

.support-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.support-text p {
  margin-top: 15px;
  color: #c7d2fe;
  line-height: 1.7;
}

.support-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn-outline {
  border: 1px solid #4da3ff;
  color: #4da3ff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: #4da3ff;
  color: #020617;
}

/* VISUAL */
.support-visual {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.support-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  transition: all .4s ease;
}

.support-card i {
  font-size: 36px;
  color: #4da3ff;
  margin-bottom: 10px;
}

.support-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,102,255,.4);
}

/* PROCESSO */
.support-process {
  margin-top: 90px;
  text-align: center;
}

.process-steps {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.process-step {
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all .4s ease;
}

.process-step span {
  font-size: 28px;
  font-weight: 700;
  color: #4da3ff;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,102,255,.3);
}


/* =====================
   ÁREA DO CLIENTE – SaaS
===================== */

.client-area {
  background: linear-gradient(180deg,#020617,#050b1f);
  color: #fff;
}

.client-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* LOGIN */
.client-login {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.client-login h3 {
  margin-bottom: 20px;
}

.client-login input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.login-info {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #9db7ff;
}

/* DASHBOARD */
.client-dashboard {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 20px;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 20px;
  margin: 25px 0;
}

.dashboard-card {
  background: rgba(0,102,255,.15);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all .4s ease;
}

.dashboard-card i {
  font-size: 28px;
  color: #4da3ff;
  margin-bottom: 10px;
}

.dashboard-card span {
  display: block;
  margin-top: 5px;
  color: #c7d2fe;
}

.dashboard-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,102,255,.4);
}

/* BOTÃO PEQUENO */
.btn-outline.small {
  padding: 8px 16px;
  font-size: 14px;
}

/* AVISO */
.client-note {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  color: #9db7ff;
}

/* =====================
   CONTATO – PREMIUM
===================== */

.contact-section {
  background: radial-gradient(circle at top,#0a1d44,#020617);
  color: #fffafa;
}

.contact-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* INFO */


.contact-info {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.section-subtitle{
  color: white;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  color: #ffffff;
  margin-bottom: 25px;
}

.contact-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e5e7eb;
}

.contact-list i {
  color: #4da3ff;
}

/* SOCIAL */
.contact-social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,102,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4da3ff;
  transition: all .4s ease;
}

.contact-social a:hover {
  background: #0066ff;
  color: #fff;
  transform: translateY(-6px);
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: 22px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  margin: 15px 0;
  resize: none;
}

/* FOOTER */
.contact-footer {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #9db7ff;
}



/* =====================
   NAVBAR MODERNA
===================== */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(2,6,23,.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0,0,0,.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.navbar .logo a {
  color: #4da3ff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
}

.nav-links a:hover {
  color: #4da3ff;
}

.nav-links a.active {
  color: #4da3ff;
  border-bottom: 2px solid #4da3ff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #4da3ff;
  border-radius: 3px;
  transition: all .4s ease;
}

/* =====================
   NAVBAR PREMIUM
===================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(14px);
  padding: 15px 50px;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #4da3ff;
  text-decoration: none;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #4da3ff;
  transition: all 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* BOTÃO */
.nav-btn {
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-left: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #4da3ff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* STICKY SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  padding: 10px 50px;
}


@media(max-width:900px){
  .nav-menu{position:fixed;top:0;right:-100%;width:260px;height:100vh;background:rgba(0,0,0,0.95);flex-direction:column;justify-content:center;align-items:center;transition:0.4s;display:flex}
  .nav-menu.active{right:0}
  .nav-menu ul{flex-direction:column;gap:20px}
  .hamburger{display:flex}
  .nav-btn{display:none}
  
  .hero, .hero-3d{grid-template-columns:1fr;padding:50px 15px;text-align:center}
  .hero::before,
  .hero-3d::before {
    background-position: center top;
  }
  .about-container{grid-template-columns:1fr;gap:30px;padding:50px 15px}
  .about-values{flex-direction:column;gap:15px}
  .about-stats{flex-direction:column;gap:25px}
  .services-track{animation:scrollServices 40s linear infinite}
  .service-card{min-width:220px}
  .projects-grid{grid-template-columns:1fr;gap:20px}
  .project-card{height:auto}
  .support-container{grid-template-columns:1fr;gap:40px;padding:30px 15px}
  .support-visual{grid-template-columns:1fr}
  .client-container{grid-template-columns:1fr;gap:30px;padding:30px 15px}
  .contact-container{grid-template-columns:1fr;gap:30px;padding:30px 15px}
  .form-group{flex-direction:column}
  .faq-container{padding:20px 15px}
}

