:root {
  --navy-950: #020b13;
  --navy-900: #031323;
  --navy-800: #08253d;
  --blue: #00a8e8;
  --blue-bright: #4bc8f7;
  --steel: #b8c4cb;
  --mist: #e9f0f3;
  --white: #f8fbfc;
  --ink: #07131c;
  --line: rgba(7, 19, 28, .14);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; background: white; padding: 12px 18px; border-radius: 4px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  background: linear-gradient(180deg, rgba(2,11,19,.92), rgba(2,11,19,.18));
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(2,11,19,.96); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.header-inner { width: min(calc(100% - 40px), var(--max)); height: 86px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 212px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 650; }
nav > a:not(.nav-cta) { position: relative; color: rgba(255,255,255,.82); }
nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .2s ease; }
nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 3px; }
.nav-cta:hover { color: var(--navy-950); background: white; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 12px; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 3px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; transition: .2s ease; }

.hero { min-height: 780px; height: 100vh; position: relative; isolation: isolate; color: white; background: var(--navy-950); overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: -3; overflow: hidden; background: radial-gradient(circle at 79% 49%, rgba(0,168,232,.25), transparent 25%), linear-gradient(115deg, var(--navy-950), #061c30 58%, #04233c); }
.hero-image::before { content: ""; position: absolute; z-index: 1; right: 7vw; top: 50%; width: clamp(360px, 38vw, 560px); aspect-ratio: 1; background: url("assets/supercubo-face-hd-clean.png?v=4") center / contain no-repeat; filter: drop-shadow(0 0 24px rgba(0,168,232,.14)); transform: translateY(-50%); }
.hero-image::after { content: ""; position: absolute; z-index: 0; inset: 0; opacity: .2; background-image: linear-gradient(30deg, transparent 45%, rgba(0,168,232,.2) 45% 55%, transparent 55%), linear-gradient(150deg, transparent 45%, rgba(75,200,247,.1) 45% 55%, transparent 55%); background-size: 150px 260px; mask-image: linear-gradient(90deg, transparent 34%, black 72%); }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(2,11,19,.99) 0%, rgba(2,11,19,.91) 37%, rgba(2,11,19,.22) 68%, rgba(2,11,19,.06) 100%), linear-gradient(0deg, rgba(2,11,19,.62), transparent 42%); }
.hero-grid { min-height: 100%; display: grid; grid-template-columns: minmax(0, 2fr) minmax(240px, .72fr); align-items: center; gap: 80px; padding-top: 92px; padding-bottom: 94px; }
.hero-copy { max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--blue-bright); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #0879a5; }
h1, h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; letter-spacing: .01em; line-height: .94; font-weight: 900; }
h1 { max-width: 900px; font-size: clamp(4rem, 8vw, 7.6rem); }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 620px; margin: 28px 0 34px; color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.5vw, 1.17rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; font-size: .91rem; font-weight: 800; transition: transform .2s ease, color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--blue-bright); }
.button-primary:hover { background: white; }
.button-ghost { color: white; border-color: rgba(255,255,255,.35); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-note { align-self: end; margin-bottom: 20px; padding: 22px 0 0 22px; border-top: 1px solid rgba(255,255,255,.35); border-left: 1px solid rgba(255,255,255,.18); }
.hero-note .note-index { color: var(--blue-bright); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.hero-note p { margin: 10px 0 0; color: rgba(255,255,255,.75); font-size: .92rem; }
.hero-rail { position: absolute; bottom: 0; left: 0; right: 0; min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.14); background: rgba(2,11,19,.72); backdrop-filter: blur(8px); text-transform: uppercase; letter-spacing: .17em; font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.68); }
.hero-rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.3fr .65fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(3rem, 6vw, 5.4rem); }
.section-heading > p:last-child { margin: 0 0 4px; color: #56636d; }
.segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.segment-card { min-height: 380px; position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; padding: 26px 26px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: background .25s ease, color .25s ease, transform .25s ease; }
.segment-card:hover { z-index: 2; color: white; background: var(--navy-800); transform: translateY(-7px); }
.segment-card::before { content: ""; position: absolute; z-index: -1; top: 42px; left: 10px; right: 10px; height: 242px; background-position: center; background-repeat: no-repeat; background-size: contain; opacity: .2; transition: opacity .25s ease, transform .25s ease; }
.segment-card:hover::before { opacity: .42; transform: scale(1.04); }
.nautica-card::before { background-image: url("assets/categoria-nautica-v2.png"); }
.tools-card::before { background-image: url("assets/categoria-ferramentas-v3.png"); }
.automotive-card::before { background-image: url("assets/categoria-automotiva-v2.png"); }
.utilities-card::before { background-image: url("assets/categoria-utilidades-v2.png"); }
.card-top { display: flex; justify-content: space-between; color: #82909a; font-size: .75rem; font-weight: 800; }
.segment-card:hover .card-top { color: var(--blue-bright); }
.card-icon { width: 78px; height: 78px; display: grid; place-items: center; margin: 52px 0 auto; color: var(--blue); border: 1px solid rgba(0,168,232,.32); border-radius: 50%; font-size: 2.3rem; line-height: 1; }
.segment-card h3 { margin: auto 0 10px; font-size: 1.28rem; line-height: 1.15; }
.segment-card p { min-height: 4.5em; margin: 0; color: #687681; font-size: .92rem; }
.segment-card:hover p { color: rgba(255,255,255,.66); }

.about { position: relative; isolation: isolate; overflow: hidden; color: white; background: var(--navy-900); }
.about-pattern { position: absolute; inset: 0; z-index: -1; opacity: .25; background-image: linear-gradient(30deg, transparent 45%, rgba(0,168,232,.25) 45% 55%, transparent 55%), linear-gradient(150deg, transparent 45%, rgba(75,200,247,.12) 45% 55%, transparent 55%); background-size: 120px 210px; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 100px; }
.about-mark { aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.18); background: radial-gradient(circle, rgba(0,168,232,.22), transparent 65%); }
.about-mark img { width: 78%; filter: drop-shadow(0 12px 28px rgba(0,168,232,.2)); }
.about-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); }
.about-values div { padding: 22px; background: var(--navy-900); }
.about-values strong { display: block; margin-bottom: 7px; color: var(--blue-bright); font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }
.about-values span { color: rgba(255,255,255,.62); font-size: .82rem; }

.stores { background: #eef3f5; }
.section-heading.centered { display: flex; align-items: center; flex-direction: column; text-align: center; }
.section-heading.centered .eyebrow { margin-bottom: 0; }
.section-heading.centered h2 { max-width: 900px; }
.store-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.store-card { min-height: 220px; display: flex; align-items: end; justify-content: space-between; padding: 34px; color: white; border-radius: 4px; overflow: hidden; position: relative; isolation: isolate; }
.store-card::before { content: ""; position: absolute; width: 320px; height: 320px; right: -140px; top: -160px; z-index: -1; border: 70px solid rgba(255,255,255,.13); transform: rotate(45deg); transition: transform .35s ease; }
.store-card:hover::before { transform: rotate(60deg) scale(1.2); }
.store-card.shopee { background: #e7532c; }
.store-card.mercado { color: #10296e; background: #ffe600; }
.store-card div span { display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; opacity: .72; }
.store-card strong { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.store-arrow { font-size: 2.2rem; }

.contact { padding: 110px 0; color: white; background: var(--blue); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.contact .eyebrow { color: var(--navy-900); }
.contact h2 { color: var(--navy-950); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #07324a; }
.button-light { margin-top: 18px; color: var(--navy-950); background: white; }
.contact-details { border-top: 2px solid var(--navy-900); }
.detail-row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid rgba(3,19,35,.32); }
.detail-row > span { color: #0b4764; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.detail-row a, .detail-row p { margin: 0; color: var(--navy-950); font-weight: 700; }
.detail-row a:hover { text-decoration: underline; }

footer { padding: 34px 0; color: rgba(255,255,255,.58); background: var(--navy-950); font-size: .78rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-grid img { width: 152px; }
.footer-grid a { justify-self: end; color: white; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; align-items: center; gap: 9px; padding: 13px 17px; color: #052d18; background: #4beba0; box-shadow: 0 12px 35px rgba(0,0,0,.28); border-radius: 999px; font-size: .84rem; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  nav { position: fixed; inset: 86px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: rgba(2,11,19,.98); transform: translateX(100%); transition: transform .25s ease; }
  nav.open { transform: translateX(0); }
  nav a { padding: 20px 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .hero-image { opacity: 1; }
  .hero-image::before { right: -18vw; width: 82vw; height: auto; opacity: .56; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,11,19,.98), rgba(2,11,19,.65) 72%, rgba(2,11,19,.25)); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading .eyebrow { margin-bottom: 0; }
  .segment-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-mark { max-width: 470px; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 700px) {
  .container, .header-inner { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { height: 76px; }
  .brand img { width: 174px; }
  nav { inset: 76px 0 0; }
  .hero { min-height: 720px; }
  .hero-grid { padding-top: 100px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .hero-lead { max-width: 92%; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .hero-rail { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .section { padding: 82px 0; }
  .section-heading h2, .about h2, .contact h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .segment-grid { grid-template-columns: 1fr; }
  .segment-card { min-height: 310px; }
  .segment-card p { min-height: 0; }
  .card-icon { margin-top: 32px; }
  .about-values { grid-template-columns: 1fr; }
  .store-links, .contact-grid { grid-template-columns: 1fr; }
  .store-card { min-height: 180px; }
  .contact { padding: 82px 0; }
  .detail-row { grid-template-columns: 86px 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid a { justify-self: center; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { width: 50px; height: 50px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
