
:root{
  --bg:#030504;
  --neon:#00ff6a;
  --neon-2:#1ef27a;
  --muted:#9fb6a9;
  --glass:rgba(255,255,255,0.03);
  --maxw:1100px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,#020301 0%, #041005 60%);
  color:#dbe6d8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  font-size:16px;
}

/* container */
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* header */
.site-header{
  position:sticky;top:0;z-index:40;
  background:linear-gradient(180deg, rgba(0,0,0,0.45), transparent);
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(0,0,0,0.25);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--neon)}
.brand-logo{height:44px;width:auto}
.brand-text{font-weight:700;letter-spacing:1px;color:#bfeec2}

/* nav */
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--muted);text-decoration:none;padding:8px 6px;border-radius:6px}
.nav a:hover{color:var(--neon);background:rgba(0,255,106,0.03)}

/* menu toggle */
.menu-toggle{display:none;background:none;border:0;cursor:pointer}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--neon);margin:4px 0;border-radius:2px}

/* hero */
.hero{position:relative;padding:70px 0 90px;overflow:hidden;min-height:520px;display:flex;align-items:center}
.hero-overlay{
  position:absolute;inset:0;
  background: radial-gradient(600px 200px at 50% 10%, rgba(0,255,106,0.08), transparent 20%),
              linear-gradient(180deg, rgba(1,10,1,0.6), rgba(0,0,0,0.8));
  mix-blend-mode:screen; pointer-events:none;
}
.hero-content{position:relative;z-index:3;max-width:900px;margin-top:20px}
.hero h1{font-size:48px;line-height:1.02;margin:0 0 12px;color:#e6ffe9}
.hero h1 span{color:var(--neon);font-weight:800}
.subtitle{color:var(--muted);margin-bottom:22px}

/* buttons */
.btn{display:inline-block;padding:12px 20px;border-radius:8px;text-decoration:none;font-weight:600;transition:all .18s}
.btn.primary{background:linear-gradient(90deg,var(--neon),var(--neon-2));color:#02221a;box-shadow:0 6px 24px rgba(0,255,106,0.12)}
.btn.ghost{border:1px solid rgba(255,255,255,0.06);color:var(--neon);background:transparent;margin-left:12px}

/* sections */
.section{padding:64px 0}
.section-title{text-align:center;font-size:28px;margin-bottom:6px;color:#e9fff0}
.section-lead{text-align:center;color:var(--muted);margin-bottom:28px}

/* features */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:30px}
.feature{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);padding:22px;border-radius:12px;border:1px solid rgba(255,255,255,0.03);text-align:center}
.icon-large{font-size:36px;color:var(--neon);margin-bottom:12px}
.feature h3{margin:6px 0 10px;color:#dfffe0}

/* steps */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:24px}
.step{background:var(--glass);padding:18px;border-radius:10px;text-align:center;border:1px solid rgba(255,255,255,0.02)}
.step-number{width:48px;height:48px;border-radius:12px;margin:0 auto 12px;background:linear-gradient(180deg,var(--neon),var(--neon-2));color:#032;display:flex;align-items:center;justify-content:center;font-weight:700}

/* pricing */
.pricing-grid{display:flex;gap:18px;align-items:flex-start;justify-content:center;margin-top:20px}
.pricing-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);padding:26px;border-radius:12px;border:1px solid rgba(255,255,255,0.03);width:320px;text-align:center}
.pricing-card.featured{transform:translateY(-8px);box-shadow:0 12px 40px rgba(0,255,106,0.06)}
.price{font-size:22px;color:var(--neon);font-weight:800;margin:10px 0}

/* contact */
.contact-form{max-width:720px;margin:14px auto 0}
.form-row{display:flex;gap:12px;margin-bottom:12px}
.form-row input, textarea, input[type="text"], input[type="email"]{
  width:100%;padding:12px;border-radius:8px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:inherit
}
.contact-form button{display:block;margin-top:8px}

/* footer */
.site-footer{padding:18px 0;border-top:1px solid rgba(255,255,255,0.03);margin-top:30px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;color:var(--muted)}

/* mobile adjustments */
@media(max-width:900px){
  .features-grid, .steps-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{flex-direction:column;align-items:center}
}
@media(max-width:700px){
  .nav{display:none}
  .menu-toggle{display:block}
  .hero h1{font-size:32px}
  .features-grid, .steps-grid{grid-template-columns:1fr}
  .header-inner{height:64px}
  .footer-inner{flex-direction:column;gap:8px}
  .form-row{flex-direction:column}
}

/* mobile nav open */
.nav.open{
  position:fixed;top:72px;right:20px;background:linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.9));padding:12px;border-radius:10px;display:flex;flex-direction:column;gap:8px
}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* subtle neon text glow */
.hero h1 { text-shadow: 0 6px 30px rgba(0,255,106,0.06); }

/* ---- SERVIÇOS PROFISSIONAL ---- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 26px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: .3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,106,0.12);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  color: #e8ffe9;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.services-cta {
  margin-top: 40px;
  text-align: center;
}
/* ======= PLANOS NOVOS ======= */

.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  width: 320px;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(0,255,100,0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0,255,150,0.12);
  border-color: var(--neon);
}

.plan-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.plan-price {
  text-align: center;
  color: var(--neon);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 16px;
  color: #aaa;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  color: #d7d7d7;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.plan-features li::before {
  content: "•";
  color: var(--neon);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.plan-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  background: var(--neon);
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s ease;
}

.plan-btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.plan-note {
  margin-top: 40px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}
#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15; /* deixa MUITO suave */
  pointer-events: none;
}
/* ===== GLOW SUAVE NOS CARDS ===== */

.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(0,255,120,0.25), rgba(0,255,80,0.05));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.25;     /* intensidade do glow */
  transition: 0.3s ease;
}

.plan-card:hover::before {
  opacity: 0.55;     /* brilho mais forte ao passar o mouse */
  background: linear-gradient(145deg, rgba(0,255,150,0.65), rgba(0,255,100,0.25));
}
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(0,255,120,0.25), rgba(0,255,80,0.05));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.2;
  transition: 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.5;
  background: linear-gradient(160deg, rgba(0,255,150,0.6), rgba(0,255,100,0.2));
}
/* ======= BOTÃO ÚNICO DE ORÇAMENTO ======= */

.plans-cta {
  text-align: center;
  margin-top: 40px;
}

.plans-main-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  background: var(--neon);
  border-radius: 10px;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 0 18px rgba(0,255,150,0.4);
}

.plans-main-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(0,255,150,0.6);
  opacity: 0.9;
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {

  .plans-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .plan-card {
    width: 100%;
    padding: 22px;
  }

  .plan-title {
    font-size: 20px;
  }

  .plan-price {
    font-size: 26px;
  }

  .plan-features li {
    font-size: 14px;
  }

  .plans-main-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  #matrix-bg {
    opacity: 0.08;  /* mais suave */
  }
}
input, textarea, select {
  font-size: 16px;
}
body {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
}
html {
  -webkit-text-size-adjust: 100%;
}
nav a {
  font-size: 16px !important;
}
.sobre-title {
  text-align: center;
  font-size: 55px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 30px;
  text-shadow: 
      0 0 10px var(--neon),
      0 0 20px var(--neon),
      0 0 40px var(--neon),
      0 0 70px rgba(0,255,150,0.5);
  letter-spacing: 1px;
  animation: neonPulse 2.8s ease-in-out infinite;
}
@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 8px var(--neon),
      0 0 18px var(--neon),
      0 0 28px var(--neon),
      0 0 40px rgba(0,255,150,0.4);
  }
  50% {
    text-shadow:
      0 0 12px var(--neon),
      0 0 25px var(--neon),
      0 0 45px var(--neon),
      0 0 70px rgba(0,255,150,0.7);
  }
  100% {
    text-shadow:
      0 0 8px var(--neon),
      0 0 18px var(--neon),
      0 0 28px var(--neon),
      0 0 40px rgba(0,255,150,0.4);
  }
}
@media (max-width: 600px) {
  .sobre-title {
    font-size: 38px;
    margin-top: 20px;
  }
}
/* ====== CARTÃO FUTURISTA SOBRE ====== */

.sobre-card {
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(0, 255, 165, 0.15);
  padding: 45px;
  border-radius: 20px;
  max-width: 950px;
  margin: 40px auto;
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 20px rgba(0, 255, 150, 0.08),
    0 0 60px rgba(0, 255, 150, 0.04),
    inset 0 0 20px rgba(0, 255, 150, 0.05);
  animation: fadeUp 1s ease-out;
}

/* TÍTULO PRINCIPAL */
.sobre-title {
  text-align: center;
  font-size: 65px;
  font-weight: 900;
  color: var(--neon);
  margin-bottom: 10px;
  text-shadow:
    0 0 15px var(--neon),
    0 0 35px var(--neon),
    0 0 70px rgba(0,255,150,0.7);
  letter-spacing: 2px;
  animation: neonPulse 2.7s infinite ease-in-out;
}

/* LINHA NEON ANIMADA */
.sobre-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 10px;
  background: var(--neon);
  box-shadow:
      0 0 10px var(--neon),
      0 0 20px var(--neon);
  animation: neonLine 3s infinite alternate ease-in-out;
}

/* SUBTÍTULOS */
.sobre-sub, .sobre-block h3 {
  color: var(--neon);
  font-size: 26px;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(0,255,150,0.6);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* PARÁGRAFOS */
.sobre-card p {
  color: #e7e7e7;
  font-size: 17px;
  line-height: 1.7;
}

.sobre-card ul {
  margin-top: 8px;
  padding-left: 18px;
}

.sobre-card li {
  color: #dcdcdc;
  margin-bottom: 6px;
}

/* ÍCONES */
.icon {
  filter: drop-shadow(0 0 5px var(--neon));
}

/* ANIMAÇÕES */
@keyframes neonPulse {
  0% { text-shadow: 0 0 10px var(--neon); }
  50% { text-shadow: 0 0 25px var(--neon), 0 0 55px rgba(0,255,150,0.7); }
  100% { text-shadow: 0 0 10px var(--neon); }
}

@keyframes neonLine {
  0% { width: 120px; opacity: 0.6; }
  100% { width: 220px; opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav a.active {
    color: var(--neon);
    text-shadow: 0 0 6px var(--neon);
}
/* ===== HERO PREMIUM ===== */

.hero-premium {
  position: relative;
  height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  animation: heroFade 1.2s ease-out forwards;
  max-width: 900px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,150,0.3);
  animation: titleFloat 5s infinite ease-in-out;
}

.highlight {
  color: var(--neon);
  text-shadow:
    0 0 10px var(--neon),
    0 0 25px var(--neon),
    0 0 50px rgba(0,255,150,0.6);
  animation: neonPulse 3s infinite ease-in-out;
}

.hero-subtitle {
  margin-top: 18px;
  font-size: 20px;
  opacity: 0;
  animation: subtitleFade 1.2s 0.6s forwards;
  color: #cfcfcf;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: subtitleFade 1.2s 1s forwards;
}

/* BOTÃO PRINCIPAL */
.btn-hero {
  background: var(--neon);
  padding: 14px 32px;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,255,150,0.5);
  transition: 0.25s ease;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 25px rgba(0,255,150,0.75);
}

/* BOTÃO SECUNDÁRIO */
.btn-hero-outline {
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid var(--neon);
  color: var(--neon);
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(0,255,150,0.15);
}

.btn-hero-outline:hover {
  background: var(--neon);
  color: #000;
  transform: translateY(-3px) scale(1.04);
}

/* ===== ANIMAÇÕES ===== */

@keyframes heroFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes subtitleFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes neonPulse {
  0% { text-shadow: 0 0 10px var(--neon); }
  50% { text-shadow: 0 0 25px var(--neon), 0 0 60px rgba(0,255,150,0.8); }
  100% { text-shadow: 0 0 10px var(--neon); }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 17px; }
  .hero-buttons { flex-direction: column; }
}
/* ===== ÍCONE NEON ANIMADO ===== */

.icon-neon {
  width: 85px;
  height: 85px;
  filter: drop-shadow(0 0 10px rgba(0,255,150,0.45));
  transition: 0.3s ease;
  animation: floatIcon 4s ease-in-out infinite;
  opacity: 0.95;
}

/* HOVER QUE ACENDE */
.icon-neon:hover {
  transform: translateY(-6px) scale(1.07);
  filter: drop-shadow(0 0 18px rgba(0,255,150,0.85));
  opacity: 1;
}

/* ANIMAÇÃO DE FLUTUAÇÃO PREMIUM */
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* MOBILE — deixa menor mas ainda lindo */
@media (max-width: 600px) {
  .icon-neon {
    width: 70px;
    height: 70px;
  }
}
/* ===== CONTATO ===== */

.contact-section {
    text-align: center;
    margin-top: 120px;
    padding-bottom: 140px;
    position: relative;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--neon);
    text-shadow: 0 0 18px var(--neon);
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #cfcfcf;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* BOTÕES */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--neon);
    color: var(--neon);
    background: rgba(0, 255, 150, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.25s ease, transform 0.2s ease;
    box-shadow: 0 0 10px rgba(0,255,150,0.2);
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 18px rgba(0,255,150,0.6);
}

/* ÍCONES */
.contact-icon {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 5px var(--neon));
}

/* MOBILE */
@media (max-width: 600px) {
    .contact-btn {
        width: 90%;
        justify-content: center;
    }
}
/* Remove QUALQUER faixa clara no fundo */
html, body {
    background: #050d0a !important;        /* cor escura uniforme */
    background-color: #050d0a !important;
}

/* Remove cores de fundo de qualquer container */
section, div, header, footer {
    background: transparent !important;
}

/* Garante que o Matrix fique por cima de UM fundo só */
#matrix-bg {
    background: transparent !important;
    opacity: 0.08; /* opcional: deixa suave */
}
/* HERO 100% transparente para deixar a MATRIX aparecer atrás */
.hero {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* Garante que O CANVAS DA MATRIX fica sempre atrás */
#matrix-bg {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 0 !important;
    pointer-events: none;
}
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;

    color: #00ff9d;
    text-shadow: 
        0 0 10px #00ff9d,
        0 0 20px #00ff9d,
        0 0 35px rgba(0,255,157,0.7),
        0 0 55px rgba(0,255,157,0.5);

    letter-spacing: 0.5px;
}

.section-title span {
    color: #ffffff;  
    text-shadow: none;
}
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;

    color: #00ff9d;
    text-shadow:
        0 0 10px #00ff9d,
        0 0 20px #00ff9d,
        0 0 40px rgba(0,255,157,0.7);

    animation: neonPulse 2.8s ease-in-out infinite;
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d; }
    50% { text-shadow: 0 0 25px #00ff9d, 0 0 45px #00ff9d; }
    100% { text-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d; }
}
