/* ============================================================
   MegaShop Dropshipping — CSS
   ============================================================ */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-soft: rgba(37, 99, 235, 0.08);
    --success: #10b981;
    --success-hover: #059669;
    --danger: #ef4444;
    --accent: #f59e0b;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;

    --text: #0f172a;
    --text-dim: #64748b;
    --text-bright: #ffffff;

    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    --font-head: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 10px;
    --radius-lg: 16px;
    --radius-sm: 6px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 30px rgba(37, 99, 235, 0.25);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.8rem; font-weight: 700; }
h3 { font-size: 1.15rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--text);
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
    position: relative;
    height: 36px;
    overflow: hidden;
}
.top-slides {
    position: relative;
    height: 100%;
}
.top-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.top-slide.is-active { opacity: 1; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
}
.logo-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.logo-text strong em {
    font-style: normal;
    color: var(--primary);
}
.logo-text span {
    display: block;
    font-size: 10.5px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
    font-weight: 500;
}

.header-search {
    flex-grow: 1;
    max-width: 640px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    transition: all var(--t);
}
.header-search:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-soft);
}
.header-search svg { color: var(--text-dim); flex-shrink: 0; }
.header-search input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    padding: 8px 0;
}
.header-search input::placeholder { color: var(--text-dim); }
.header-search button {
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all var(--t);
}
.header-search button:hover { background: var(--primary-hover); }

.header-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.header-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--text);
    transition: all var(--t);
    font-size: 11px;
    font-weight: 600;
}
.header-icon:hover { background: var(--bg-alt); color: var(--primary); }
.header-icon .badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.menu-toggle { display: none; }

/* ---------- Header categorias ---------- */
.header-cats {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.header-cats::-webkit-scrollbar { display: none; }
.header-cats-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    white-space: nowrap;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--t);
    padding: 4px 0;
}
.cat-link:hover { color: var(--primary); }
.cat-link-oferta {
    color: var(--danger);
    font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success), #34d399);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-title em {
    font-style: normal;
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(37, 99, 235, 0.15);
    z-index: -1;
    border-radius: 4px;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.hero-beneficio {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.beneficio-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.hero-beneficio strong {
    display: block;
    font-size: 13.5px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1px;
}
.hero-beneficio span {
    font-size: 12px;
    color: var(--text-dim);
}

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

/* ---------- Hero image ---------- */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-circle {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
}
@keyframes pulseCircle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hero-image img {
    position: relative;
    width: 85%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.hero-float span { font-size: 26px; line-height: 1; }
.hero-float strong {
    display: block;
    font-family: var(--font-head);
    font-size: 17px;
    color: var(--text);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}
.hero-float div > span {
    font-size: 11.5px;
    color: var(--text-dim);
    font-weight: 500;
}
.hero-float-1 { top: 10%; left: 0; }
.hero-float-2 { bottom: 10%; right: 0; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 2px;
}
.trust-item span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-header h2 em {
    font-style: normal;
    color: var(--primary);
}
.section-header p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 10px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.section-header-row .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-header-row h2 { margin: 0; }
.section-header-row h2 em {
    font-style: normal;
    color: var(--primary);
}

/* ---------- Countdown ---------- */
.countdown-box {
    display: flex;
    align-items: center;
    gap: 14px;
}
.countdown-box > span {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 600;
}
.countdown {
    display: flex;
    gap: 8px;
}
.countdown > div {
    background: var(--text);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    text-align: center;
    min-width: 48px;
}
.countdown strong {
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}
.countdown span {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* ---------- Ofertas ---------- */
.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.oferta-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
}
.oferta-card:hover {
    border-color: var(--danger);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.oferta-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--danger);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}
.oferta-image {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}
.oferta-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.oferta-content h3 {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.3;
}
.oferta-rating {
    font-size: 12.5px;
    color: var(--text-dim);
}
.oferta-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 6px 0;
}
.oferta-price strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--success);
    letter-spacing: -0.5px;
}
.oferta-price del {
    font-size: 14px;
    color: var(--text-dim);
}

.oferta-progress {
    position: relative;
    height: 24px;
    background: var(--bg-alt);
    border-radius: 100px;
    overflow: hidden;
    margin: 6px 0;
}
.oferta-progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, var(--danger), var(--accent));
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.oferta-progress span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ---------- Catálogo ---------- */
.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filtro {
    padding: 10px 22px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all var(--t);
}
.filtro:hover { border-color: var(--primary); color: var(--primary); }
.filtro.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.produto {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
    position: relative;
}
.produto:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.produto.is-hidden { display: none; }

.produto-image {
    position: relative;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}
.produto-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.produto-tag.tag-novo { background: var(--success); }
.produto-tag.tag-vendido { background: var(--accent); color: var(--text); }

.produto-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--t);
    z-index: 2;
}
.produto-fav:hover { background: var(--danger); color: #fff; }
.produto-fav.is-active { background: var(--danger); color: #fff; }

.produto-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.produto-cat {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.produto-nome {
    font-family: var(--font-head);
    font-size: 14.5px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
    flex-grow: 1;
}
.produto-rating {
    font-size: 12px;
    color: var(--text-dim);
}
.produto-preco {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 6px;
}
.produto-preco strong {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.produto-preco del {
    font-size: 13px;
    color: var(--text-dim);
}
.produto-parcela {
    font-size: 11.5px;
    color: var(--text-dim);
}
.produto-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 11px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--t);
}
.produto-add:hover { background: var(--primary-hover); }

.load-more {
    text-align: center;
}

/* ---------- Rastreamento ---------- */
.rastreamento {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.rastreamento::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.rastreamento-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.rastreamento-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.rastreamento-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    margin-bottom: 8px;
}
.rastreamento-text h2 {
    color: #fff;
    margin-bottom: 8px;
}
.rastreamento-text h2 em {
    font-style: normal;
    color: #a7f3d0;
}
.rastreamento-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    max-width: 480px;
}
.rastreamento-form {
    display: flex;
    gap: 8px;
    background: #fff;
    border-radius: var(--radius);
    padding: 6px;
    min-width: 380px;
    flex-shrink: 0;
}
.rastreamento-form input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    background: transparent;
}
.rastreamento-form .btn {
    padding: 12px 24px;
    flex-shrink: 0;
}

/* ---------- Reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.review {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    border: 1px solid var(--border);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-header strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}
.review-verified {
    display: block;
    font-size: 11.5px;
    color: var(--success);
    font-weight: 600;
}
.review-stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 2px;
}
.review p {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}
.review-product {
    font-size: 12px;
    color: var(--text-dim);
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-head);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: all var(--t);
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ---------- Newsletter ---------- */
.newsletter {
    background: linear-gradient(135deg, var(--success), #34d399);
    color: #fff;
    padding: 50px 0;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.newsletter h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
}
.newsletter p {
    opacity: 0.9;
    font-size: 15px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: var(--radius);
    padding: 6px;
}
.newsletter-form input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    background: transparent;
}
.newsletter-form .btn-primary {
    background: var(--success-hover);
    border-color: var(--success-hover);
    padding: 12px 26px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: #94a3b8;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: #94a3b8;
}
.footer a:hover { color: #fff; }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text span { color: #94a3b8; }

.footer-payment {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-payment-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-payment-inner > span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}
.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--primary); }

/* ---------- Cart Drawer ---------- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-drawer.is-open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-header h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 700;
}
.cart-header button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--t);
}
.cart-header button:hover { background: var(--bg-alt); }

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-empty {
    text-align: center;
    color: var(--text-dim);
    padding: 60px 0;
    font-size: 14px;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.cart-item-info { flex-grow: 1; min-width: 0; }
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.cart-item-price {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--primary);
    font-weight: 800;
}
.cart-item-remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all var(--t);
    flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.cart-footer {
    padding: 22px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.cart-total span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
}
.cart-total strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 800;
}
.cart-frete-info {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 16px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--success);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
    animation: pulseWhats 2s ease-in-out infinite;
}
@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: #60a5fa;
    font-weight: 700;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .header-search { display: none; }
    .menu-toggle { display: flex; }
    .header-icon span:not(.badge) { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-circle { display: none; }

    .ofertas-grid { grid-template-columns: 1fr; }
    .section-header-row { flex-direction: column; align-items: flex-start; }

    .rastreamento-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .rastreamento-icon { margin: 0 auto; }
    .rastreamento-form { min-width: auto; flex-direction: column; padding: 8px; }

    .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
    .newsletter-form { flex-direction: column; padding: 8px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; }
    .hero-beneficios { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .produto-info { padding: 12px 14px 16px; }
    .produto-nome { font-size: 13px; }
    .produto-preco strong { font-size: 1rem; }

    .rastreamento-form input { padding: 12px 14px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
    .cart-drawer { max-width: none; }
}