/* ===== Tokens ===== */
:root{
  --background:#13071f; /* hsl(260 20% 6%) approx + project dark */
  --foreground:#ffffff;
  --muted-foreground:#9b94a8;
  --primary:#a23dee;
  --primary-glow:#c44dff;
  --border:#5a2e7a;
  --card:#1a0f24;
  --input:#1f1530;
  --surface-dark:#0f0817;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:hsl(260 20% 6%);
  color:var(--foreground);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
input,select{font-family:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.muted{color:var(--muted-foreground);max-width:640px;margin:0 auto 8px;font-size:1.125rem}
.strong-light{color:var(--foreground);font-weight:700;font-size:1.125rem}
.text-gradient{
  background:linear-gradient(135deg,hsl(270 80% 60%),hsl(270 100% 70%));
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.divider{width:96px;height:1px;background:var(--border);margin:32px auto 48px}

.section-title{
  font-size:clamp(1.875rem,4vw,3.75rem);
  font-weight:900;text-align:center;margin-bottom:16px;text-transform:uppercase;
}

/* ===== Buttons ===== */
.gradient-purple,.btn-purple,.btn-purple-lg,.btn-purple-round,.metodo-cta{
  background:linear-gradient(135deg,hsl(270 80% 60%),hsl(270 100% 65%));
  color:#fff;
}
.btn-purple{
  display:inline-flex;align-items:center;padding:20px 40px;border-radius:8px;
  font-weight:900;font-size:1.125rem;text-transform:uppercase;letter-spacing:.1em;
  transition:opacity .2s;
}
.btn-purple:hover{opacity:.9}
.btn-purple-lg{padding:24px 64px;font-size:1.25rem}
.pulse{animation:pulse 2s infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(196,77,255,.5)}50%{box-shadow:0 0 0 14px rgba(196,77,255,0)}}

/* ===== Navbar ===== */
.navbar{position:fixed;top:0;left:0;right:0;z-index:50;background:hsl(270 80% 60%)}
.nav-container{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:16px 24px}
.nav-logo{height:64px;width:auto;margin:-12px 0}
.nav-links{display:none;gap:40px}
.nav-links a{font-size:.875rem;font-weight:700;letter-spacing:.1em;color:#fff;transition:opacity .2s}
.nav-links a:hover{opacity:.8}
.nav-cta{display:none;padding:12px 28px;background:#fff;color:hsl(260 20% 6%);font-weight:900;font-size:.875rem;text-transform:uppercase;letter-spacing:.05em;border-radius:6px;transition:background .2s}
.nav-cta:hover{background:rgba(255,255,255,.9)}
.nav-toggle{display:flex;color:#fff;padding:8px}
.nav-mobile{display:none;flex-direction:column;gap:16px;padding:16px 24px 24px;background:hsl(270 80% 60%);border-top:1px solid rgba(255,255,255,.1)}
.nav-mobile.open{display:flex}
.nav-mobile a{color:#fff;font-weight:700;font-size:.875rem;letter-spacing:.1em}
.nav-cta-mobile{margin-top:8px;background:#fff;color:hsl(260 20% 6%);text-align:center;padding:12px 28px;border-radius:6px;font-weight:900;text-transform:uppercase}
@media(min-width:768px){
  .nav-links{display:flex}
  .nav-cta{display:inline-flex;align-items:center}
  .nav-toggle{display:none}
  .nav-mobile{display:none!important}
}

/* ===== Hero ===== */
.hero{position:relative}
.hero-mobile{display:block}
.hero-desktop{display:none !important}
@media(min-width:768px){.hero-mobile{display:none !important}.hero-desktop{display:flex !important}}

.hero-mobile{padding-top:64px}
.hero-mobile-img{position:relative;width:100%}
.hero-mobile-img img{width:100%;height:auto;object-fit:contain}
.hero-mobile-fade{position:absolute;inset:0;background:linear-gradient(to top,hsl(260 20% 6%),hsla(260,20%,6%,.4),transparent)}
.hero-mobile-content{padding:0 24px 64px;margin-top:-80px;position:relative;z-index:10;display:flex;flex-direction:column;align-items:center;text-align:center}
.hero-mobile-content h1{font-size:1.875rem;font-weight:900;line-height:1.05;margin-bottom:16px;text-transform:uppercase;font-style:italic}
.hero-mobile-content p{color:var(--muted-foreground);font-size:1rem;margin-bottom:24px}

.hero-desktop{position:relative;display:flex;min-height:100vh;background:hsl(260 20% 6%);overflow:hidden}
.hero-content{position:relative;z-index:10;display:flex;align-items:center;min-height:100vh;width:40%;padding:48px 24px}
@media(min-width:1024px){.hero-content{padding:48px 40px}}
.hero-image{position:relative;width:60%;min-height:100vh;display:flex;align-items:center;justify-content:center;background:hsl(260 20% 6%)}
.hero-image img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-title{display:flex;flex-direction:column;font-weight:900;line-height:1.05;margin-bottom:24px;text-transform:uppercase;font-style:italic;font-size:2.2em}
@media(min-width:1024px){.hero-title{font-size:2.6em}}
.hero-sub{color:var(--muted-foreground);font-size:1rem;margin-bottom:32px;width:98%}
@media(min-width:1024px){.hero-sub{font-size:1.125rem}}

/* ===== Logos ===== */
.logos-section{
  padding:64px 0;background:#13071f;
  border-top:1px solid hsl(270 80% 60%);border-bottom:1px solid hsl(270 80% 60%);
  box-shadow:0 -4px 20px hsla(270,80%,60%,.3),0 4px 20px hsla(270,80%,60%,.3);
}
.logos-title{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:900;text-align:center;margin-bottom:48px;color:#fff}
.logos-marquee{overflow:hidden}
.logos-track{display:flex;gap:48px;align-items:center;animation:scroll 40s linear infinite;will-change:transform}
@keyframes scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.logo-circle{flex-shrink:0;width:64px;height:64px;border-radius:50%;background:rgba(255,255,255,.1);border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);display:flex;align-items:center;justify-content:center;opacity:.8;transition:opacity .2s}
.logo-circle:hover{opacity:1}
.logo-circle img{width:82%;height:82%;object-fit:contain}
@media(min-width:768px){.logo-circle{width:80px;height:80px}}

/* ===== Metodo ===== */
.metodo{padding:96px 0;background:#13071f}
.metodo-grid{display:grid;grid-template-columns:1fr;gap:24px}
.metodo-grid-bottom{margin-top:24px}
@media(min-width:768px){.metodo-grid{grid-template-columns:1fr 1fr}}
.metodo-card{background:#000;border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);border-radius:12px;padding:32px}
.metodo-icon{width:48px;height:48px;border-radius:8px;background:#13071f;display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:1.5rem}
.metodo-card h3{font-size:1.25rem;font-weight:900;margin-bottom:12px;text-transform:uppercase}
@media(min-width:768px){.metodo-card h3{font-size:1.5rem}}
.metodo-card p{color:var(--muted-foreground);font-size:1rem;line-height:1.6}
.metodo-cta{border-radius:12px;display:flex;align-items:center;justify-content:center;padding:32px;transition:opacity .2s;text-align:center}
.metodo-cta:hover{opacity:.9}
.metodo-cta .arrow{font-size:1.875rem}
.metodo-cta p{font-weight:900;font-size:1.25rem;text-transform:uppercase;margin-top:16px}

/* ===== Servicos ===== */
.servicos{padding:96px 0;background:hsl(260 20% 6%)}
.tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:48px}
.tab-btn{padding:10px 20px;border-radius:9999px;font-size:.875rem;font-weight:500;border:1px solid var(--border);color:var(--muted-foreground);transition:all .2s}
.tab-btn:hover{border-color:var(--primary);color:#fff}
.tab-btn.active{background:#fff;color:hsl(260 20% 6%);border-color:#fff}
.service-card{border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);border-radius:16px;padding:24px;background:var(--card);max-width:1120px;margin:0 auto;min-height:420px}
@media(min-width:768px){.service-card{padding:40px}}
@media(min-width:1024px){.service-card{padding:56px}}
.service-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;height:100%}
@media(min-width:768px){.service-grid{grid-template-columns:1fr 1fr;gap:64px}}
.service-image{display:flex;align-items:center;justify-content:center;height:100%}
.service-image img.single{border-radius:12px;width:100%;max-height:360px;object-fit:contain}
.service-image .rect{display:flex;gap:16px;width:100%}
.service-image .rect img{border-radius:12px;object-fit:cover;width:50%;height:288px}
.service-image .circles{position:relative;width:288px;height:288px}
.service-image .circles img{position:absolute;border-radius:50%;object-fit:cover;border:2px solid hsl(260 20% 6%)}
.service-image .circles img:nth-child(1){top:0;left:0;width:160px;height:160px;z-index:10}
.service-image .circles img:nth-child(2){bottom:16px;left:32px;width:128px;height:128px;z-index:20}
.service-image .circles img:nth-child(3){bottom:48px;right:8px;width:112px;height:112px;z-index:10}
.service-icon{width:48px;height:48px;border-radius:8px;background:linear-gradient(135deg,hsl(270 80% 60%),hsl(270 100% 65%));display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:1.5rem}
.service-text h3{font-size:1.5rem;font-weight:900;margin-bottom:12px}
@media(min-width:768px){.service-text h3{font-size:1.875rem}}
@media(min-width:1024px){.service-text h3{font-size:2.25rem}}
.service-text>p{color:var(--muted-foreground);margin-bottom:32px;font-size:1rem}
@media(min-width:1024px){.service-text>p{font-size:1.125rem}}
.service-text ul{list-style:none;display:flex;flex-direction:column;gap:16px}
.service-text li{display:flex;align-items:flex-start;gap:12px;font-size:.875rem;color:var(--muted-foreground)}
@media(min-width:1024px){.service-text li{font-size:1rem}}
.service-text li::before{content:"•";color:var(--primary);font-size:1.125rem;line-height:1}

/* ===== Contato ===== */
.contato{padding:96px 0;background:hsl(273.75 42.11% 7.45%)}
.contato-outer{border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);border-radius:16px;padding:32px;background:hsl(270.73 59.42% 13.53%)}
@media(min-width:768px){.contato-outer{padding:48px}}
@media(min-width:1024px){.contato-outer{padding:64px}}
.contato-header{margin-bottom:48px}
.badge{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:9999px;border:1px solid hsla(270,80%,60%,.4);color:var(--primary);font-size:.875rem;margin-bottom:24px}
.contato-steps{display:grid;grid-template-columns:1fr;gap:24px;margin-bottom:48px}
@media(min-width:768px){.contato-steps{grid-template-columns:1fr 1fr}}
.step-card{border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);border-radius:12px;padding:24px;background:hsl(269.3 58.9% 14.31%)}
.step-card:nth-child(2){background:hsl(275.71 60% 13.73%)}
.step-head{display:flex;align-items:center;gap:8px;margin-bottom:8px}
.step-head h3{font-weight:700;font-size:1.125rem}
.step-card p{color:var(--muted-foreground)}
.form-wrap{border:1px solid hsl(270 40% 30%);box-shadow:0 0 15px hsla(270,80%,60%,.1);border-radius:16px;padding:32px;background:hsl(270.73 48.24% 16.67%)}
@media(min-width:768px){.form-wrap{padding:40px}}
.country-toggle{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:0 auto 32px;max-width:448px}
.country-btn{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 16px;border-radius:9999px;font-size:.875rem;font-weight:700;border:1px solid var(--border);color:var(--muted-foreground);transition:all .2s}
.country-btn:hover{color:#fff}
.country-btn.active{background:linear-gradient(135deg,hsl(270 80% 60%),hsl(270 100% 65%));color:#fff;border:0}
form{display:flex;flex-direction:column;gap:24px}
.form-row{display:grid;grid-template-columns:1fr;gap:24px}
@media(min-width:768px){.form-row{grid-template-columns:1fr 1fr}}
label{display:block;font-size:.875rem;font-weight:700;margin-bottom:8px}
input,select{width:100%;padding:14px 16px;border-radius:8px;background:var(--input);border:1px solid var(--border);color:#fff;font-size:1rem;outline:none;transition:box-shadow .2s}
input::placeholder{color:var(--muted-foreground)}
input:focus,select:focus{box-shadow:0 0 0 2px var(--primary)}
select{color:var(--muted-foreground)}
.form-submit{display:flex;justify-content:center;padding-top:16px}
.btn-purple-round{padding:16px 48px;border-radius:9999px;font-weight:700;font-size:1rem;letter-spacing:.025em;transition:opacity .2s;display:flex;align-items:center;gap:8px}
.btn-purple-round:hover{opacity:.9}
.form-disclaimer{text-align:center;font-size:.75rem;color:var(--muted-foreground);margin-top:24px}
.form-status{text-align:center;font-size:.875rem;margin-top:16px;min-height:20px}
.form-status.success{color:#4ade80}
.form-status.error{color:#f87171}
.btn-purple-round:disabled{opacity:.6;cursor:not-allowed}
