
/* ── LARGURA 100% GARANTIDA — sem scroll lateral em mobile ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { overflow-x: hidden; }
header, nav, .trust-bar, .mobile-nav { width: 100%; left: 0; right: 0; }
.sec-dark, .sec-gray, .sec-light, footer { width: 100%; }
.cr-wrap, .cr-slide { width: 100%; }
img, video, iframe, table { max-width: 100%; }
/* ═══════════════════════════════════════════
   MOBILE FIRST — RN 3D MAX
   ══════════════════════════════════════════ */

/* Reset base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: #0A0D16; color: #CBD5E1; line-height: 1.6; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container responsivo */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 1000; background: #0A0D16; border-bottom: 1px solid #1C2235; box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; gap: 12px; padding: 10px 16px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.search-wrap { flex: 1; display: flex; min-width: 0; }
.search-wrap input { flex: 1; padding: 10px 14px; background: #141828; border: 1.5px solid #1C2235; border-right: none; border-radius: 8px 0 0 8px; font-size: 14px; color: #E8F0FF; outline: none; min-width: 0; }
.search-wrap input::placeholder { color: #3D5166; }
.search-wrap input:focus { border-color: #64B5F6; }
.search-btn { padding: 10px 16px; background: #2979FF; border-radius: 0 8px 8px 0; color: #fff; font-size: 14px; font-weight: 600; white-space: nowrap; transition: background .2s; }
.search-btn:hover { background: #1565C0; }
.hdr-actions { display: flex; gap: 8px; flex-shrink: 0; }
.hdr-btn { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #141828; border: 1.5px solid #1C2235; border-radius: 8px; font-size: 13px; color: #90A4AE; transition: all .2s; position: relative; }
.hdr-btn:hover { border-color: #64B5F6; color: #EEF4FF; }
.hdr-badge { position: absolute; top: -6px; right: -6px; background: #2979FF; color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; padding: 8px; color: #90A4AE; font-size: 22px; }

/* Header mobile */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .logo-img { height: 40px; }
  .hdr-actions .hdr-btn span { display: none; }
  .hdr-btn { padding: 9px; }
  .search-wrap { order: 3; width: 100%; flex: none; }
}
@media (max-width: 480px) {
  .hamburger { display: flex; }
}

/* ── NAV DESKTOP — esconde em mobile ── */
nav { background: #FFFFFF; border-bottom: 1px solid #E2E8F0; position: relative; }
@media (max-width: 768px) {
  nav { display: none; }
}
.nav-list { display: flex; gap: 10px; padding: 12px 16px; white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-link { display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 24px; font-size: 13px; font-weight: 600; color: #1565C0; background: #fff; border: 1.5px solid #BBDEFB; transition: all .2s; flex-shrink: 0; }
.nav-link svg { stroke: #1565C0; }
.nav-link:hover, .nav-link.active { background: #1565C0; color: #fff; border-color: #1565C0; }
.nav-link:hover svg, .nav-link.active svg { stroke: #fff; }
.nav-link.promo { color: #EA580C; border-color: #FED7AA; }
.nav-link.promo svg { stroke: #EA580C; }
.nav-link.promo:hover, .nav-link.promo.active { background: #EA580C; color: #fff; border-color: #EA580C; }
.nav-link.promo:hover svg, .nav-link.promo.active svg { stroke: #fff; }
.nav-link svg { flex-shrink: 0; width: 16px; height: 16px; }

/* ── NAV DROPDOWN (Categorias) ── */
.nav-dropdown { position: relative; flex-shrink: 0; }
.nav-link-dropdown { cursor: pointer; font-family: inherit; }
.nav-caret { transition: transform .2s; margin-left: 2px; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: fixed; top: 0; left: 0;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  min-width: 230px; padding: 8px; z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, visibility .18s, transform .18s;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: #2d3748;
  text-decoration: none; transition: background .15s; white-space: nowrap;
}
.nav-dropdown-item:hover { background: #EFF6FF; color: #1565C0; }
.nav-dropdown-item img { flex-shrink: 0; }
.nav-dropdown-all { color: #1565C0; font-weight: 700; border-top: 1px solid #EDF2F7; margin-top: 4px; padding-top: 11px; }
@media (max-width: 768px) {
  .nav-dropdown-menu { left: auto; right: 0; }
}

/* ── TRUST BAR ── */
.trust-bar { background: #080B15; border-bottom: 1px solid #141828; padding: 14px 0; }
.trust-list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; overflow-x: auto; padding: 0 4px; scrollbar-width: none; }
.trust-list::-webkit-scrollbar { display: none; }
.trust-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 13px; color: #EEF4FF; font-weight: 600; white-space: nowrap; }
.trust-item span { font-size: 11px; color: #546E7A; white-space: nowrap; }
@media (max-width: 640px) {
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 8px; padding: 0 16px; justify-items: start; }
  .trust-item strong { font-size: 12px; }
  .trust-item span { font-size: 10px; }
}

/* ── SECÇÕES GERAIS ── */
.sec { padding: 60px 0; }
.sec-dark { background: #0A0D16; }
.sec-gray { background: #070A13; }
.sec-light { background: #0D1020; }
.sec-head { margin-bottom: 40px; }
.sec-head.center { text-align: center; }
.sec-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #64B5F6; margin-bottom: 8px; }
.sec-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: #EEF4FF; }
.sec-title span { background: linear-gradient(90deg, #2979FF, #64B5F6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sec-sub { font-size: 15px; color: #546E7A; margin-top: 8px; }

/* ── CATEGORIAS ── */
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 360px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 14px; transition: all .25s; }
.cat-card:hover { border-color: #2979FF; transform: translateY(-4px); box-shadow: 0 8px 28px rgba(41,121,255,.15); }
.cat-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: rgba(21,101,192,.08); border: 1px solid rgba(21,101,192,.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: all .2s; }
.cat-card:hover .cat-icon-wrap { background: rgba(21,101,192,.16); border-color: rgba(21,101,192,.4); }
.cat-name { font-size: 14px; font-weight: 600; color: #1a202c; margin-bottom: 4px; }
.cat-count { font-size: 11px; color: #718096; }

/* ── PRODUTOS ── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 380px)  { .prod-grid { grid-template-columns: 1fr; } }
.prod-card { background: linear-gradient(160deg,#0F1828,#0A1020); border: 1px solid #1A2540; border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .22s; }
.prod-card:hover { border-color: #2979FF; transform: translateY(-6px); box-shadow: 0 14px 44px rgba(21,101,192,.3); }
.prod-img { width: 100%; aspect-ratio: 1/1; background: #ffffff; border-bottom: 1px solid #1A2540; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 16px; }
.prod-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-body { padding: 14px; }
.prod-cat { font-size: 10px; color: #64B5F6; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.prod-nome { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 600; color: #E8F0FF; margin-bottom: 8px; line-height: 1.2; }
.prod-rat { color: #FBBF24; font-size: 11px; margin-bottom: 8px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.prod-preco strong { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: #EEF4FF; display: block; }
.prod-preco del { font-size: 11px; color: #3D5166; }
.btn-cesto { padding: 8px 12px; background: #2979FF; color: #fff; border-radius: 8px; font-size: 12px; font-weight: 600; transition: background .2s; white-space: nowrap; }
.btn-cesto:hover { background: #1565C0; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
.step-card { background: #0D1020; border: 1px solid #1C2235; border-radius: 14px; padding: 28px 20px; position: relative; }
.step-num { font-family: 'Rajdhani', sans-serif; font-size: 48px; font-weight: 800; color: rgba(41,121,255,.08); position: absolute; top: 12px; right: 16px; line-height: 1; }
.step-title { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: #EEF4FF; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: #546E7A; line-height: 1.6; }

/* ── BOTÕES GLOBAIS ── */
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: linear-gradient(135deg,#1565C0,#2979FF); color: #fff; border-radius: 10px; font-size: 15px; font-weight: 600; transition: all .2s; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,121,255,.4); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: transparent; color: #90A4AE; border: 1.5px solid #1C2235; border-radius: 10px; font-size: 15px; font-weight: 600; transition: all .2s; }
.btn-ghost:hover { border-color: #64B5F6; color: #EEF4FF; }

/* ── FOOTER ── */
footer { background: #060910; border-top: 1px solid #141828; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand p { font-size: 13px; color: #546E7A; line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: #0D1020; border: 1px solid #1C2235; display: flex; align-items: center; justify-content: center; color: #546E7A; font-size: 16px; transition: all .2s; }
.social-btn:hover { border-color: #64B5F6; color: #64B5F6; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; color: #EEF4FF; margin-bottom: 16px; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #546E7A; transition: color .2s; }
.footer-links a:hover { color: #64B5F6; }
.footer-bottom { border-top: 1px solid #141828; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #3D5166; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.pay-badge { background: #0D1020; border: 1px solid #1C2235; border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: #78909C; }

/* ── NEWSLETTER + CONTACTO/SUPORTE (sem caixa, fundo da secção) ── */
.nl-fziz-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .nl-fziz-grid { grid-template-columns: 1fr; gap: 36px; } }
.nl-fziz-divider { width: 1px; background: #1C2235; align-self: stretch; }
@media (max-width: 860px) { .nl-fziz-divider { display: none; } }

.nl-fziz-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #64B5F6; margin-bottom: 8px; }
.nl-fziz-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(20px,3vw,26px); font-weight: 700; color: #EEF4FF; margin-bottom: 8px; }
.nl-fziz-desc { font-size: 14px; color: #78909C; line-height: 1.7; margin-bottom: 18px; }

.newsletter-form { display: flex; gap: 10px; max-width: 440px; }
.newsletter-form input { flex: 1; padding: 12px 16px; background: #141828; border: 1.5px solid #1C2235; border-radius: 8px; font-size: 14px; color: #EEF4FF; outline: none; }
.newsletter-form input:focus { border-color: #64B5F6; }
.newsletter-form button { padding: 12px 22px; background: #2979FF; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: #1565C0; }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; max-width: none; } .newsletter-form button { width: 100%; } }

.nl-fziz-link { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: #0D1020; border: 1px solid #1C2235; border-radius: 12px; text-decoration: none; transition: all .2s; }
.nl-fziz-link:hover { border-color: #2979FF; transform: translateX(2px); }
.nl-fziz-link-ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: rgba(41,121,255,.12); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.nl-fziz-link strong { display: block; font-size: 13.5px; color: #EEF4FF; font-weight: 600; }
.nl-fziz-link small { display: block; font-size: 12px; color: #546E7A; margin-top: 2px; }
.nl-fziz-arrow { margin-left: auto; color: #64B5F6; font-size: 16px; flex-shrink: 0; }
.nl-fziz-sep { height: 22px; }

/* ── PÁGINA INTERNA: hero pequeno ── */
.page-hero { background: linear-gradient(140deg,#060910,#0C1220); padding: 48px 0 40px; border-bottom: 1px solid #141828; }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 700; color: #EEF4FF; }
.page-hero .breadcrumb { font-size: 13px; color: #546E7A; margin-bottom: 10px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-hero .breadcrumb a { color: #64B5F6; }
.page-hero .breadcrumb span { color: #3D5166; }

/* ── FILTROS SIDEBAR ── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.sidebar { background: #0D1020; border: 1px solid #1C2235; border-radius: 14px; padding: 20px; position: sticky; top: 80px; }
.filter-title { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: #EEF4FF; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #141828; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; font-size: 13px; color: #78909C; }
.filter-check input { accent-color: #2979FF; width: 14px; height: 14px; }
.filter-check:hover { color: #EEF4FF; }

/* ── PRODUTO DETALHE ── */
.prod-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .prod-detail { grid-template-columns: 1fr; gap: 28px; } }
.prod-gallery { background: #fff; border-radius: 14px; overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 32px; }
.prod-gallery img { max-width: 100%; object-fit: contain; }
.prod-info h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(24px,3vw,34px); font-weight: 700; color: #EEF4FF; margin-bottom: 12px; }
.prod-price-big { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 800; color: #EEF4FF; margin: 16px 0; }
.prod-price-big del { font-size: 18px; color: #546E7A; margin-right: 8px; }
.prod-price-big .badge-off { font-size: 14px; background: rgba(41,121,255,.2); color: #64B5F6; padding: 3px 10px; border-radius: 20px; vertical-align: middle; }
.qty-wrap { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.qty-btn { width: 36px; height: 36px; border-radius: 8px; background: #141828; border: 1.5px solid #1C2235; color: #EEF4FF; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.qty-input { width: 48px; text-align: center; background: #141828; border: 1.5px solid #1C2235; border-radius: 8px; color: #EEF4FF; font-size: 16px; padding: 6px; }
.btn-comprar { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; background: linear-gradient(135deg,#1565C0,#2979FF); color: #fff; border-radius: 12px; font-size: 16px; font-weight: 700; transition: all .2s; margin-bottom: 10px; }
.btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(41,121,255,.4); }
.btn-wishlist { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: transparent; border: 1.5px solid #1C2235; color: #90A4AE; border-radius: 12px; font-size: 15px; font-weight: 600; transition: all .2s; }
.btn-wishlist:hover { border-color: #64B5F6; color: #EEF4FF; }

/* ── CHECKOUT ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: #90A4AE; margin-bottom: 6px; }
.form-input { width: 100%; padding: 12px 14px; background: #141828; border: 1.5px solid #1C2235; border-radius: 8px; font-size: 14px; color: #EEF4FF; outline: none; font-family: inherit; }
.form-input:focus { border-color: #64B5F6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── ORDER SUMMARY ── */
.order-summary { background: #0D1020; border: 1px solid #1C2235; border-radius: 14px; padding: 24px; position: sticky; top: 80px; }
.order-summary h3 { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: #EEF4FF; margin-bottom: 20px; }
.order-line { display: flex; justify-content: space-between; font-size: 14px; color: #78909C; margin-bottom: 10px; }
.order-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; color: #EEF4FF; margin-top: 16px; padding-top: 16px; border-top: 1px solid #1C2235; }

/* ── TOAST / NOTIFICAÇÕES ── */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: #0D1020; border: 1px solid #1C2235; border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: #EEF4FF; box-shadow: 0 8px 24px rgba(0,0,0,.4); animation: slideIn .3s ease; min-width: 260px; max-width: 340px; }
.toast.success { border-color: rgba(22,163,74,.4); }
.toast.error { border-color: rgba(239,68,68,.4); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── MOBILE NAV BOTTOM ── */
.mobile-nav { display: none; }
@media (max-width: 768px) {
  .mobile-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #080B15; border-top: 1px solid #141828; padding: 8px 0 env(safe-area-inset-bottom, 8px); justify-content: space-around; }
/* ── MOBILE MENU BUTTON (hamburguer, só em mobile) ── */
.mob-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: #141828; border: 1px solid #1C2235; color: #EEF4FF; cursor: pointer;
}
@media (max-width: 768px) {
  .mob-menu-btn { display: flex; }
}

/* ── DRAWER LATERAL MOBILE ── */
.mob-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1100;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s, visibility .28s;
}
.mob-drawer {
  position: fixed; top: 0; right: 0;
  width: 300px; max-width: 90vw;
  height: 100dvh; background: #0D1020; border-left: 1px solid #1C2235;
  z-index: 1101; overflow-y: auto;
  transform: translateX(110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  padding-bottom: 80px;
}
/* Abrir — só funciona em mobile porque JS só corre ao clicar botão que está display:none em desktop */
.mob-drawer-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mob-drawer.open { transform: translateX(0); }
/* Em desktop — forçar estado fechado com especificidade máxima */
@media screen and (min-width: 769px) {
  #mobDrawer { transform: translateX(110%) !important; pointer-events: none !important; }
  #mobOverlay { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }
}
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #1C2235; position: sticky; top: 0;
  background: #0D1020; z-index: 2;
}
.mob-drawer-head button {
  width: 34px; height: 34px; border-radius: 8px; background: #141828;
  border: 1px solid #1C2235; color: #90A4AE; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mob-drawer-section { padding: 14px 20px; border-bottom: 1px solid #1C2235; }
.mob-drawer-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #3D5166; margin-bottom: 8px;
}
.mob-drawer-link {
  display: flex; align-items: center; gap: 10px; padding: 11px 10px;
  border-radius: 10px; font-size: 14px; font-weight: 500; color: #CBD5E1;
  text-decoration: none; transition: background .15s;
}
.mob-drawer-link:hover, .mob-drawer-link:active { background: #141828; color: #EEF4FF; }
.mob-drawer-link svg { flex-shrink: 0; }
.mob-drawer-cat img { flex-shrink: 0; }

  .mob-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 12px; color: #546E7A; font-size: 10px; border-radius: 8px; transition: color .2s; min-width: 56px; }
  .mob-btn.active, .mob-btn:hover { color: #64B5F6; }
  .mob-btn svg { width: 22px; height: 22px; }
  body { padding-bottom: 70px; }
}

/* ── SCROLL TO TOP ── */
.scroll-top { position: fixed; bottom: 90px; right: 16px; z-index: 998; width: 40px; height: 40px; background: #141828; border: 1px solid #1C2235; border-radius: 10px; display: none; align-items: center; justify-content: center; color: #64B5F6; font-size: 18px; transition: all .2s; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: #2979FF; border-color: #2979FF; color: #fff; }
@media (min-width: 769px) { .scroll-top { bottom: 24px; } }

/* ── ANIMAÇÕES GERAIS ── */
@keyframes glowpulse { 0%,100% { opacity:.7; transform:scale(1) } 50% { opacity:1; transform:scale(1.08) } }
.fade-in { animation: fadeIn .5s ease forwards; }
@keyframes fadeIn { from { opacity:0; transform:translateY(16px) } to { opacity:1; transform:translateY(0) } }


/* ═══ CARROSSEL HERO ═══ */
.hero { min-height: 0; padding: 0; display: block; }
.carousel-wrap { position: relative; overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform 0.7s cubic-bezier(.77,0,.18,1); will-change: transform; }
.carousel-slide { min-width: 100%; position: relative; overflow: hidden; min-height: 540px; display: flex; align-items: center;
  background: linear-gradient(140deg, #070A13 0%, #0D1428 55%, #091230 100%); }
.carousel-slide .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(41,121,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(41,121,255,.06) 1px,transparent 1px); background-size: 48px 48px; }
.carousel-slide .hero-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(41,121,255,.16) 0%,transparent 70%); top: -120px; right: -80px; animation: glowpulse 4s ease-in-out infinite; }
.carousel-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.carousel-badge { display: inline-block; background: rgba(255,59,59,.18); border: 1px solid rgba(255,59,59,.4); color: #FF6B6B; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.carousel-badge.sale { background: rgba(46,125,50,.2); border-color: rgba(46,125,50,.4); color: #66BB6A; }
.carousel-badge.new { background: rgba(41,121,255,.2); border-color: rgba(41,121,255,.4); color: #64B5F6; }
.carousel-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; color: var(--azul-light); text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.carousel-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--azul-light); }
.carousel-h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(30px,4vw,50px); font-weight: 700; line-height: 1.05; color: #fff; margin-bottom: 14px; }
.carousel-h1 em { font-style: normal; background: linear-gradient(90deg,#2979FF,#64B5F6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.carousel-h1 .price-old { font-size: 18px; text-decoration: line-through; color: #546E7A; display: block; font-weight: 400; -webkit-text-fill-color: #546E7A; }
.carousel-h1 .price-new { font-size: clamp(32px,4vw,54px); color: #66BB6A; -webkit-text-fill-color: #66BB6A; }
.carousel-desc { font-size: 15px; color: #78909C; line-height: 1.7; margin-bottom: 28px; }
.carousel-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.carousel-visual { display: flex; align-items: center; justify-content: center; }
.carousel-prod-card { width: 300px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); overflow: hidden; box-shadow: 0 0 50px rgba(21,101,192,.2); }
.carousel-prod-card img { width: 100%; height: 220px; object-fit: contain; background: #fff; padding: 20px; }
.carousel-prod-info { padding: 18px; }
.carousel-prod-info .pcat { font-size: 10px; color: var(--azul-light); text-transform: uppercase; letter-spacing: 1px; }
.carousel-prod-info .pname { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: #EEF2FF; margin: 4px 0 8px; }
.carousel-prod-info .prating { color: #F59E0B; font-size: 12px; }
.carousel-prod-info .pprice { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: #EEF4FF; }
.carousel-prod-info .pprice del { font-size: 13px; color: #546E7A; margin-right: 6px; font-weight: 400; }

/* Indicadores */
.carousel-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .3s; border: none; }
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--azul-brilho); }

/* Botões prev/next */
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: all .2s; backdrop-filter: blur(8px); }
.carousel-btn:hover { background: rgba(41,121,255,.3); border-color: var(--azul-brilho); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

/* ═══ ÍCONES TRUST BAR - estilo imagem flat ═══ */
.trust-icon-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

/* ═══ ÍCONES STEPS ═══ */
.step-icon-img { width: 48px; height: 48px; object-fit: contain; }

/* ═══ ÍCONES CATEGORIAS ═══ */
.cat-icon-img { width: 32px; height: 32px; object-fit: contain; }

/* ═══ NAV ÍCONES ═══ */
.nav-icon-img { width: 16px; height: 16px; object-fit: contain; vertical-align: middle; }

@media(max-width:900px){.carousel-content{grid-template-columns:1fr}.carousel-visual{display:none}}
@media(max-width:640px){.carousel-content{padding:48px 24px}.carousel-btn{display:none}}



/* ── LARGURA TOTAL ── */
header, nav, .trust-bar, footer, .mobile-nav {
  width: 100%;
  box-sizing: border-box;
}
section { width: 100%; }

/* ── CARROSSEL HERO ── */
.hero{min-height:0;padding:0;display:block}
.cr-wrap{position:relative;overflow:hidden;user-select:none}
.cr-track{display:flex;transition:transform .7s cubic-bezier(.77,0,.18,1);will-change:transform}
.cr-slide{min-width:100%;min-height:520px;display:flex;align-items:center;position:relative;overflow:hidden;
  background:linear-gradient(140deg,#060910 0%,#0C1220 55%,#08101F 100%)}
.cr-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(41,121,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(41,121,255,.05) 1px,transparent 1px);background-size:44px 44px;pointer-events:none}
.cr-glow{position:absolute;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(41,121,255,.14) 0%,transparent 68%);top:-120px;right:-60px;animation:glowpulse 4s ease-in-out infinite;pointer-events:none}
@keyframes glowpulse{0%,100%{opacity:.7;transform:scale(1)}50%{opacity:1;transform:scale(1.08)}}
.cr-body{position:relative;z-index:2;max-width:1280px;margin:0 auto;padding:72px 24px;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.cr-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(41,121,255,.15);border:1px solid rgba(41,121,255,.35);color:#93C5FD;font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:5px 13px;border-radius:20px;margin-bottom:14px}
.cr-badge.green{background:rgba(22,163,74,.15);border-color:rgba(22,163,74,.35);color:#6EE7B7}
.cr-badge.orange{background:rgba(234,88,12,.15);border-color:rgba(234,88,12,.35);color:#FCA5A5}
.cr-eye{font-size:10px;font-weight:600;letter-spacing:3px;color:#64B5F6;text-transform:uppercase;margin-bottom:10px;display:flex;align-items:center;gap:8px}
.cr-eye::before{content:'';display:block;width:24px;height:2px;background:#64B5F6}
.cr-h1{font-family:'Rajdhani',sans-serif;font-size:clamp(28px,3.8vw,50px);font-weight:700;line-height:1.06;color:#fff;margin-bottom:14px}
.cr-h1 em{font-style:normal;background:linear-gradient(90deg,#2979FF,#64B5F6);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.cr-h1 .old{font-size:16px;text-decoration:line-through;color:#546E7A;display:block;font-weight:400;-webkit-text-fill-color:#546E7A}
.cr-h1 .neo{font-size:clamp(34px,4vw,54px);color:#4ADE80;-webkit-text-fill-color:#4ADE80}
.cr-desc{font-size:14px;color:#78909C;line-height:1.75;margin-bottom:26px}
.cr-ctas{display:flex;gap:12px;flex-wrap:wrap}
.cr-visual{display:flex;align-items:center;justify-content:center}
.cr-pcard{width:290px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);overflow:hidden;box-shadow:0 0 48px rgba(21,101,192,.18)}
.cr-pcard img{width:100%;height:210px;object-fit:contain;background:#fff;padding:20px;display:block}
.cr-pinfo{padding:16px 18px}
.cr-pcat{font-size:10px;color:#64B5F6;text-transform:uppercase;letter-spacing:1px}
.cr-pname{font-family:'Rajdhani',sans-serif;font-size:15px;font-weight:700;color:#EEF2FF;margin:4px 0 6px}
.cr-prating{color:#FBBF24;font-size:12px;margin-bottom:6px}
.cr-pprice{font-family:'Rajdhani',sans-serif;font-size:22px;font-weight:700;color:#F8FAFF}
.cr-pprice del{font-size:13px;color:#546E7A;margin-right:4px;font-weight:400}
/* dots */
.cr-dots{position:absolute;bottom:18px;left:50%;transform:translateX(-50%);display:flex;gap:7px;z-index:10}
.cr-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.28);cursor:pointer;transition:all .3s;border:none;padding:0}
.cr-dot.on{width:26px;border-radius:4px;background:#2979FF}
/* prev/next */
.cr-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:10;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.13);color:#fff;width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:20px;transition:all .2s;backdrop-filter:blur(6px)}
.cr-btn:hover{background:rgba(41,121,255,.28);border-color:#2979FF}
.cr-btn.l{left:14px}.cr-btn.r{right:14px}
/* ── ÍCONES IMG ── */
.ti-img{width:42px;height:42px;object-fit:contain;flex-shrink:0;border-radius:8px}
.si-img{width:52px;height:52px;object-fit:contain}
.ci-img{width:30px;height:30px;object-fit:contain}
@media(max-width:860px){.cr-body{grid-template-columns:1fr}.cr-visual{display:none}}
@media(max-width:600px){.cr-body{padding:44px 20px}.cr-btn{display:none}}


/* ── ÍCONES OUTLINE ── */
.ti-img { width:26px!important; height:26px!important; object-fit:contain; flex-shrink:0; border-radius:0; background:none }
.si-img { width:44px!important; height:44px!important; object-fit:contain }
.ci-img { width:28px!important; height:28px!important; object-fit:contain }
.cat-icon-wrap { width:52px; height:52px; border-radius:12px; background:rgba(100,181,246,.08); border:1px solid rgba(100,181,246,.18); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; transition:all .2s }
.cat-card:hover .cat-icon-wrap { background:rgba(100,181,246,.16); border-color:rgba(100,181,246,.4) }
.step-card .si-img { filter: drop-shadow(0 0 6px rgba(100,181,246,.3)) }


/* ── CONTACTO ── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .contacto-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   CONTA DE CLIENTE — painel com navegação por abas
   ══════════════════════════════════════════ */
.conta-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .conta-layout { grid-template-columns: 1fr; }
}

/* Cartão de identidade (sidebar) */
.conta-card-id {
  background: #0D1020;
  border: 1px solid #1C2235;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.conta-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg,#1565C0,#2979FF);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: #fff;
  margin: 0 auto 14px;
}
.conta-card-id h2 { font-family: 'Rajdhani', sans-serif; font-size: 18px; color: #EEF4FF; margin-bottom: 2px; }
.conta-card-id p { font-size: 12.5px; color: #546E7A; word-break: break-word; }

/* Navegação por abas (sidebar) */
.conta-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 22px; }
.conta-nav button {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 600; color: #90A4AE;
  background: transparent; border: none; text-align: left; cursor: pointer;
  transition: all .18s; width: 100%;
}
.conta-nav button svg { width: 17px; height: 17px; flex-shrink: 0; stroke: currentColor; }
.conta-nav button:hover { background: #141828; color: #EEF4FF; }
.conta-nav button.active { background: rgba(41,121,255,.14); color: #64B5F6; }
.conta-nav .conta-nav-sair { margin-top: 14px; padding-top: 14px; border-top: 1px solid #1C2235; color: #F87171; }
.conta-nav .conta-nav-sair:hover { background: rgba(248,113,113,.1); color: #F87171; }

/* Painéis de conteúdo */
.conta-panel { display: none; }
.conta-panel.active { display: block; animation: contaFadeIn .25s ease; }
@keyframes contaFadeIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:translateY(0); } }

.conta-box {
  background: #0D1020;
  border: 1px solid #1C2235;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.conta-box-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.conta-box-head svg { width: 19px; height: 19px; stroke: #64B5F6; flex-shrink: 0; }
.conta-box-head h3 { font-family: 'Rajdhani', sans-serif; font-size: 17px; color: #EEF4FF; font-weight: 700; }
.conta-box-head p { font-size: 12.5px; color: #546E7A; margin-top: 1px; }

/* Encomendas */
.conta-pedido {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: #141828; border: 1px solid #1C2235; border-radius: 12px;
  text-decoration: none; transition: border-color .2s;
  margin-bottom: 10px;
}
.conta-pedido:hover { border-color: #2979FF; }
.conta-pedido-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(41,121,255,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.conta-pedido-ico svg { width: 18px; height: 18px; stroke: #64B5F6; }
.conta-pedido-info { flex: 1; min-width: 0; }
.conta-pedido-info strong { display:block; font-family:'Rajdhani',sans-serif; font-size:15px; color:#EEF4FF; }
.conta-pedido-info small { display:block; font-size:12px; color:#546E7A; margin-top:2px; }
.conta-pedido-status { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }

.conta-vazio { text-align: center; padding: 36px 16px; }
.conta-vazio svg { width: 46px; height: 46px; stroke: #2C3650; margin-bottom: 14px; }
.conta-vazio p { color: #546E7A; font-size: 14px; margin-bottom: 18px; }

/* Estatísticas rápidas */
.conta-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px; }
@media (max-width: 560px) { .conta-stats { grid-template-columns: 1fr; } }
.conta-stat { background: #0D1020; border: 1px solid #1C2235; border-radius: 14px; padding: 18px 20px; }
.conta-stat .num { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: #EEF4FF; }
.conta-stat .lbl { font-size: 12px; color: #546E7A; margin-top: 2px; }

/* Auth (login/registo) */
.conta-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .conta-auth-grid { grid-template-columns: 1fr; }
}
.conta-auth-card { background: #0D1020; border: 1px solid #1C2235; border-radius: 16px; padding: 32px; }
.conta-auth-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(41,121,255,.12); display:flex; align-items:center; justify-content:center; margin-bottom: 16px; }
.conta-auth-ico svg { width: 22px; height: 22px; stroke: #64B5F6; }

/* ═══════════════════════════════════════════
   OVERRIDE — Logo maior no cabeçalho (3x)
   ══════════════════════════════════════════ */
header .header-inner { min-height: 150px; height: auto; padding: 18px 16px; }
header .logo-img { height: 140px !important; width: auto; max-width: 260px; }
@media (max-width: 768px) {
  header .header-inner { min-height: 96px; height: auto; padding: 12px; }
  header .logo-img { height: 80px !important; }
}

/* ═══════════════════════════════════════════
   FOOTER — crédito F.ZIZ
   ══════════════════════════════════════════ */
.footer-credit { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #3D5166; }
.footer-credit img { height: 20px; width: auto; opacity: .8; transition: opacity .2s, transform .2s; }
.footer-credit a:hover img { opacity: 1; transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   PARCERIA F.ZIZ — nova seção (fundo branco)
   ══════════════════════════════════════════ */
.fziz-sec { background: #FFFFFF; padding: 64px 0; }
.fziz-head { text-align: center; margin-bottom: 40px; }
.fziz-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #1565C0; margin-bottom: 8px; }
.fziz-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(24px,4vw,36px); font-weight: 700; color: #1a202c; }
.fziz-title span { color: #1565C0; }
.fziz-sub { font-size: 15px; color: #718096; margin: 10px auto 0; max-width: 620px; line-height: 1.7; }

.fziz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 1024px) { .fziz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fziz-grid { grid-template-columns: 1fr; } }

.fziz-card { background: #0A0D16; border: 1px solid #1C2235; border-radius: 16px; padding: 28px 24px; text-align: left; transition: transform .2s, box-shadow .2s, border-color .2s; }
.fziz-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(21,101,192,.25); border-color: #2979FF; }
.fziz-card .fziz-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(41,121,255,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fziz-card .fziz-ico svg { width: 24px; height: 24px; stroke: #64B5F6; }
.fziz-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: #EEF4FF; margin-bottom: 8px; }
.fziz-card p { font-size: 13px; color: #90A4AE; line-height: 1.7; }

.fziz-cta { text-align: center; margin-top: 40px; }
.fziz-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: linear-gradient(135deg,#1565C0,#2979FF); color: #fff; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s; }
.fziz-cta a:hover { box-shadow: 0 8px 24px rgba(41,121,255,.35); transform: translateY(-2px); }
.fziz-cta p { font-size: 12px; color: #A0AEC0; margin-top: 12px; }

/* ═══════════════════════════════════════════
   GARANTIA DE LARGURA TOTAL (full-bleed)
   Força footer/secções a ocupar 100% da viewport
   independente de qualquer contentor pai.
   ══════════════════════════════════════════ */
footer, .fziz-sec, .sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ═══════════════════════════════════════════
   PÁGINAS INTERNAS — fundo branco no conteúdo
   (entre a barra de título e o rodapé)
   ══════════════════════════════════════════ */
.page-hero ~ section.sec-dark,
.page-hero ~ section.sec-gray {
  background: #FFFFFF;
}
.page-hero ~ section .sec-eye { color: #1565C0; }
.page-hero ~ section .sec-title { color: #1a202c; }
.page-hero ~ section .sec-title span { color: #1565C0; }
.page-hero ~ section .sec-sub { color: #718096; }

.page-hero ~ section .btn-ghost,
.page-hero ~ section .btn-wishlist {
  color: #1565C0;
  border-color: #BBDEFB;
  background: #fff;
}
.page-hero ~ section .btn-ghost:hover,
.page-hero ~ section .btn-wishlist:hover {
  background: #1565C0;
  color: #fff;
  border-color: #1565C0;
}
