/* ============================================
   Ferramentas Henning — Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy: #0c1830;
  --navy-light: #16295a;
  --navy-mid: #1c3468;
  --yellow: #f5c518;
  --yellow-dark: #d9a913;
  --black: #08090c;
  --white: #ffffff;
  --off-white: #f6f7fa;
  --gray-100: #eef0f4;
  --gray-300: #c7cbd6;
  --gray-500: #7d8494;
  --gray-700: #454b58;
  --shadow-sm: 0 2px 10px rgba(8,10,20,.08);
  --shadow-md: 0 10px 30px rgba(8,10,20,.14);
  --shadow-lg: 0 20px 60px rgba(8,10,20,.25);
  --radius: 14px;
  --container: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--navy);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.3px;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--navy);
}
p{ margin:0 0 1em; color:var(--gray-700); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-dark{ background:var(--navy); color:var(--white); }
.section-dark p{ color:var(--gray-300); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{ color:var(--white); }
.section-alt{ background:var(--off-white); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--yellow-dark);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:28px; height:2px;
  background:var(--yellow);
  display:inline-block;
}
.section-dark .eyebrow{ color:var(--yellow); }

.section-head{
  max-width:680px;
  margin:0 0 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,40px); }
.section-head p{ font-size:17px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  border:2px solid transparent;
  transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn-yellow{
  background:var(--yellow);
  color:var(--black);
  box-shadow:0 8px 24px rgba(245,197,24,.35);
}
.btn-yellow:hover{ background:var(--yellow-dark); transform:translateY(-2px); box-shadow:0 12px 28px rgba(245,197,24,.45); }
.btn-outline{
  border-color:rgba(255,255,255,.35);
  color:var(--white);
  background:transparent;
}
.btn-outline:hover{ border-color:var(--yellow); color:var(--yellow); transform:translateY(-2px); }
.btn-navy{
  background:var(--navy);
  color:var(--white);
}
.btn-navy:hover{ background:var(--navy-light); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 22px; font-size:13px; }

/* ============ HEADER ============ */
.topbar{
  background:var(--black);
  color:var(--gray-300);
  font-size:13px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:9px;
  padding-bottom:9px;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-item{ display:inline-flex; align-items:center; gap:7px; color:var(--gray-300); }
.topbar-item svg{ flex-shrink:0; color:var(--yellow); }
.topbar-left{ display:flex; gap:24px; flex-wrap:wrap; }
.topbar a:hover{ color:var(--yellow); }

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--navy);
  box-shadow:0 4px 20px rgba(0,0,0,.18);
}
.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:8px;
  padding-bottom:8px;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:104px; width:auto; }

.nav{ display:flex; align-items:center; gap:6px; }
.nav a{
  padding:10px 16px;
  font-family:'Oswald',sans-serif;
  font-weight:500;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--gray-300);
  border-radius:8px;
  transition:all .2s var(--ease);
  position:relative;
}
.nav a:hover{ color:var(--white); background:rgba(255,255,255,.06); }
.nav a.active{ color:var(--yellow); }

.header-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--white);
  padding:6px;
}

.account-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--white);
  font-family:'Oswald',sans-serif;
  font-size:13.5px;
  font-weight:500;
  padding:0 4px;
  transition:color .2s var(--ease);
  max-width:110px;
}
.account-link:hover{ color:var(--yellow); }
.account-link span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.cart-toggle{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.18);
  background:transparent;
  color:var(--white);
  transition:all .2s var(--ease);
  flex-shrink:0;
}
.cart-toggle:hover{ border-color:var(--yellow); color:var(--yellow); }
.cart-count{
  position:absolute; top:-6px; right:-6px;
  min-width:18px; height:18px; padding:0 4px;
  border-radius:999px;
  background:var(--yellow); color:var(--black);
  font-family:'Oswald',sans-serif; font-size:11px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}
.cart-count:empty{ display:none; }

/* ============ HERO ============ */
.hero{
  position:relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(245,197,24,.14), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0a1428 55%, var(--black) 100%);
  color:var(--white);
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.9), transparent 75%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  right:-10%; bottom:-30%;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(245,197,24,.16), transparent 65%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:96px 0 90px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
}
.hero h1{
  font-size:clamp(34px,5vw,58px);
  margin-bottom:20px;
  color:var(--white);
}
.hero h1 span{ color:var(--yellow); }
.hero-lead{
  font-size:18px;
  color:var(--gray-300);
  max-width:520px;
  margin-bottom:32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,auto);
  gap:32px;
}
.hero-stat b{
  display:block;
  font-family:'Oswald',sans-serif;
  font-size:32px;
  color:var(--yellow);
  line-height:1;
  margin-bottom:6px;
}
.hero-stat span{ font-size:13px; color:var(--gray-300); letter-spacing:.3px; }

.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-card{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(6px);
  border-radius:20px;
  padding:34px;
  width:100%;
  box-shadow:var(--shadow-lg);
}
.hero-card-logo{
  display:flex; justify-content:center; margin-bottom:22px;
}
.hero-card-logo img{ width:220px; filter:drop-shadow(0 10px 24px rgba(0,0,0,.5)); }
.hero-card-list{ display:flex; flex-direction:column; gap:14px; }
.hero-card-list li{
  display:flex; align-items:center; gap:12px;
  font-size:14.5px; color:var(--gray-300);
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-card-list li:last-child{ border-bottom:none; padding-bottom:0; }
.hero-card-list svg{ flex-shrink:0; color:var(--yellow); }

/* ============ MARQUEE / BRANDS STRIP ============ */
.strip{
  background:var(--yellow);
  color:var(--black);
  padding:16px 0;
  overflow:hidden;
}
.strip-track{
  display:flex;
  gap:56px;
  white-space:nowrap;
  animation:scrollx 22s linear infinite;
  width:max-content;
}
.strip-track span{
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:1px;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============ DEV BANNER (aviso de site modelo) ============ */
.dev-banner{
  background:var(--black);
  border-bottom:1px solid rgba(245,197,24,.3);
  padding:8px 0;
  overflow:hidden;
}
.dev-banner-track{
  display:flex;
  gap:44px;
  white-space:nowrap;
  animation:scrollx 20s linear infinite;
  width:max-content;
}
.dev-banner-track span{
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:11.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--yellow);
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* ============ CARDS: DIFERENCIAIS ============ */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

.feature-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:32px 26px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.feature-icon{
  width:56px; height:56px;
  border-radius:14px;
  background:linear-gradient(145deg,var(--navy),var(--navy-mid));
  display:flex; align-items:center; justify-content:center;
  color:var(--yellow);
  margin-bottom:20px;
}
.feature-card h3{ font-size:18px; margin-bottom:10px; color:var(--navy); }
.feature-card p{ font-size:14.5px; margin-bottom:0; }

/* ============ SERVICES LIST ============ */
.service-row{
  display:flex;
  align-items:flex-start;
  gap:20px;
  padding:26px 0;
  border-bottom:1px solid var(--gray-100);
}
.service-row:first-child{ padding-top:0; }
.service-row:last-child{ border-bottom:none; }
.service-num{
  font-family:'Oswald',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--white);
  background:var(--navy);
  width:38px; height:38px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.service-row h3{ font-size:17px; margin-bottom:6px; }
.service-row p{ font-size:14.5px; margin-bottom:0; }

/* ============ PRODUCT / MACHINE CARDS ============ */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.prod-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
  display:flex;
  flex-direction:column;
}
.prod-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.prod-media{
  height:170px;
  background:
    radial-gradient(120px 90px at 75% 20%, rgba(245,197,24,.18), transparent 70%),
    linear-gradient(150deg,var(--navy),#182c58);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.prod-media .tag{
  position:absolute; top:14px; left:14px;
  background:var(--yellow);
  color:var(--black);
  font-family:'Oswald',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  padding:5px 10px;
  border-radius:999px;
  text-transform:uppercase;
}
.prod-media svg{ color:var(--yellow); width:64px; height:64px; opacity:.9; }
.prod-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.prod-body h3{ font-size:16px; margin-bottom:0; line-height:1.3; color:var(--navy); }
.prod-body p{ font-size:13.5px; margin-bottom:0; flex:1; }
.prod-foot{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px;
}
.prod-code{ font-size:12px; color:var(--gray-500); font-family:'Oswald',sans-serif; letter-spacing:.5px;}
.link-cta{
  font-family:'Oswald',sans-serif;
  font-size:13px; font-weight:600; letter-spacing:.4px;
  color:var(--navy);
  display:inline-flex; align-items:center; gap:6px;
  text-transform:uppercase;
}
.link-cta svg{ transition:transform .2s var(--ease); }
.prod-card:hover .link-cta svg{ transform:translateX(4px); }

/* Machine card status */
.status-dot{ width:8px; height:8px; border-radius:50%; background:#22c55e; display:inline-block; margin-right:6px; }

/* ============ TIMELINE (Sobre) ============ */
.timeline{ position:relative; padding-left:36px; }
.timeline::before{
  content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px;
  background:linear-gradient(var(--yellow),var(--navy-mid));
}
.timeline-item{ position:relative; padding-bottom:40px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-36px; top:2px;
  width:20px; height:20px; border-radius:50%;
  background:var(--yellow);
  border:4px solid var(--white);
  box-shadow:0 0 0 2px var(--navy-mid);
}
.timeline-item b{
  font-family:'Oswald',sans-serif;
  color:var(--navy);
  display:block;
  font-size:15px;
  letter-spacing:.3px;
  margin-bottom:4px;
}
.timeline-item p{ margin-bottom:0; font-size:14.5px; }

/* ============ STATS BAND ============ */
.stats-band{
  background:var(--navy);
  color:var(--white);
  padding:56px 0;
}
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stats-grid b{
  display:block;
  font-family:'Oswald',sans-serif;
  font-size:38px;
  color:var(--yellow);
  margin-bottom:6px;
}
.stats-grid span{ font-size:13.5px; color:var(--gray-300); letter-spacing:.3px; }

/* ============ CTA BANNER ============ */
.cta-banner{
  background:linear-gradient(135deg,var(--navy) 0%,#132a5e 100%);
  border-radius:24px;
  padding:56px 60px;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::after{
  content:'';
  position:absolute; right:-60px; top:-60px;
  width:260px; height:260px;
  background:radial-gradient(circle, rgba(245,197,24,.22), transparent 70%);
}
.cta-banner h2{ font-size:clamp(24px,3vw,32px); margin-bottom:10px; position:relative; z-index:1; color:var(--white);}
.cta-banner p{ margin-bottom:0; color:var(--gray-300); position:relative; z-index:1; }
.cta-banner-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* ============ CONTACT ============ */
.contact-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:flex-start; }
.contact-info-card{
  background:var(--navy);
  color:var(--white);
  border-radius:var(--radius);
  padding:36px;
}
.contact-info-card h3{ color:var(--white); font-size:20px; }
.contact-line{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.contact-line:last-child{ border-bottom:none; }
.contact-line svg{ color:var(--yellow); flex-shrink:0; margin-top:2px; }
.contact-line b{ display:block; font-size:13px; color:var(--gray-300); font-weight:500; margin-bottom:2px; text-transform:uppercase; letter-spacing:.4px;}
.contact-line a, .contact-line span{ font-size:15px; color:var(--white); }
.contact-line a:hover{ color:var(--yellow); }
.social-row{ display:flex; gap:10px; margin-top:24px; }
.social-row a{
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s var(--ease);
}
.social-row a:hover{ background:var(--yellow); color:var(--black); }

.form-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-size:13px; font-weight:600;
  margin-bottom:7px; color:var(--navy);
  font-family:'Oswald',sans-serif; letter-spacing:.3px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding:13px 16px;
  border:1.5px solid var(--gray-100);
  border-radius:10px;
  font-family:'Inter',sans-serif;
  font-size:14.5px;
  background:var(--off-white);
  transition:border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--yellow-dark); background:var(--white);
}
.field textarea{ resize:vertical; min-height:110px; }

.map-frame{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--gray-100);
  height:340px;
  margin-top:28px;
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ============ FOOTER ============ */
.footer{
  background:var(--black);
  color:var(--gray-300);
  padding-top:70px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand img{ height:48px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; max-width:280px; color:var(--gray-300); }
.footer h4{
  color:var(--white); font-size:14px; letter-spacing:1px;
  margin-bottom:18px;
}
.footer-links li{ margin-bottom:11px; }
.footer-links a{ font-size:14px; color:var(--gray-300); transition:color .2s; }
.footer-links a:hover{ color:var(--yellow); }
.footer-contact li{
  display:flex; gap:10px; font-size:14px; margin-bottom:14px; color:var(--gray-300);
}
.footer-contact svg{ color:var(--yellow); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; font-size:13px; color:var(--gray-500); flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color:var(--gray-500); }
.footer-bottom a:hover{ color:var(--yellow); }

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp{
  position:fixed;
  right:26px; bottom:26px;
  z-index:200;
  width:60px; height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,.45);
  animation:pulse 2.4s infinite;
}
.float-whatsapp:hover{ transform:scale(1.06); }
@keyframes pulse{
  0%{ box-shadow:0 10px 26px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,.5);}
  70%{ box-shadow:0 10px 26px rgba(37,211,102,.45),0 0 0 16px rgba(37,211,102,0);}
  100%{ box-shadow:0 10px 26px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,0);}
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header{
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(245,197,24,.14), transparent 60%),
    linear-gradient(160deg,var(--navy),var(--black));
  color:var(--white);
  padding:70px 0 60px;
  position:relative;
  overflow:hidden;
}
.page-header::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.9), transparent 85%);
}
.breadcrumb{
  position:relative; z-index:1;
  display:flex; gap:8px; align-items:center;
  font-size:13px; color:var(--gray-300);
  margin-bottom:14px;
  text-transform:uppercase; letter-spacing:.5px;
  font-family:'Oswald',sans-serif;
}
.breadcrumb .sep{ color:var(--yellow); }
.page-header h1{ position:relative; z-index:1; font-size:clamp(30px,4.5vw,46px); margin-bottom:12px; color:var(--white); }
.page-header p{ position:relative; z-index:1; max-width:600px; font-size:16.5px; color:var(--gray-300); margin-bottom:0; }

/* Filter pills */
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.pill{
  padding:9px 18px;
  border-radius:999px;
  border:1.5px solid var(--gray-100);
  font-family:'Oswald',sans-serif;
  font-size:13px; font-weight:600; letter-spacing:.3px;
  text-transform:uppercase;
  color:var(--navy);
  background:var(--white);
  transition:all .2s var(--ease);
}
.pill:hover, .pill.active{ background:var(--navy); color:var(--white); border-color:var(--navy); }

/* Value/step cards */
.step-card{ text-align:center; padding:0 12px; }
.step-num{
  width:64px; height:64px; margin:0 auto 18px;
  border-radius:50%;
  background:var(--off-white);
  border:2px dashed var(--gray-300);
  display:flex; align-items:center; justify-content:center;
  font-family:'Oswald',sans-serif; font-size:22px; font-weight:700;
  color:var(--navy);
}
.step-card h3{ font-size:16px; }
.step-card p{ font-size:14px; }

/* Utility */
.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }
.mb-0{ margin-bottom:0; }
.badge-yellow{
  display:inline-block;
  background:rgba(245,197,24,.15);
  color:var(--yellow-dark);
  font-family:'Oswald',sans-serif;
  font-size:12px; font-weight:700; letter-spacing:.5px;
  padding:6px 12px; border-radius:999px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-dark .badge-yellow{ background:rgba(245,197,24,.15); color:var(--yellow); }

.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============ CARRINHO (drawer) ============ */
.cart-overlay, .checkout-overlay{
  position:fixed; inset:0;
  background:rgba(8,10,20,.55);
  opacity:0; pointer-events:none;
  transition:opacity .25s var(--ease);
  z-index:300;
}
.cart-overlay.open, .checkout-overlay.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:-440px;
  width:min(420px,92vw); height:100vh;
  background:var(--white);
  z-index:310;
  box-shadow:-20px 0 50px rgba(0,0,0,.25);
  transition:right .3s var(--ease);
  display:flex; flex-direction:column;
}
.cart-drawer.open{ right:0; }
.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 24px; border-bottom:1px solid var(--gray-100);
}
.cart-drawer-head h3{ margin:0; font-size:18px; }
.cart-close, .checkout-close{ background:none; border:none; color:var(--navy); cursor:pointer; padding:6px; }
.cart-drawer-body{ flex:1; overflow-y:auto; padding:10px 24px; }
.cart-drawer-foot{ padding:20px 24px; border-top:1px solid var(--gray-100); }

.cart-item{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--gray-100); }
.cart-item:last-child{ border-bottom:none; }
.cart-item-media{
  width:64px; height:64px; border-radius:10px;
  background:var(--off-white);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0;
}
.cart-item-media img{ width:100%; height:100%; object-fit:cover; }
.cart-item-info{ flex:1; min-width:0; }
.cart-item-info h4{ font-family:'Oswald',sans-serif; font-size:14px; margin:0 0 4px; color:var(--navy); }
.cart-item-price{ font-size:12.5px; color:var(--gray-500); }
.cart-item-actions{ display:flex; align-items:center; gap:14px; margin-top:8px; }
.cart-item-qty{ display:flex; align-items:center; border:1px solid var(--gray-100); border-radius:8px; }
.cart-item-qty button{ width:26px; height:26px; background:none; border:none; cursor:pointer; font-family:'Oswald',sans-serif; font-size:14px; }
.cart-item-qty span{ width:24px; text-align:center; font-size:13px; }
.cart-item-remove{ font-size:11.5px; color:var(--gray-500); background:none; border:none; cursor:pointer; text-decoration:underline; }
.cart-item-total{ font-family:'Oswald',sans-serif; font-weight:600; font-size:13.5px; color:var(--navy); white-space:nowrap; }

.cart-empty{ text-align:center; padding:60px 10px; color:var(--gray-500); font-size:14.5px; }

.cart-summary-row{ display:flex; justify-content:space-between; font-size:14px; color:var(--gray-700); margin-bottom:6px; }
.cart-summary-total{ display:flex; justify-content:space-between; font-family:'Oswald',sans-serif; font-weight:700; font-size:18px; color:var(--navy); margin:10px 0 16px; }

/* ============ CHECKOUT (modal/popup) ============ */
.checkout-modal{
  position:fixed; inset:0; z-index:320;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .25s var(--ease);
}
.checkout-modal.open{ opacity:1; pointer-events:auto; }
.checkout-modal-inner{
  background:var(--white);
  border-radius:var(--radius);
  max-width:560px; width:100%;
  max-height:90vh; overflow-y:auto;
  padding:36px;
  position:relative;
}
.checkout-close{ position:absolute; top:18px; right:18px; }

.checkout-steps-indicator{ display:flex; gap:8px; margin-bottom:24px; }
.checkout-steps-indicator span{ flex:1; height:4px; border-radius:999px; background:var(--gray-100); }
.checkout-steps-indicator span.done, .checkout-steps-indicator span.active{ background:var(--yellow); }

.frete-option{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 16px; border:1.5px solid var(--gray-100); border-radius:10px;
  margin-bottom:10px; cursor:pointer;
}
.frete-option.selected{ border-color:var(--yellow-dark); background:rgba(245,197,24,.08); }
.frete-note{ font-size:12px; color:var(--gray-500); margin-top:4px; margin-bottom:0; }
.checkout-summary-line{ display:flex; justify-content:space-between; font-size:14px; color:var(--gray-700); margin-bottom:6px; }
.checkout-total-line{ display:flex; justify-content:space-between; font-family:'Oswald',sans-serif; font-weight:700; font-size:19px; color:var(--navy); margin:14px 0 20px; }
.checkout-error{ background:#fde8e8; color:#b42318; border-radius:10px; padding:12px 14px; font-size:13.5px; margin-bottom:16px; }

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:420px; margin:0 auto; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:860px){
  .topbar-left{ gap:14px; }
  .topbar .container{ font-size:12px; }
  .brand img{ height:72px; }
  .nav{
    position:fixed; top:0; right:-100%; height:100vh; width:min(320px,84vw);
    background:var(--navy); flex-direction:column; align-items:flex-start;
    padding:100px 28px 28px; gap:2px; transition:right .3s var(--ease);
    box-shadow:-20px 0 50px rgba(0,0,0,.35);
  }
  .nav.open{ right:0; }
  .nav a{ width:100%; padding:14px 12px; font-size:16px; }
  .nav-toggle{ display:block; }
  .header-cta .btn span{ display:none; }
  .account-link span{ display:none; }
  .hero-stats{ grid-template-columns:repeat(3,1fr); gap:16px; }
  .hero-stat b{ font-size:24px; }
  .grid-3, .grid-2, .card-grid{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; padding:40px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; padding-bottom:32px;}
}
@media (max-width:560px){
  .grid-4{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .section{ padding:60px 0; }
  .hero-inner{ padding:56px 0 60px; }
}
