:root{
  --black:#030303;
  --dark:#080b10;
  --panel:#111111;
  --orange:#ff7a00;
  --orange2:#f59b23;
  --blue:#075fd6;
  --blue2:#1e88ff;
  --white:#ffffff;
  --muted:#cbd5e1;
  --line:rgba(255,255,255,.14);
  --shadow:0 24px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.6;
}
.container{width:min(1180px,92%);margin:auto}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.94);
  border-bottom:1px solid rgba(255,122,0,.35);
  backdrop-filter:blur(14px);
}

.nav{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo img{
  width:150px;
  height:auto;
  display:block;
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
}

nav a{
  color:var(--white);
  text-decoration:none;
  text-transform:uppercase;
  font-size:14px;
  font-weight:900;
  transition:.25s;
}

nav a:hover{color:var(--orange)}

.menu-btn{
  display:none;
  background:none;
  border:0;
  color:white;
  font-size:32px;
}

.whats-top{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  text-decoration:none;
  border-radius:9px;
  padding:11px 18px;
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:10px;
  align-items:center;
  box-shadow:var(--shadow);
}

.whats-top span{
  grid-row:1/3;
  font-size:30px;
}

.whats-top strong{
  font-size:18px;
  line-height:1;
}

.whats-top small{
  font-size:12px;
  text-transform:uppercase;
}

.hero{
  min-height:590px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 70% 42%, rgba(30,136,255,.45), transparent 26%),
    radial-gradient(circle at 48% 50%, rgba(255,122,0,.34), transparent 18%),
    linear-gradient(110deg,#000 0%,#07101d 55%,#000 100%);
  border-bottom:1px solid rgba(255,122,0,.45);
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr .9fr .55fr;
  gap:28px;
  align-items:center;
}

.tag{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  font-size:18px;
}

.hero h1{
  margin:10px 0;
  font-size:clamp(42px,6vw,72px);
  line-height:1.02;
  text-transform:uppercase;
}

.hero h1 b{
  color:var(--orange);
}

.hero p{
  color:#f1f5f9;
  font-size:20px;
  max-width:620px;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:0;
  cursor:pointer;
  padding:14px 22px;
  border-radius:8px;
  color:white;
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
}

.btn.orange{background:linear-gradient(135deg,var(--orange2),var(--orange))}
.btn.blue{background:linear-gradient(135deg,var(--blue),var(--blue2))}
.btn.full{width:100%}

.benefits{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.hero-repair{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero-phone{
  width:175px;
  height:340px;
  border:8px solid #171717;
  border-radius:32px;
  position:relative;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-phone em,
.real-img span{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  background:var(--orange);
  color:white;
  padding:5px 10px;
  border-radius:6px;
  font-style:normal;
  font-size:12px;
  font-weight:900;
}

.hero-phone.before{
  transform:rotate(-8deg);
  background:
    linear-gradient(30deg,transparent 49%,rgba(255,255,255,.9) 50%,transparent 51%),
    linear-gradient(100deg,transparent 49%,rgba(255,255,255,.6) 50%,transparent 51%),
    radial-gradient(circle at 45% 48%, white 0 2px, transparent 5px),
    linear-gradient(135deg,#060606,#2b2b2b);
}

.hero-phone.after{
  transform:rotate(8deg);
  margin-left:-18px;
  background:
    radial-gradient(circle at 40% 30%,#fff,transparent 13%),
    linear-gradient(135deg,#ff3e7f,#155dfc 55%,#ff7a00);
}

.hero-phone.after em{
  left:auto;
  right:12px;
  background:var(--blue);
}

.hero-arrow{
  color:var(--orange);
  font-size:58px;
  font-weight:900;
  filter:drop-shadow(0 0 15px rgba(255,122,0,.8));
  z-index:3;
}

.store-card{
  border:1px solid var(--line);
  background:rgba(5,5,5,.78);
  padding:28px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.pin{font-size:42px}
.store-card h3{
  color:var(--orange);
  text-transform:uppercase;
  margin:8px 0 12px;
}
.store-card p{
  font-size:19px;
  margin-bottom:14px;
}
.store-card small{
  color:var(--muted);
  display:block;
  margin-bottom:18px;
}

.showcase,
.services,
.process,
.contact{
  padding:76px 0;
}

.title{
  text-align:center;
  margin-bottom:34px;
}

.title h2{
  font-size:clamp(32px,4vw,46px);
  text-transform:uppercase;
}

.title h2::after{
  content:"";
  width:90px;
  height:4px;
  background:var(--orange);
  display:block;
  margin:10px auto 0;
  border-radius:99px;
}

.title p{color:var(--muted)}

.showcase-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.repair-card,
.service-grid article,
form{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  border-radius:18px;
  box-shadow:var(--shadow);
}

.repair-card{
  padding:16px;
}

.repair-card h3{
  text-align:center;
  color:var(--orange);
  text-transform:uppercase;
  margin-bottom:12px;
}

.before-after-box{
  display:grid;
  grid-template-columns:1fr 48px 1fr;
  align-items:center;
  gap:10px;
}

.real-img{
  position:relative;
  height:190px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background-size:cover;
  background-position:center;
}

.circle-arrow{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:var(--orange);
  border-radius:50%;
  color:white;
  font-size:25px;
  font-weight:900;
  z-index:3;
  box-shadow:0 0 22px rgba(255,122,0,.55);
}

.phone-broken{
  background:
    linear-gradient(26deg,transparent 49%,rgba(255,255,255,.8) 50%,transparent 51%),
    linear-gradient(110deg,transparent 49%,rgba(255,255,255,.55) 50%,transparent 51%),
    radial-gradient(circle at 40% 45%,rgba(255,255,255,.95) 0 3px,transparent 6px),
    linear-gradient(135deg,#111,#444);
}

.phone-fixed{
  background:
    radial-gradient(circle at 55% 32%,rgba(255,255,255,.95),transparent 10%),
    linear-gradient(145deg,#27272a,#0b63d8,#ff7a00);
}

.connector-bad{
  background:
    radial-gradient(circle at 40% 55%,rgba(255,122,0,.7),transparent 18%),
    repeating-linear-gradient(90deg,#171717 0 18px,#2a1d14 18px 21px),
    linear-gradient(135deg,#34210d,#050505);
}

.connector-good{
  background:
    repeating-linear-gradient(90deg,#121212 0 18px,#2f2f2f 18px 21px),
    radial-gradient(circle at 50% 54%,#d1d5db 0 13px,transparent 15px),
    linear-gradient(135deg,#111,#424242);
}

.notebook-broken{
  background:
    linear-gradient(25deg,transparent 49%,rgba(255,255,255,.75) 50%,transparent 51%),
    linear-gradient(135deg,#111 0 52%,#222 52% 65%,#090909 65%);
}

.notebook-fixed{
  background:
    linear-gradient(180deg,#0b63d8 0 60%,#111 60% 67%,#202020 67% 100%);
}

.board-dirty{
  background:
    radial-gradient(circle at 30% 50%,rgba(132,80,35,.7),transparent 25%),
    repeating-linear-gradient(45deg,#2b211a 0 12px,#111 12px 18px);
}

.board-clean{
  background:
    radial-gradient(circle at 45% 50%,#1f2937 0 28px,transparent 30px),
    repeating-linear-gradient(45deg,#0f172a 0 12px,#1e3a8a 12px 18px);
}

.real-img:nth-child(3) span,
.phone-fixed span,
.connector-good span,
.notebook-fixed span,
.board-clean span{
  left:auto;
  right:12px;
  background:var(--blue);
}

.services{
  background:#050505;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.service-grid article{
  padding:26px;
  transition:.25s;
}

.service-grid article:hover{
  transform:translateY(-6px);
  border-color:rgba(255,122,0,.65);
}

.icon{
  font-size:42px;
  margin-bottom:12px;
}

.service-grid h3{
  margin-bottom:8px;
}

.service-grid p{
  color:var(--muted);
  font-size:14px;
}

.service-grid a{
  color:var(--orange);
  display:inline-block;
  margin-top:14px;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.accessories{
  padding:76px 0;
  background:linear-gradient(135deg,#061225,#075fd6 55%,#020202);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

.chips span{
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);
  padding:13px 18px;
  border-radius:999px;
  font-weight:900;
}

.cta-strip{
  background:linear-gradient(135deg,#004aad,#075fd6);
  padding:18px 0;
}

.strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.strip-grid div{
  display:grid;
  gap:2px;
}

.strip-grid small{
  color:#dbeafe;
}

.contact{
  background:linear-gradient(135deg,#020202,#111827);
  border-top:1px solid rgba(255,122,0,.25);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.contact h2{
  text-transform:uppercase;
  font-size:42px;
  line-height:1.1;
  margin-bottom:14px;
}

.contact-info{
  margin-top:20px;
  color:var(--muted);
}

.contact-info strong{
  color:var(--orange);
}

form{
  padding:26px;
  display:grid;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:15px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:#060b12;
  color:white;
  font-size:16px;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.float-whats{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1001;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:white;
  text-decoration:none;
  font-size:28px;
  box-shadow:var(--shadow);
}

footer{
  background:#000;
  border-top:1px solid rgba(255,122,0,.35);
  padding:35px 0;
}

.footer{
  display:flex;
  gap:18px;
  align-items:center;
  color:var(--muted);
}

.footer img{
  width:110px;
}

.footer strong{
  color:var(--orange);
  font-size:24px;
}

@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr}
  .store-card{max-width:460px}
  .service-grid{grid-template-columns:1fr 1fr}
  .strip-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:850px){
  .whats-top{display:none}
  .menu-btn{display:block}
  nav{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:96px;
    flex-direction:column;
    align-items:flex-start;
    background:#050505;
    border:1px solid rgba(255,122,0,.4);
    border-radius:0 0 18px 18px;
    padding:20px;
  }
  nav.active{display:flex}
  .showcase-grid,
  .contact-grid{grid-template-columns:1fr}
}

@media(max-width:580px){
  .logo img{width:118px}
  .hero{padding:46px 0}
  .hero-repair{min-height:350px}
  .hero-phone{width:135px;height:270px}
  .hero-arrow{font-size:40px}
  .before-after-box{grid-template-columns:1fr}
  .circle-arrow{
    margin:auto;
    transform:rotate(90deg);
  }
  .service-grid,
  .strip-grid{grid-template-columns:1fr}
}


.catalogo-topo{
    background: linear-gradient(90deg,#ff6a00,#ff9900);
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:18px;
    font-weight:700;
    position:sticky;
    top:0;
    z-index:9999;
}
.catalogo-topo a{
    color:#fff;
    background:#0066ff;
    padding:8px 14px;
    border-radius:8px;
    margin-left:10px;
    text-decoration:none;
    display:inline-block;
}
.catalogo-topo a:hover{opacity:.9;}
