@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root { --blue:#00bfff; --dark:#070a0f; --card:#10151d; --text:#f5f7fa; --muted:#9da8b5; }
* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { background:var(--dark); color:var(--text); font-family:Inter,Arial,sans-serif; }
.header { position:sticky; top:0; z-index:10; height:72px; padding:0 6%; display:flex; align-items:center; justify-content:space-between; background:rgba(7,10,15,.94); border-bottom:1px solid #1c2631; backdrop-filter:blur(10px); }
.brand { display:flex; align-items:center; min-width:150px; text-decoration:none; }
.brand-logo { display:block; width:auto; max-width:190px; height:46px; object-fit:contain; object-position:left center; }
.logo { font-family:"Barlow Condensed",sans-serif; font-size:30px; font-weight:800; letter-spacing:1px; }
.logo span { color:var(--blue); }
nav { display:flex; gap:28px; }
nav a { color:#d9e0e7; text-decoration:none; font-weight:600; font-size:14px; }
nav a:hover { color:var(--blue); }
.menu-btn { display:none; background:none; color:white; border:0; font-size:25px; }

.hero { min-height:560px; display:grid; grid-template-columns:minmax(0,1fr) minmax(380px,.9fr); align-items:center; gap:40px; padding:70px 6% 70px 8%; overflow:hidden; background:linear-gradient(90deg,rgba(7,10,15,.99),rgba(7,10,15,.82),rgba(7,10,15,.38)),radial-gradient(circle at 80% 40%,rgba(0,191,255,.22),transparent 34%),repeating-linear-gradient(135deg,#0a1017 0,#0a1017 2px,#080c12 2px,#080c12 8px); }
.hero-content { max-width:650px; position:relative; z-index:2; }
.tag { color:var(--blue); font-size:13px; font-weight:800; letter-spacing:2px; margin-bottom:12px; }
h1,h2 { font-family:"Barlow Condensed",sans-serif; text-transform:uppercase; }
h1 { font-size:clamp(54px,7vw,96px); line-height:.88; margin-bottom:25px; }
h1 span { color:var(--blue); }
.hero p:not(.tag) { color:var(--muted); line-height:1.7; max-width:500px; margin-bottom:30px; }
.btn { display:inline-block; padding:15px 24px; background:var(--blue); color:#001018; font-weight:800; text-decoration:none; border-radius:4px; transition:.2s; }
.btn:hover { transform:translateY(-2px); filter:brightness(1.1); }

.hero-visual { position:relative; min-height:440px; display:flex; align-items:center; justify-content:center; isolation:isolate; perspective:1200px; }
.visual-glow { position:absolute; width:74%; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,rgba(0,191,255,.32),rgba(0,191,255,.08) 45%,transparent 70%); filter:blur(8px); z-index:-1; animation:pulseGlow 4s ease-in-out infinite; }
.hero-motor { display:block; width:min(100%,650px); max-height:430px; object-fit:contain; transform-origin:center; filter:drop-shadow(0 26px 24px rgba(0,0,0,.55)) drop-shadow(0 0 18px rgba(0,191,255,.12)); animation:motorTurn 9s ease-in-out infinite; will-change:transform; }
.motor-placeholder { width:min(100%,560px); min-height:310px; border:1px dashed rgba(0,191,255,.55); border-radius:20px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--blue); background:rgba(0,191,255,.04); text-align:center; }
.motor-placeholder strong { font-family:"Barlow Condensed",sans-serif; font-size:32px; letter-spacing:1px; }
.motor-placeholder span { color:var(--muted); font-size:13px; }
.visual-caption { position:absolute; right:0; bottom:22px; padding:9px 14px; border-left:3px solid var(--blue); color:#cbd8e3; background:rgba(7,10,15,.72); font-size:10px; font-weight:800; letter-spacing:2px; }
@keyframes motorTurn { 0%,100% { transform:translateY(0) rotateY(-7deg) rotateZ(-.4deg); } 50% { transform:translateY(-14px) rotateY(7deg) rotateZ(.4deg); } }
@keyframes pulseGlow { 0%,100% { transform:scale(.94); opacity:.72; } 50% { transform:scale(1.06); opacity:1; } }

.section { padding:80px 7%; }
.section-title { margin-bottom:35px; }
h2 { font-size:clamp(38px,5vw,60px); line-height:.95; }
.category-scroll { overflow-x:auto; overflow-y:hidden; padding:4px 2px 12px; scrollbar-width:thin; scrollbar-color:var(--blue) #111923; scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch; }
.category-scroll::-webkit-scrollbar { height:7px; }
.category-scroll::-webkit-scrollbar-track { background:#111923; border-radius:999px; }
.category-scroll::-webkit-scrollbar-thumb { background:var(--blue); border-radius:999px; }
.category-grid { display:flex; gap:10px; width:max-content; min-width:100%; }
.category-grid button { flex:0 0 145px; min-height:54px; padding:8px 12px; background:var(--card); color:white; border:1px solid #202c38; border-radius:8px; cursor:pointer; font-size:17px; transition:.2s; scroll-snap-align:start; }
.category-grid button:hover { border-color:var(--blue); transform:translateY(-4px); }
.category-grid span { display:block; font-size:11px; font-weight:700; margin-top:7px; white-space:nowrap; }
.products-section { background:#0b1016; }
.product-heading { display:flex; justify-content:space-between; align-items:end; }
select { background:#111923; color:white; border:1px solid #2b3947; padding:12px 15px; border-radius:5px; }
.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.product-card { overflow:hidden; background:var(--card); border:1px solid #202c38; border-radius:8px; transition:.25s; }
.product-card:hover { transform:translateY(-5px); border-color:var(--blue); }
.product-image { height:210px; display:flex; align-items:center; justify-content:center; background:#151d26; font-size:70px; overflow:hidden; }
.product-image img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .35s ease; }
.product-card:hover .product-image img { transform:scale(1.05); }
.product-info { padding:18px; }
.product-category { color:var(--blue); font-size:11px; font-weight:800; letter-spacing:1px; }
.product-name { font-size:17px; font-weight:800; margin:8px 0; }
.product-desc { color:var(--muted); font-size:12px; line-height:1.5; min-height:38px; }
.product-bottom { display:flex; justify-content:space-between; align-items:center; margin-top:16px; }
.price { font-weight:800; }
.detail-btn { border:1px solid var(--blue); color:var(--blue); padding:8px 11px; font-size:11px; font-weight:800; text-decoration:none; border-radius:4px; }
.contact { margin:60px 7%; padding:45px; border:1px solid #20313e; border-radius:10px; display:flex; align-items:center; justify-content:space-between; gap:30px; background:linear-gradient(110deg,#0e1821,#081016); }
.contact h2 { max-width:650px; margin-bottom:12px; }
.contact p:not(.tag) { color:var(--muted); max-width:600px; line-height:1.6; }
.whatsapp { white-space:nowrap; }
footer { padding:35px 7%; border-top:1px solid #1c2631; display:flex; justify-content:space-between; gap:20px; align-items:center; }
footer p { color:var(--muted); font-size:12px; }
.product-image-empty { padding:20px; background:linear-gradient(135deg,rgba(0,191,255,.08),transparent),#151d26; }
.product-image-empty span { color:var(--muted); font-size:12px; font-weight:800; letter-spacing:1px; text-align:center; }
.empty-products { grid-column:1/-1; color:var(--muted); padding:30px 0; }
.image-modal { position:fixed; inset:0; width:100%; height:100%; background:rgba(0,0,0,.92); display:none; justify-content:center; align-items:center; z-index:9999; cursor:zoom-out; padding:20px; }
.image-modal img { max-width:95%; max-height:95%; border-radius:10px; box-shadow:0 0 30px rgba(0,0,0,.5); }

@media (prefers-reduced-motion:reduce) { .hero-motor,.visual-glow { animation:none; } }
@media (max-width:900px) { .hero { grid-template-columns:1fr; padding:60px 7%; } .hero-visual { min-height:340px; margin-top:-20px; } .hero-motor { max-height:350px; } .product-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .header { padding:0 5%; } .brand-logo { max-width:145px; height:38px; } nav { display:none; position:absolute; top:72px; left:0; right:0; padding:20px; background:#080c12; flex-direction:column; } nav.show { display:flex; } .menu-btn { display:block; } .hero { min-height:500px; padding:52px 6% 35px; gap:18px; } h1 { font-size:clamp(50px,17vw,72px); } .hero-visual { min-height:275px; } .hero-motor { max-height:275px; } .visual-caption { bottom:0; right:auto; font-size:8px; } .section { padding:60px 5%; } .category-grid button { flex-basis:125px; min-height:50px; font-size:16px; } .product-grid { grid-template-columns:1fr 1fr; gap:10px; } .product-image { height:145px; font-size:48px; } .product-info { padding:12px; } .product-name { font-size:14px; } .product-desc { font-size:11px; } .product-bottom { display:block; } .detail-btn { display:inline-block; margin-top:10px; } .product-heading { display:block; } select { margin-top:20px; width:100%; } .contact { margin:30px 5%; padding:30px 20px; display:block; } .contact .btn { margin-top:25px; } footer { display:block; } footer p { margin-top:10px; } }

.hero{grid-template-columns:55% 45%}.hero-motor{max-height:380px;width:85%}.brand-logo{max-width:260px;height:60px}.hero-content{padding-right:30px}.floating-social{position:fixed;right:20px;bottom:20px;display:flex;flex-direction:column;gap:10px}.floating-social a{background:#111;padding:12px;border-radius:14px;color:#0bf;text-decoration:none;border:1px solid #0bf;}
.music-toggle{position:fixed;left:20px;bottom:20px;z-index:1000;width:46px;height:46px;border-radius:50%;border:1px solid var(--blue);background:#111;color:var(--blue);font-size:20px;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.35)}.music-toggle.playing{background:var(--blue);color:#001018}.music-toggle:hover{transform:translateY(-2px)}

/* ============================================================
   HERO BUTTONS: LEFT & RIGHT
   ============================================================ */
.hero-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.hero-actions .btn{min-width:165px;text-align:center}
.btn-outline{background:transparent;color:var(--blue);border:1px solid var(--blue)}
.btn-outline:hover{background:var(--blue);color:#001018}

/* ============================================================
   TRANSFORMER-STYLE WELCOME INTRO
   ============================================================ */
body.intro-active{overflow:hidden}
.welcome-intro{position:fixed;inset:0;z-index:20000;display:grid;place-items:center;overflow:hidden;background:#02050a;transition:opacity .7s ease,visibility .7s ease}
.welcome-intro.is-finished{opacity:0;visibility:hidden;pointer-events:none}
.intro-scanlines{position:absolute;inset:0;z-index:4;pointer-events:none;opacity:.18;background:repeating-linear-gradient(0deg,transparent 0 3px,rgba(0,191,255,.18) 4px)}
.intro-door{position:absolute;top:0;bottom:0;width:51%;z-index:2;background:linear-gradient(135deg,#111b25 0%,#03070c 48%,#162634 100%);box-shadow:inset 0 0 80px rgba(0,191,255,.15);transition:transform 1.35s cubic-bezier(.77,0,.18,1)}
.intro-door::before,.intro-door::after{content:"";position:absolute;inset:7% 8%;clip-path:polygon(12% 0,88% 0,100% 18%,100% 82%,88% 100%,12% 100%,0 82%,0 18%);border:1px solid rgba(0,191,255,.38);background:repeating-linear-gradient(135deg,rgba(0,191,255,.05) 0 2px,transparent 2px 15px)}
.intro-door-left{left:0;border-right:2px solid var(--blue);transform-origin:left center}
.intro-door-right{right:0;border-left:2px solid var(--blue);transform-origin:right center}
.welcome-intro.opening .intro-door-left{transform:translateX(-103%) skewX(-4deg)}
.welcome-intro.opening .intro-door-right{transform:translateX(103%) skewX(4deg)}
.intro-center{position:relative;z-index:5;text-align:center;padding:24px;filter:drop-shadow(0 0 22px rgba(0,191,255,.4));transition:opacity .45s ease,transform .45s ease}
.welcome-intro.opening .intro-center{opacity:0;transform:scale(1.18)}
.intro-kicker{margin-bottom:10px;color:#bceeff;font-size:11px;font-weight:800;letter-spacing:5px}
.intro-center h2{font-size:clamp(46px,8vw,110px);line-height:.83;color:white;text-shadow:0 0 12px rgba(0,191,255,.5)}
.intro-center h2 strong{color:var(--blue)}
.intro-loader{width:min(420px,72vw);height:4px;margin:28px auto 20px;overflow:hidden;background:rgba(255,255,255,.12);box-shadow:0 0 14px rgba(0,191,255,.25)}
.intro-loader i{display:block;width:100%;height:100%;background:var(--blue);transform-origin:left;animation:introLoad 2.5s ease forwards}
.skip-intro{padding:11px 18px;border:1px solid var(--blue);border-radius:4px;background:rgba(0,12,20,.72);color:var(--blue);font-weight:800;letter-spacing:1px;cursor:pointer}
.skip-intro:hover{background:var(--blue);color:#001018}
@keyframes introLoad{from{transform:scaleX(0)}to{transform:scaleX(1)}}

@media (max-width:600px){
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn{min-width:0;padding:14px 10px;font-size:13px}
  .intro-center h2{font-size:clamp(42px,15vw,72px)}
}
@media (prefers-reduced-motion:reduce){
  .intro-loader i{animation:none;transform:scaleX(1)}
  .intro-door,.intro-center{transition-duration:.01ms}
}
