/* ============================================================
   RESET & TOKENS
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --bg-card:   #1a1a1a;
  --green:     #2ecc71;
  --green-dim: #1fa854;
  --green-glow:rgba(46,204,113,0.18);
  --green-line:rgba(46,204,113,0.25);
  --white:     #ffffff;
  --off-white: #e8e8e8;
  --gray:      #888888;
  --gray-dim:  #444444;
  --wa:        #25d366;
  --wa-dark:   #128c7e;
  --text:      #d4d4d4;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 30px rgba(0,0,0,0.5);
  --shadow-g:  0 0 30px rgba(46,204,113,0.12);
  --tr:        0.3s ease;
  --max:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ============================================================
   TYPE
============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 1px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 1px;
}

h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-green { background: var(--green); color: #000; }
.btn-green:hover {
  background: #3ddc80;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46,204,113,0.4);
}

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green-line);
}
.btn-outline:hover {
  border-color: var(--green);
  background: var(--green-glow);
}

/* ============================================================
   FLOATING WA
============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--tr);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================================
   HEADER
============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,204,113,0.15);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); }
.nav-logo-text .sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--tr);
}
.nav-links a:hover { color: var(--green); }

.nav-cta .btn { padding: 10px 20px; font-size: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/0b9f6c_91dd0afe31dd43d3b15eac495d7b8225~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/0b9f6c_91dd0afe31dd43d3b15eac495d7b8225~mv2.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.6) 100%);
}

#hero::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--green);
  box-shadow: 0 0 30px var(--green), 0 0 60px rgba(46,204,113,0.3);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0 70px;
}

.hero-text .eyebrow { font-size: 12px; }
h1 span { color: var(--green); }

.hero-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 500px;
  margin: 20px 0 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--gray-dim); }
.stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--green); line-height: 1; }
.stat .lbl { font-size: 11px; color: var(--gray); letter-spacing: 0.5px; margin-top: 3px; }

/* Social proof bar */
.hero-proof-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.proof-stars { display: flex; gap: 2px; }
.proof-stars .star { color: #f59e0b; font-size: 16px; line-height: 1; }
.proof-text { font-size: 13px; color: var(--gray); }
.proof-text strong { color: var(--white); }

/* Main CTA button */
.hero-cta-main {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #000;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--tr);
  margin-bottom: 18px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(46,204,113,0.35);
}
.hero-cta-main strong { display: block; font-size: 16px; }
.hero-cta-main small { display: block; font-size: 11px; font-weight: 500; opacity: 0.7; margin-top: 2px; }
.hero-cta-main:hover {
  background: #3ddc80;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46,204,113,0.5);
}

/* Trust chips */
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,0.08);
  border: 1px solid var(--green-line);
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}
.trust-chip svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Panel header */
.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-dim);
}
.panel-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.25);
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Panel highlight */
.panel-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(46,204,113,0.1);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.panel-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panel-highlight-icon svg { width: 22px; height: 22px; stroke: #000; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.panel-highlight-title { font-size: 14px; font-weight: 700; color: var(--white); }
.panel-highlight-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }

.panel-reassurance { text-align: center; font-size: 11px; color: var(--gray); margin-top: 10px; letter-spacing: 0.3px; }

/* Hero panel */
.hero-panel {
  background: rgba(22,22,22,0.85);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-g);
}
.hero-panel-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-dim);
}

.panel-items { display: flex; flex-direction: column; gap: 14px; }
.panel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(46,204,113,0.05);
  border: 1px solid transparent;
  transition: var(--tr);
}
.panel-item:hover { border-color: var(--green-line); background: rgba(46,204,113,0.09); }

.panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(46,204,113,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panel-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.panel-item h4 { font-size: 13px; color: var(--white); margin-bottom: 2px; }
.panel-item p { font-size: 12px; color: var(--gray); }

.panel-cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--tr);
}
.panel-cta:hover { background: #3ddc80; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(46,204,113,0.4); }

/* ============================================================
   SECTION BASE
============================================================ */
.sec { padding: 88px 0; }
.sec-alt { background: var(--bg-2); }
.sec-dark { background: var(--bg-3); }

.sec-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.sec-head p { font-size: 15px; color: var(--gray); margin-top: 12px; line-height: 1.75; }
.sec-head h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* scroll offset for fixed header */
section[id] { scroll-margin-top: 66px; }

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

.card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--tr);
}
.card:hover { border-color: var(--green-line); box-shadow: var(--shadow-g); transform: translateY(-4px); }

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(46,204,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--green-line);
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   STEPS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  row-gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-line) 100%);
}

.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(46,204,113,0.4);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   GALERIA
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #1e1e1e;
  transition: var(--tr);
}
.gallery-item:hover { border-color: var(--green-line); box-shadow: var(--shadow-g); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:first-child { grid-column: span 2; }
.gallery-item:first-child img { height: 440px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-label {
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

/* ============================================================
   LOJAS
============================================================ */
.lojas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.loja-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--tr);
  border-top: 3px solid var(--green);
}
.loja-card:hover { border-color: var(--green); border-top-color: var(--green); box-shadow: var(--shadow-g); transform: translateY(-4px); }

.loja-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.loja-card h3 { font-size: 20px; color: var(--white); margin-bottom: 20px; }
.loja-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.loja-detail svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }

.loja-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px;
  background: var(--wa);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--tr);
}
.loja-btn:hover { background: var(--wa-dark); transform: translateY(-2px); }
.loja-btn svg { width: 18px; height: 18px; fill: #fff; }

/* ============================================================
   CTA STRIP
============================================================ */
#cta {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(46,204,113,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { font-size: 16px; color: var(--gray); max-width: 520px; margin: 0 auto 40px; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-tel { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; font-size: 14px; color: var(--gray); }
.cta-tel svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.cta-tel a { color: var(--green); font-weight: 700; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: #060606; border-top: 1px solid #1a1a1a; padding: 44px 0 28px; }

.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid #1a1a1a; flex-wrap: wrap; }

.footer-brand .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); }
.footer-brand .brand-sub { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.footer-brand p { font-size: 12px; color: var(--gray); max-width: 240px; line-height: 1.6; }

.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--gray); transition: var(--tr); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col address { font-style: normal; }
.footer-addr-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 12px; color: var(--gray); }
.footer-addr-item svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #444; }
.footer-bottom a { color: var(--green); font-weight: 600; transition: var(--tr); }
.footer-bottom a:hover { color: #3ddc80; }

/* ============================================================
   ENTRANCE ANIMATIONS
============================================================ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft  { from { opacity: 0; transform: translateX(32px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes scaleUp  { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; }
.reveal.visible        { animation: fadeUp    0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal-left.visible   { animation: slideRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal-right.visible  { animation: slideLeft  0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal-scale.visible  { animation: scaleUp    0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

.delay-1 { animation-delay: 0.08s !important; }
.delay-2 { animation-delay: 0.16s !important; }
.delay-3 { animation-delay: 0.24s !important; }
.delay-4 { animation-delay: 0.32s !important; }
.delay-5 { animation-delay: 0.40s !important; }

.hero-proof-bar { animation: fadeIn    0.6s ease both; animation-delay: 0.1s; }
.hero-text h1   { animation: slideRight 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.2s; }
.hero-sub       { animation: fadeUp    0.6s ease both; animation-delay: 0.35s; }
.hero-cta-main  { animation: fadeUp    0.6s ease both; animation-delay: 0.48s; }
.hero-trust-row { animation: fadeUp    0.5s ease both; animation-delay: 0.58s; }
.hero-panel     { animation: slideLeft 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero-proof-bar, .hero-text h1, .hero-sub,
  .hero-cta-main, .hero-trust-row, .hero-panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    border-top: 1px solid #1e1e1e;
    padding: 24px 20px;
    gap: 4px;
    align-items: flex-start;
    overflow-y: auto;
  }
  header.open .nav-links a { font-size: 16px; padding: 14px 16px; width: 100%; border-radius: 8px; }
  header.open .nav-cta {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: var(--bg-2);
    border-top: 1px solid #1e1e1e;
  }
  header.open .nav-cta .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:first-child img, .gallery-item img { height: 260px; }
  .gallery-overlay { opacity: 1; }

  .lojas-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }

  .hero-cta-main { max-width: 100%; }
  .hero-trust-row { gap: 6px; }
  .trust-chip { font-size: 11px; padding: 5px 10px; }
  .hero-proof-bar { flex-wrap: wrap; }
  .sec { padding: 60px 0; }
  #cta { padding: 70px 0; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; }
}
