/*
======================================================================
TEMPLATE CLEAN COMMERCE 2026 — IMPORTADOR FAIXA PRETA
Arquivo: assets/css/style.css
Direção visual: leve, clean, moderna, com foco em retenção e conversão.
======================================================================
*/

:root {
    --bg: #f7faff;
    --bg-soft: #eef5ff;
    --surface: #ffffff;
    --surface-2: #f4f8ff;
    --text: #0e1726;
    --text-soft: #536174;
    --muted: #7d8a9c;
    --line: rgba(29, 78, 216, 0.10);
    --primary: #2563eb;
    --primary-2: #60a5fa;
    --primary-soft: rgba(37, 99, 235, 0.10);
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 22px 60px rgba(15, 23, 42, 0.12);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="mint"] {
    --bg: #f5fffc;
    --bg-soft: #e9fbf5;
    --surface: #ffffff;
    --surface-2: #f0faf6;
    --text: #0d1f1b;
    --text-soft: #4a635c;
    --muted: #749088;
    --line: rgba(13, 148, 136, 0.12);
    --primary: #0f766e;
    --primary-2: #2dd4bf;
    --primary-soft: rgba(15, 118, 110, 0.10);
    --accent: #14b8a6;
}

html[data-theme="sand"] {
    --bg: #fffaf2;
    --bg-soft: #f8efe1;
    --surface: #ffffff;
    --surface-2: #fff6e8;
    --text: #1f1a14;
    --text-soft: #665a4d;
    --muted: #928574;
    --line: rgba(180, 83, 9, 0.12);
    --primary: #b45309;
    --primary-2: #f59e0b;
    --primary-soft: rgba(180, 83, 9, 0.10);
    --accent: #ea580c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at top left, var(--primary-soft), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 46%, var(--bg) 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.top-strip {
    background: var(--text);
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
}

.top-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 5vw, 72px);
    min-height: 34px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.header-main {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__symbol {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 24%, transparent);
}

.brand__copy strong {
    display: block;
    max-width: 180px;
    font-size: 17px;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.search input {
    width: 100%;
    min-width: 0;
    padding: 0 20px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
}

.search input::placeholder {
    color: var(--muted);
}

.search button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.search button:hover {
    transform: translateY(-1px);
    background: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease;
}

.action-link:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.action-link__icon {
    font-size: 16px;
}

.cart-button {
    position: relative;
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    background: var(--text);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.cart-button strong {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 950;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 0 16px;
}

.category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 900;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 850;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a:hover::after {
    width: 100%;
}

.theme-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
}

.theme-dot {
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--line);
}

.theme-dot.is-active {
    outline: 3px solid var(--primary-soft);
}

.theme-dot--blue { background: #2563eb; }
.theme-dot--mint { background: #0f766e; }
.theme-dot--sand { background: #b45309; }

.hero-section {
    padding: 42px 0 28px;
}

.hero-grid {
    display: grid;
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
    align-items: center;
    min-height: 520px;
    overflow: hidden;
    border-radius: 38px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.74), transparent 24%),
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 9%, white), var(--surface));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
}

.hero-card__content {
    padding: clamp(30px, 6vw, 72px);
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card h1,
.section-head h2,
.showcase-copy h2,
.reviews-summary h2,
.newsletter-card h2,
.faq-layout h2 {
    letter-spacing: -0.07em;
}

.hero-card h1 {
    max-width: 620px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.94;
}

.hero-card p {
    max-width: 560px;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.65;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 950;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--primary) 26%, transparent);
}

.btn--ghost {
    background: #ffffff;
    color: var(--text);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-benefits span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -70px;
    top: 28px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 36%),
        radial-gradient(circle, color-mix(in srgb, var(--primary) 26%, white), transparent 67%);
}

.device-stack {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.device {
    position: absolute;
    border-radius: 28px;
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.18);
}

.device--phone {
    width: 178px;
    height: 260px;
    transform: translate(-52px, 20px) rotate(-8deg);
    background:
        radial-gradient(circle at 34px 34px, #0f172a 0 10px, transparent 11px),
        radial-gradient(circle at 64px 34px, #0f172a 0 10px, transparent 11px),
        radial-gradient(circle at 34px 64px, #0f172a 0 10px, transparent 11px),
        linear-gradient(150deg, #eaf2ff, #94a3b8 48%, #1e293b 49%);
}

.device--watch {
    width: 170px;
    height: 170px;
    transform: translate(96px, -16px) rotate(7deg);
    border: 14px solid #111827;
    background:
        radial-gradient(circle, transparent 0 28px, #111827 29px 31px, transparent 32px),
        conic-gradient(from 180deg, var(--primary), var(--primary-2), #ffffff, var(--primary));
}

.device--earbuds {
    width: 160px;
    height: 112px;
    transform: translate(42px, 142px) rotate(4deg);
    border-radius: 36px;
    background:
        radial-gradient(circle at 54px 36px, #ffffff 0 18px, #dfe7f4 19px 31px, transparent 32px),
        radial-gradient(circle at 106px 36px, #ffffff 0 18px, #dfe7f4 19px 31px, transparent 32px),
        linear-gradient(180deg, #ffffff, #dbeafe);
}

.section {
    padding: 76px 0;
}

.section--compact {
    padding-top: 38px;
}

.section--soft {
    background:
        linear-gradient(180deg, transparent 0%, var(--bg-soft) 20%, var(--bg-soft) 80%, transparent 100%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2,
.showcase-copy h2,
.reviews-summary h2,
.newsletter-card h2,
.faq-layout h2 {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.02;
}

.text-link {
    color: var(--primary);
    font-weight: 950;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.category-card {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 154px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.78);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-card strong {
    margin-top: 12px;
    font-size: 15px;
}

.category-card small {
    margin-top: 5px;
    color: var(--muted);
    text-align: center;
}

.category-card__icon {
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, var(--bg-soft));
    box-shadow: inset 0 -10px 20px rgba(15, 23, 42, 0.05), 0 10px 22px rgba(15, 23, 42, 0.08);
}

.category-card__icon--phone {
    background:
        radial-gradient(circle at 22px 18px, #111827 0 5px, transparent 6px),
        linear-gradient(145deg, var(--primary-2), #111827);
}

.category-card__icon--watch {
    border: 10px solid #111827;
    background: conic-gradient(var(--primary), var(--primary-2), #ffffff, var(--primary));
}

.category-card__icon--audio {
    border-radius: 50%;
    border: 10px solid #111827;
    background: transparent;
}

.category-card__icon--drone {
    background:
        radial-gradient(circle at 12px 12px, #111827 0 8px, transparent 9px),
        radial-gradient(circle at 50px 12px, #111827 0 8px, transparent 9px),
        radial-gradient(circle at 12px 50px, #111827 0 8px, transparent 9px),
        radial-gradient(circle at 50px 50px, #111827 0 8px, transparent 9px),
        linear-gradient(45deg, transparent 45%, #94a3b8 46% 54%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #94a3b8 46% 54%, transparent 55%);
}

.category-card__icon--home {
    background:
        radial-gradient(circle at 32px 32px, var(--primary) 0 16px, transparent 17px),
        linear-gradient(145deg, #ffffff, var(--bg-soft));
}

.category-card__icon--plus {
    background:
        linear-gradient(90deg, transparent 42%, var(--primary) 43% 57%, transparent 58%),
        linear-gradient(0deg, transparent 42%, var(--primary) 43% 57%, transparent 58%),
        linear-gradient(145deg, #ffffff, var(--bg-soft));
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.filter-button.is-active,
.filter-button:hover {
    background: var(--primary);
    color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.favorite-button {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: var(--text);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.product-card__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 250px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,0.95), transparent 36%),
        linear-gradient(145deg, var(--bg-soft), #ffffff);
}

.product-image {
    display: block;
    width: 128px;
    height: 150px;
    border-radius: 28px;
    filter: drop-shadow(0 25px 30px rgba(15, 23, 42, 0.18));
}

.product-image--phone {
    background:
        radial-gradient(circle at 28px 26px, #020617 0 8px, transparent 9px),
        radial-gradient(circle at 52px 26px, #020617 0 8px, transparent 9px),
        radial-gradient(circle at 28px 50px, #020617 0 8px, transparent 9px),
        linear-gradient(145deg, #f8fafc, #94a3b8 50%, #0f172a 51%);
}

.product-image--watch {
    width: 132px;
    height: 132px;
    border: 14px solid #111827;
    border-radius: 36px;
    background: conic-gradient(var(--primary), var(--primary-2), #ffffff, var(--primary));
}

.product-image--earbuds {
    width: 140px;
    height: 100px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 46px 36px, #ffffff 0 18px, #dbeafe 19px 30px, transparent 31px),
        radial-gradient(circle at 94px 36px, #ffffff 0 18px, #dbeafe 19px 30px, transparent 31px),
        linear-gradient(180deg, #ffffff, #dbeafe);
}

.product-image--drone {
    width: 170px;
    height: 120px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 22px 22px, #cbd5e1 0 18px, transparent 19px),
        radial-gradient(circle at 148px 22px, #cbd5e1 0 18px, transparent 19px),
        radial-gradient(circle at 22px 98px, #cbd5e1 0 18px, transparent 19px),
        radial-gradient(circle at 148px 98px, #cbd5e1 0 18px, transparent 19px),
        radial-gradient(circle at 85px 60px, #111827 0 22px, transparent 23px),
        linear-gradient(45deg, transparent 45%, #94a3b8 46% 54%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #94a3b8 46% 54%, transparent 55%);
}

.product-image--lamp {
    width: 120px;
    height: 150px;
    border-radius: 60px 60px 24px 24px;
    background:
        radial-gradient(circle at 50% 34%, #ffffff 0 36px, var(--primary-2) 37px 48px, transparent 49px),
        linear-gradient(180deg, var(--primary-soft), var(--primary));
}

.product-image--speaker {
    width: 150px;
    height: 104px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 48px 52px, #0f172a 0 24px, #ffffff 25px 28px, transparent 29px),
        radial-gradient(circle at 104px 52px, #0f172a 0 24px, #ffffff 25px 28px, transparent 29px),
        linear-gradient(145deg, var(--primary), var(--text));
}

.discount-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
}

.product-card__body {
    padding: 20px;
}

.product-card__body > small {
    color: var(--muted);
    font-weight: 800;
}

.product-card h3 {
    min-height: 46px;
    margin-top: 7px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.rating {
    margin-top: 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.rating span {
    color: var(--text-soft);
}

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.old-price {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-decoration: line-through;
}

.price-row strong {
    display: block;
    margin-top: 2px;
    color: var(--text);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.price-row small {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
}

.add-button {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 44px;
    border: 0;
    border-radius: 15px;
    background: var(--primary);
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--primary) 26%, transparent);
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 40px;
    align-items: center;
}

.showcase-copy p,
.reviews-summary p,
.newsletter-card p,
.faq-layout p {
    max-width: 560px;
    margin-top: 16px;
    color: var(--text-soft);
    line-height: 1.7;
}

.showcase-copy .btn {
    margin-top: 26px;
}

.benefit-board {
    display: grid;
    gap: 14px;
}

.benefit-board article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.78);
    box-shadow: var(--shadow-sm);
}

.benefit-board span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 950;
}

.benefit-board strong {
    display: block;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.benefit-board p {
    margin-top: 4px;
    color: var(--text-soft);
}

.trust-section {
    padding-top: 28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.trust-card span {
    font-size: 28px;
}

.trust-card strong {
    display: block;
    margin-top: 14px;
    font-size: 18px;
    letter-spacing: -0.035em;
}

.trust-card p {
    margin-top: 8px;
    color: var(--text-soft);
    line-height: 1.6;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
    align-items: start;
}

.score-box {
    display: inline-grid;
    gap: 2px;
    margin-top: 24px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.score-box strong {
    font-size: 44px;
    letter-spacing: -0.06em;
}

.score-box span {
    color: var(--accent);
}

.score-box small {
    color: var(--text-soft);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-cards article {
    min-height: 220px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.review-cards p {
    color: var(--text-soft);
    line-height: 1.65;
}

.review-cards strong {
    display: block;
    margin-top: 24px;
}

.review-cards span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.newsletter-section {
    padding-top: 20px;
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 28%),
        var(--text);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.newsletter-card .section-label {
    color: var(--primary-2);
}

.newsletter-card p {
    color: rgba(255,255,255,0.72);
}

.newsletter-form {
    display: grid;
    gap: 12px;
}

.newsletter-form input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.56);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    min-height: 62px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 950;
    text-align: left;
}

.faq-item p {
    display: none;
    padding: 0 20px 20px;
    color: var(--text-soft);
    line-height: 1.65;
}

.faq-item.is-open p {
    display: block;
}

.site-footer {
    margin-top: 30px;
    padding: 58px 0 26px;
    background: var(--text);
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.65fr);
    gap: 40px;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 20px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
}

.site-footer .brand__symbol {
    background: #ffffff;
    color: var(--text);
    box-shadow: none;
}

.site-footer h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a:not(.brand) {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    font-weight: 750;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.56);
    font-size: 13px;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(5px);
}

.overlay.is-open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    width: min(430px, 100%);
    height: 100vh;
    padding: 24px;
    background: var(--surface);
    box-shadow: -20px 0 70px rgba(15, 23, 42, 0.22);
    transform: translateX(105%);
    transition: transform 0.25s ease;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cart-drawer__header h2 {
    letter-spacing: -0.05em;
}

.cart-drawer__header button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 26px;
}

.cart-drawer__body {
    flex: 1;
    padding: 24px 0;
    color: var(--text-soft);
}

.cart-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.cart-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
    background: var(--bg-soft);
    color: var(--text);
    font-weight: 800;
}

.cart-drawer__footer {
    display: grid;
    gap: 14px;
}

.cart-drawer__footer > div {
    display: flex;
    justify-content: space-between;
    color: var(--text-soft);
}

.cart-drawer__footer strong {
    color: var(--text);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 100;
    transform: translate(-50%, 120px);
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--text);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease;
}

.toast.is-open {
    transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .action-link {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .nav-row {
        align-items: start;
        flex-direction: column;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 12px;
        border-radius: 18px;
        background: var(--surface);
        box-shadow: var(--shadow-sm);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 360px;
    }

    .category-grid,
    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-grid,
    .review-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-showcase,
    .reviews-layout,
    .newsletter-card,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .top-strip__inner {
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .header-main {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 14px 0;
    }

    .brand__symbol {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .brand__copy strong {
        max-width: 132px;
        font-size: 15px;
    }

    .search {
        grid-column: 1 / -1;
        order: 3;
    }

    .cart-button {
        min-height: 42px;
        padding: 0 11px;
    }

    .nav-row {
        padding-bottom: 12px;
    }

    .hero-section {
        padding: 22px 0 20px;
    }

    .hero-card {
        min-height: auto;
        border-radius: 28px;
    }

    .hero-card__content {
        padding: 28px;
    }

    .hero-card h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-card p {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-visual::before {
        right: -160px;
        top: -10px;
    }

    .device--phone {
        width: 132px;
        height: 196px;
        transform: translate(-56px, 10px) rotate(-8deg);
    }

    .device--watch {
        width: 130px;
        height: 130px;
        transform: translate(70px, -14px) rotate(7deg);
    }

    .device--earbuds {
        width: 128px;
        height: 88px;
        transform: translate(20px, 108px) rotate(4deg);
    }

    .section {
        padding: 52px 0;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid,
    .review-cards,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card__media {
        min-height: 220px;
    }

    .newsletter-card {
        border-radius: 28px;
    }

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


/*
======================================================================
V2 UX COMPACT — AJUSTE DA PRIMEIRA DOBRA
Objetivo:
- Reduzir o hero abaixo do header.
- Mostrar categorias/produtos mais cedo.
- Melhorar retenção e navegação inicial.
======================================================================
*/

.hero-section {
    padding: 22px 0 14px;
}

.hero-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    min-height: 355px;
    border-radius: 30px;
}

.hero-card__content {
    padding: clamp(26px, 4vw, 46px);
}

.hero-card h1 {
    max-width: 560px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-card p {
    max-width: 520px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
}

.eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
}

.hero-actions {
    margin-top: 22px;
}

.btn {
    min-height: 44px;
    padding: 0 18px;
}

.hero-benefits {
    margin-top: 18px;
    gap: 8px;
}

.hero-benefits span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
}

.hero-visual {
    min-height: 355px;
}

.hero-visual::before {
    width: 360px;
    height: 360px;
    right: -64px;
    top: 8px;
}

.device--phone {
    width: 132px;
    height: 196px;
    transform: translate(-46px, 12px) rotate(-8deg);
    border-radius: 22px;
}

.device--watch {
    width: 128px;
    height: 128px;
    transform: translate(76px, -18px) rotate(7deg);
    border-width: 11px;
    border-radius: 30px;
}

.device--earbuds {
    width: 128px;
    height: 86px;
    transform: translate(32px, 108px) rotate(4deg);
    border-radius: 28px;
}

.section--compact {
    padding-top: 24px;
}

.section {
    padding: 58px 0;
}

.section-head {
    margin-bottom: 22px;
}

.category-card {
    min-height: 132px;
    padding: 16px;
}

.category-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
}

.product-card__media {
    min-height: 220px;
}

.product-image {
    transform: scale(0.92);
}

/* Primeira dobra mais forte: categorias aparecem mais perto do topo */
#categorias {
    margin-top: 0;
}

/* Mobile: hero precisa virar banner compacto, não bloco gigante */
@media (max-width: 720px) {
    .hero-section {
        padding: 16px 0 10px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 24px;
    }

    .hero-card__content {
        padding: 24px;
    }

    .hero-card h1 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1;
    }

    .hero-card p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-benefits {
        display: none;
    }

    .hero-visual {
        min-height: 190px;
        margin-top: -10px;
    }

    .hero-visual::before {
        width: 270px;
        height: 270px;
        right: -72px;
        top: -30px;
    }

    .device--phone {
        width: 96px;
        height: 142px;
        transform: translate(-48px, -2px) rotate(-8deg);
        border-radius: 18px;
    }

    .device--watch {
        width: 96px;
        height: 96px;
        transform: translate(50px, -16px) rotate(7deg);
        border-width: 8px;
        border-radius: 24px;
    }

    .device--earbuds {
        width: 96px;
        height: 66px;
        transform: translate(4px, 76px) rotate(4deg);
        border-radius: 22px;
    }

    .section {
        padding: 42px 0;
    }

    .section--compact {
        padding-top: 18px;
    }

    .category-card {
        min-height: 118px;
    }

    .product-card__media {
        min-height: 190px;
    }
}

/*
======================================================================
INTEGRAÇÃO PHP — IMPORTADOR FAIXA PRETA
Compatibilidade com páginas internas, carrinho AJAX e estrutura dinâmica.
======================================================================
*/

body {
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv11";
}

.site-main {
    min-height: 60vh;
}

.site-main > .page-head,
.site-main > .listing-layout,
.site-main > .product-detail,
.site-main > .category-grid,
.site-main > .checkout-grid,
.site-main > .cart-page,
.site-main > .simple-page,
.site-main > .order-confirmation,
.site-main > .track-page {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 16px 34px color-mix(in srgb, var(--primary) 26%, transparent); }
.btn-ghost { background: #fff; color: var(--text); box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07); }
.btn-block { width: 100%; margin-top: 10px; }
.btn-lg { min-height: 56px; padding-inline: 26px; }
.link-more { color: var(--primary); font-weight: 950; }

/* Header PHP */
.brand__symbol img { width: 100%; height: 100%; object-fit: contain; }
.cart-button em,
.cart-badge {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}
.category-trigger svg,
.menu-button svg,
.action-link svg,
.cart-button svg { flex: 0 0 auto; }

/* Product card PHP */
.product-card__media img {
    width: 78%;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(15, 23, 42, 0.12));
    transition: transform 0.22s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body a { color: inherit; }
.product-card__body .rating { display: flex; align-items: center; gap: 8px; }
.favorite-button.active,
.favorite-button:hover { color: var(--danger); background: #fff; }
.add-button svg { width: 18px; height: 18px; }

/* Legacy aliases still used by a few internal components */
.pc-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    z-index: 2;
}

/* Page headers */
.page-head {
    padding: 38px 0 20px;
}
.page-head.slim { padding-bottom: 0; }
.page-head h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.065em;
}
.page-meta,
.breadcrumb {
    margin-top: 10px;
    color: var(--text-soft);
    font-weight: 750;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}
.breadcrumb a { color: var(--primary); }

/* Listing */
.listing-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 26px;
    padding: 24px 0 64px;
}
.filter-sidebar {
    align-self: start;
    position: sticky;
    top: 132px;
}
.filter-form {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.82);
    box-shadow: var(--shadow-sm);
}
.filter-block + .filter-block { margin-top: 22px; }
.filter-block h4 {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.filter-block select,
.filter-block input,
.cep-form input,
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    background: var(--surface);
    color: var(--text);
}
.form-row textarea { min-height: 120px; padding-block: 12px; resize: vertical; }
.filter-block select:focus,
.filter-block input:focus,
.cep-form input:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}
.price-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}
.filter-list { list-style: none; display: grid; gap: 8px; }
.filter-list a {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 850;
}
.filter-list a.active,
.filter-list a:hover { background: var(--primary-soft); color: var(--primary); }
.empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 360px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination a,
.pg-btn {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-soft);
    font-weight: 900;
}
.pagination a.active,
.pagination a.is-active,
.pg-btn.active,
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Product detail */
.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    padding: 32px 0 70px;
}
.pd-gallery,
.pd-info,
.pd-tab-content,
.specs-table {
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.84);
    box-shadow: var(--shadow-sm);
}
.pd-gallery { padding: 18px; }
.pd-main {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--bg-soft), #ffffff);
    overflow: hidden;
}
.pd-main img { width: 86%; height: 470px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(15,23,42,.12)); }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.pd-thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    overflow: hidden;
}
.pd-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-info { padding: clamp(24px, 4vw, 42px); }
.pd-info h1 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}
.pd-rating { display: flex; gap: 10px; align-items: center; margin-top: 16px; color: var(--accent); font-weight: 900; }
.pd-rating small { color: var(--text-soft); }
.pd-prices { display: grid; gap: 6px; margin-top: 22px; }
.pd-old { color: var(--muted); text-decoration: line-through; font-weight: 800; }
.pd-price { color: var(--text); font-size: clamp(34px, 4vw, 48px); font-weight: 950; letter-spacing: -0.055em; }
.pd-installments,
.pd-pix { color: var(--text-soft); font-weight: 750; }
.pd-pix strong { color: var(--success); }
.pd-buy { margin-top: 26px; display: grid; gap: 20px; }
.pd-variation label,
.pd-qty label { display: block; margin-bottom: 10px; font-weight: 900; }
.pd-var-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-var-radio input { position: absolute; opacity: 0; pointer-events: none; }
.pd-var-radio span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-soft);
    font-weight: 850;
    cursor: pointer;
}
.pd-var-radio input:checked + span { border-color: var(--primary); background: var(--primary-soft); color: var(--primary); }
.pd-qty { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.pd-qty label { margin: 0; }
.qty-control {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
}
.qty-control button { width: 42px; height: 44px; color: var(--primary); font-weight: 950; }
.qty-control input { width: 54px; height: 44px; border: 0; text-align: center; outline: none; background: transparent; }
.pd-qty small { color: var(--text-soft); font-weight: 800; }
.pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pd-shipping { margin-top: 24px; padding: 18px; border-radius: var(--radius-lg); background: var(--bg-soft); }
.pd-shipping h4 { margin-bottom: 12px; }
.cep-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
#cep-result { margin-top: 12px; color: var(--text-soft); }
.ship-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid var(--line); }
.pd-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; list-style: none; }
.pd-trust li { padding: 12px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); font-weight: 850; font-size: 13px; }
.pd-tabs { display: flex; flex-wrap: wrap; gap: 8px; width: min(100% - 32px, var(--container)); margin: 0 auto 14px; }
.pd-tab { min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--surface); color: var(--text-soft); font-weight: 900; box-shadow: var(--shadow-sm); }
.pd-tab.active,
.pd-tab:hover { background: var(--primary); color: #fff; }
.pd-tab-content { display: none; width: min(100% - 32px, var(--container)); margin: 0 auto; padding: 28px; color: var(--text-soft); line-height: 1.8; }
.pd-tab-content.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; overflow: hidden; }
.specs-table th,
.specs-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.specs-table th { width: 180px; color: var(--text); }

/* Cart drawer integration */
.cart-drawer.open,
.cart-drawer.is-open { transform: translateX(0); }
.overlay.active,
.overlay.is-open { display: block; opacity: 1; pointer-events: auto; }
.overlay { opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.cd-head,
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cd-head h3 { font-size: 26px; letter-spacing: -0.05em; }
.cd-close,
.cart-drawer__header button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 26px;
}
.cd-body,
.cart-drawer__body { flex: 1; padding: 24px 0; overflow: auto; color: var(--text-soft); }
.cd-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 18px; background: var(--bg-soft); margin-bottom: 10px; }
.cd-item img { width: 70px; height: 70px; object-fit: contain; border-radius: 14px; background: #fff; }
.cd-info a { display: block; color: var(--text); font-weight: 900; font-size: 14px; }
.cd-info small { color: var(--muted); }
.cd-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.cd-qty button { width: 28px; height: 28px; border-radius: 50%; background: var(--surface); color: var(--primary); font-weight: 950; }
.cd-price { text-align: right; }
.cd-remove { display: block; margin-top: 6px; color: var(--danger); font-size: 12px; font-weight: 850; }
.cd-foot,
.cart-drawer__footer { display: grid; gap: 12px; }
.cd-row,
.cart-drawer__footer > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text-soft); }
.cd-total strong { color: var(--text); font-size: 20px; }
.cd-checkout,
.cd-view { width: 100%; }
.toast.active,
.toast.is-open { transform: translate(-50%, 0); }
.toast.toast-error { background: var(--danger); }
.toast.toast-success { background: var(--success); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: min(360px, 92%);
    height: 100vh;
    padding: 24px;
    background: var(--surface);
    box-shadow: 20px 0 70px rgba(15, 23, 42, 0.22);
    transform: translateX(-105%);
    transition: transform .25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; }
.mm-close { width: 42px; height: 42px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); font-size: 26px; }
.mm-list { display: grid; gap: 8px; margin-top: 24px; list-style: none; }
.mm-list a { display: flex; min-height: 46px; align-items: center; padding: 0 14px; border-radius: 14px; color: var(--text-soft); font-weight: 900; }
.mm-list a:hover { background: var(--primary-soft); color: var(--primary); }

/* Footer and WhatsApp */
.whatsapp-float,
.whats-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
    transition: transform .2s ease;
}
.whatsapp-float:hover,
.whats-float:hover { transform: scale(1.06); }

/* Simple internal pages */
.simple-card,
.contact-card,
.track-card,
.cart-table,
.checkout-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.table { width: 100%; border-collapse: collapse; }
.table th,
.table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; }

/* Flash */
.flash {
    width: min(100% - 32px, var(--container));
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 850;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.flash--success { color: var(--success); }
.flash--error { color: var(--danger); }
.flash--info { color: var(--primary); }

@media (max-width: 1080px) {
    .listing-layout,
    .product-detail { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .pd-main { min-height: 380px; }
    .pd-main img { height: 340px; }
}

@media (max-width: 720px) {
    .site-main > .page-head,
    .site-main > .listing-layout,
    .site-main > .product-detail,
    .site-main > .category-grid,
    .site-main > .checkout-grid,
    .site-main > .cart-page,
    .site-main > .simple-page,
    .site-main > .order-confirmation,
    .site-main > .track-page {
        width: min(100% - 22px, var(--container));
    }
    .listing-layout { padding-top: 16px; }
    .filter-form { padding: 18px; }
    .pd-info { padding: 22px; }
    .pd-actions,
    .pd-trust,
    .cep-form { grid-template-columns: 1fr; }
    .pd-main { min-height: 300px; }
    .pd-main img { height: 260px; }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); }
    .cd-item { grid-template-columns: 56px 1fr; }
    .cd-price { grid-column: 1 / -1; text-align: left; }
}

/* Details-based FAQ generated by PHP */
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    min-height: 62px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 950;
    text-align: left;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item details p,
details.faq-item p {
    display: block;
    padding: 0 20px 20px;
    color: var(--text-soft);
    line-height: 1.65;
}

/*
======================================================================
IMPORTADOR FAIXA PRETA — PRO UI SYSTEM V3
Arquivo: /assets/css/base.css
Objetivo: lapidação visual premium sem alterar regras de negócio PHP.
======================================================================
*/
:root {
    --bg: #f7faff;
    --bg-soft: #edf5ff;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --text: #071326;
    --text-soft: #44546a;
    --muted: #748196;
    --line: rgba(15, 35, 75, 0.095);
    --primary: #2563eb;
    --primary-2: #60a5fa;
    --primary-3: #0f3ea8;
    --primary-soft: rgba(37, 99, 235, 0.105);
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-xs: 0 8px 22px rgba(15, 23, 42, 0.055);
    --shadow-sm: 0 16px 38px rgba(15, 23, 42, 0.075);
    --shadow-md: 0 30px 84px rgba(15, 23, 42, 0.11);
    --shadow-blue: 0 18px 42px rgba(37, 99, 235, 0.22);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1120px;
}

html[data-theme="mint"] {
    --bg: #f6fffc;
    --bg-soft: #eafbf6;
    --surface-2: #f5fffb;
    --primary: #0f766e;
    --primary-2: #2dd4bf;
    --primary-3: #0c4a45;
    --primary-soft: rgba(15, 118, 110, 0.105);
    --line: rgba(15, 118, 110, 0.105);
}

html[data-theme="sand"] {
    --bg: #fffaf3;
    --bg-soft: #fff1da;
    --surface-2: #fffaf2;
    --primary: #c26913;
    --primary-2: #f59e0b;
    --primary-3: #7c3c08;
    --primary-soft: rgba(194, 105, 19, 0.105);
    --line: rgba(180, 83, 9, 0.12);
}

html { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

body {
    background:
        radial-gradient(circle at 14% -8%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 90% 3%, rgba(96, 165, 250, 0.13), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 42%, #f8fbff 100%);
    color: var(--text);
}

.container { width: min(100% - 42px, var(--container)); }

.top-strip {
    background: linear-gradient(90deg, #071326, #0e1b31);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    letter-spacing: .01em;
}

.top-strip__inner {
    min-height: 32px;
    gap: clamp(18px, 7vw, 92px);
}

.top-strip__inner span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.91);
}

.top-strip__inner span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-2), #fff);
    box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.site-header {
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(15, 35, 75, .08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .045);
    backdrop-filter: blur(22px) saturate(1.25);
}

.header-main {
    grid-template-columns: minmax(180px, auto) minmax(260px, 1fr) auto;
    gap: 18px;
    padding: 18px 0 14px;
}

.brand { gap: 12px; }

.brand__symbol {
    position: relative;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 14px;
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,.98), rgba(255,255,255,.15) 18%, transparent 20%),
        linear-gradient(145deg, var(--primary), var(--primary-2));
    color: transparent;
    font-size: 0;
    box-shadow: var(--shadow-blue);
}

.brand__symbol::before,
.brand__symbol::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: #fff;
}

.brand__symbol::before {
    width: 16px;
    height: 8px;
    left: 10px;
    top: 17px;
    transform: rotate(42deg);
}

.brand__symbol::after {
    width: 22px;
    height: 8px;
    right: 7px;
    top: 15px;
    transform: rotate(-45deg);
}

.brand__copy strong {
    max-width: 210px;
    color: #0b172a;
    font-size: 15px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.search {
    min-height: 48px;
    grid-template-columns: 1fr 46px;
    border: 1px solid rgba(15, 35, 75, .09);
    background: rgba(255,255,255,.94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 12px 32px rgba(15,23,42,.045);
}

.search:focus-within {
    border-color: color-mix(in srgb, var(--primary) 46%, #fff);
    box-shadow: 0 0 0 4px var(--primary-soft), 0 18px 36px rgba(15,23,42,.065);
}

.search button {
    width: 38px;
    height: 38px;
    margin: 5px 6px 5px 2px;
    font-size: 18px;
    box-shadow: 0 12px 24px rgba(37,99,235,.20);
}

.header-actions { gap: 8px; }

.action-link {
    min-height: 40px;
    padding: 0 12px;
    color: #34445b;
    font-size: 12.5px;
    font-weight: 850;
}

.action-link__icon { color: var(--primary); }

.cart-button {
    min-height: 40px;
    padding: 0 12px;
    background: #0a1425;
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    box-shadow: 0 14px 28px rgba(8,16,32,.18);
}

.cart-button strong,
.cart-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

.nav-row {
    padding: 0 0 14px;
    gap: 18px;
}

.category-trigger {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, #fff);
    background: color-mix(in srgb, var(--primary) 8%, #fff);
    color: var(--primary);
    box-shadow: 0 10px 24px rgba(37,99,235,.08);
}

.main-nav {
    gap: 22px;
    color: #43546a;
    font-size: 12.5px;
    font-weight: 850;
}

.main-nav a::after { bottom: -10px; height: 2px; }

.theme-switcher { gap: 7px; }

.theme-dot {
    width: 16px;
    height: 16px;
    border-width: 2px;
    box-shadow: 0 0 0 1px rgba(15,35,75,.12), 0 6px 16px rgba(15,23,42,.12);
}

.hero-section { padding: 28px 0 32px; }

.hero-card {
    position: relative;
    grid-template-columns: minmax(0, .98fr) minmax(370px, 1.02fr);
    min-height: 435px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 78% 22%, rgba(96,165,250,.22), transparent 28%),
        radial-gradient(circle at 18% 6%, rgba(255,255,255,.95), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f2f7ff 48%, #eaf3ff 100%);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 32px 96px rgba(15,23,42,.10), inset 0 1px 0 #fff;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 52%, rgba(37,99,235,.08) 52.2%, transparent 52.8%),
        radial-gradient(circle at 82% 64%, rgba(37,99,235,.10), transparent 23%);
}

.hero-card__content {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 5vw, 58px);
}

.eyebrow,
.section-label {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
}

.hero-card h1 {
    max-width: 560px;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: .95;
    letter-spacing: -.075em;
    color: #09162a;
}

.hero-card p {
    max-width: 520px;
    margin-top: 18px;
    color: #506179;
    font-size: 16px;
    line-height: 1.68;
}

.hero-actions { margin-top: 26px; gap: 12px; }

.btn {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    letter-spacing: -.01em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.btn--ghost {
    background: rgba(255,255,255,.88);
    color: #102039;
    border: 1px solid rgba(15,35,75,.08);
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.hero-benefits {
    margin-top: 28px;
    gap: 10px 18px;
}

.hero-benefits span {
    min-height: 34px;
    padding: 0;
    background: transparent;
    color: #263854;
    font-size: 12px;
    font-weight: 850;
}

.hero-benefits span::first-letter { color: var(--primary); }

.hero-visual {
    min-height: 435px;
    isolation: isolate;
}

.hero-visual::before {
    width: 430px;
    height: 430px;
    right: 28px;
    top: 14px;
    background:
        radial-gradient(circle at 52% 42%, rgba(255,255,255,.98) 0 26%, transparent 27%),
        radial-gradient(circle, rgba(96,165,250,.20), rgba(37,99,235,.06) 55%, transparent 70%);
}

.hero-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 44px;
    width: 330px;
    height: 76px;
    transform: translateX(-35%);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(199,219,250,.72));
    box-shadow: 0 25px 46px rgba(37,99,235,.18), inset 0 1px 0 #fff;
    z-index: 0;
}

.device { z-index: 2; }

.device--phone {
    width: 162px;
    height: 238px;
    border-radius: 34px;
    transform: translate(-72px, -3px) rotate(-11deg);
    background:
        radial-gradient(circle at 38px 38px, #020617 0 10px, transparent 11px),
        radial-gradient(circle at 72px 38px, #020617 0 10px, transparent 11px),
        radial-gradient(circle at 38px 72px, #020617 0 10px, transparent 11px),
        linear-gradient(150deg, #e8effa 0 42%, #9fb0c8 43% 54%, #111827 55% 100%);
    box-shadow: 0 30px 58px rgba(15,23,42,.24);
}

.device--watch {
    width: 158px;
    height: 158px;
    border: 12px solid #111827;
    border-radius: 34px;
    transform: translate(98px, -28px) rotate(7deg);
    background:
        radial-gradient(circle, #dbeafe 0 30px, #111827 31px 34px, transparent 35px),
        conic-gradient(from 180deg, var(--primary), #bfdbfe, #fff, var(--primary));
}

.device--earbuds {
    width: 178px;
    height: 122px;
    transform: translate(32px, 124px) rotate(2deg);
    border-radius: 38px;
    background:
        radial-gradient(circle at 60px 44px, #fff 0 20px, #dceaff 21px 34px, transparent 35px),
        radial-gradient(circle at 118px 44px, #fff 0 20px, #dceaff 21px 34px, transparent 35px),
        linear-gradient(180deg, #fff, #e7f0ff);
}

.section { padding: 66px 0; }
.section--compact { padding-top: 32px; }
.section--soft {
    background:
        linear-gradient(180deg, transparent 0%, rgba(237,245,255,.76) 18%, rgba(237,245,255,.78) 82%, transparent 100%);
}

.section-head {
    margin-bottom: 26px;
    align-items: end;
}

.section-head h2,
.showcase-copy h2,
.reviews-summary h2,
.newsletter-card h2,
.faq-layout h2 {
    color: #09162a;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.02;
    letter-spacing: -.068em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
}

.category-grid {
    gap: 16px;
}

.category-card {
    min-height: 132px;
    border: 1px solid rgba(15,35,75,.07);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-xs);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.category-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    box-shadow: inset 0 -10px 18px rgba(15,23,42,.045), 0 14px 24px rgba(37,99,235,.12);
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    border: 1px solid rgba(15,35,75,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(15,23,42,.072);
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15,23,42,.12);
}

.product-card__media {
    min-height: 250px;
    border-bottom: 1px solid rgba(15,35,75,.055);
    background:
        radial-gradient(circle at 72% 22%, rgba(37,99,235,.12), transparent 24%),
        radial-gradient(circle at 24% 76%, rgba(96,165,250,.08), transparent 25%),
        linear-gradient(180deg, #f7fbff, #eef6ff);
}

.product-card__media::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 46%;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(37,99,235,.10);
    filter: blur(6px);
}

.product-card__media img {
    position: relative;
    z-index: 1;
    width: min(78%, 190px);
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(15,23,42,.16));
}

.favorite-button {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(15,35,75,.08);
    background: rgba(255,255,255,.9);
    color: #64748b;
}

.favorite-button.active,
.favorite-button:hover {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 12px 24px rgba(37,99,235,.12);
}

.discount-badge {
    left: 14px;
    top: 14px;
    min-height: 27px;
    padding: 0 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 22px rgba(37,99,235,.18);
}

.product-card__body { padding: 20px; }
.product-card__body > small { color: #6b7a91; font-size: 12px; }
.product-card h3 { min-height: 45px; font-size: 17px; }
.rating { color: var(--accent); }
.price-row { align-items: end; margin-top: 18px; }
.price-row strong { color: #071326; font-size: 25px; }
.add-button {
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.product-filters { gap: 10px; }
.filter-button {
    min-height: 38px;
    border: 1px solid rgba(15,35,75,.07);
    background: #fff;
    color: #42526a;
}
.filter-button.is-active, .filter-button:hover { box-shadow: 0 12px 28px rgba(37,99,235,.16); }

.split-showcase {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
}

.showcase-copy {
    padding: clamp(26px, 4vw, 38px);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(240,247,255,.78));
    border: 1px solid rgba(15,35,75,.06);
    box-shadow: var(--shadow-xs);
}

.benefit-board article,
.trust-card,
.review-cards article,
.score-box,
.faq-item {
    border: 1px solid rgba(15,35,75,.07);
    background: rgba(255,255,255,.90);
    box-shadow: var(--shadow-xs);
}

.benefit-board article { padding: 20px; border-radius: 18px; }
.benefit-board span { background: var(--primary-soft); color: var(--primary); }
.trust-grid { gap: 18px; }
.trust-card { min-height: 142px; padding: 24px; }
.trust-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--primary-soft); font-size: 22px; }

.reviews-layout { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 46px; }
.review-cards article { min-height: 216px; }

.newsletter-card {
    grid-template-columns: minmax(0, .95fr) minmax(330px, .75fr);
    border: 1px solid rgba(255,255,255,.20);
    background:
        radial-gradient(circle at 92% 16%, rgba(255,255,255,.22), transparent 24%),
        linear-gradient(135deg, #0b1b38 0%, #1d4ed8 52%, #bfdbfe 145%);
    box-shadow: 0 28px 70px rgba(29,78,216,.20);
}

.newsletter-form input {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.20);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,.55);
    box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}

.faq-item { overflow: hidden; }
.faq-item button,
.faq-item summary { min-height: 58px; }

.site-footer {
    margin-top: 36px;
    padding: 56px 0 24px;
    background: rgba(255,255,255,.93);
    color: var(--text);
    border-top: 1px solid rgba(15,35,75,.08);
}

.footer-brand p,
.site-footer a:not(.brand),
.footer-bottom { color: #64748b; }
.site-footer .brand__symbol { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.site-footer h3 { color: #0b172a; }
.footer-bottom { border-top-color: rgba(15,35,75,.08); }

.cart-drawer,
.mobile-menu {
    border-left: 1px solid rgba(15,35,75,.08);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
}

.whatsapp-float {
    box-shadow: 0 18px 46px rgba(16,185,129,.28);
}

@media (max-width: 1080px) {
    .header-main { grid-template-columns: auto minmax(200px,1fr) auto; }
    .hero-card { grid-template-columns: 1fr; }
    .hero-visual { min-height: 315px; }
    .hero-visual::after { transform: translateX(-50%); }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .container { width: min(100% - 24px, var(--container)); }
    .header-main { grid-template-columns: 1fr auto; padding: 14px 0; }
    .brand__copy strong { max-width: 150px; }
    .search { order: 3; grid-column: 1 / -1; }
    .hero-section { padding: 18px 0 24px; }
    .hero-card { border-radius: 24px; }
    .hero-card__content { padding: 26px; }
    .hero-card h1 { font-size: clamp(32px, 10vw, 44px); }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-visual { min-height: 225px; margin-top: -8px; }
    .hero-visual::before { width: 280px; height: 280px; right: -58px; top: -28px; }
    .hero-visual::after { width: 220px; bottom: 22px; }
    .device--phone { width: 104px; height: 154px; transform: translate(-54px, -7px) rotate(-10deg); }
    .device--watch { width: 100px; height: 100px; transform: translate(54px, -18px) rotate(7deg); border-width: 8px; }
    .device--earbuds { width: 112px; height: 76px; transform: translate(8px, 78px) rotate(2deg); }
    .section { padding: 46px 0; }
    .section-head { align-items: start; flex-direction: column; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-card { min-height: 118px; }
    .product-grid, .trust-grid, .reviews-layout, .review-cards, .split-showcase, .newsletter-card, .faq-layout, .footer-grid { grid-template-columns: 1fr; }
    .product-card__media { min-height: 210px; }
    .newsletter-card { border-radius: 24px; }
}

/* ======================================================================
   V4 PRO — Descrição HTML renderizada com acabamento editorial
====================================================================== */
.pd-description-content {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
}
.pd-description-content h2,
.pd-description-content h3,
.pd-description-content h4 {
  margin: 26px 0 12px;
  color: var(--text);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.16;
}
.pd-description-content h2 { font-size: 28px; }
.pd-description-content h3 { font-size: 21px; }
.pd-description-content h4 { font-size: 17px; }
.pd-description-content p { margin: 0 0 16px; }
.pd-description-content ul,
.pd-description-content ol {
  display: grid;
  gap: 9px;
  margin: 12px 0 22px;
  padding-left: 0;
  list-style: none;
}
.pd-description-content li {
  position: relative;
  padding-left: 28px;
}
.pd-description-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 5px var(--primary-soft);
}
.pd-description-content strong { color: var(--text); font-weight: 950; }
.pd-description-content blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: var(--primary-soft);
  color: var(--text);
  font-weight: 750;
}
.pd-description-content table {
  width: 100%;
  margin: 18px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.pd-description-content th,
.pd-description-content td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.pd-description-content tr:last-child th,
.pd-description-content tr:last-child td { border-bottom: 0; }
.pd-description-content th { background: var(--surface-2); color: var(--text); }

/* =====================================================================
   V5 PRO — Rastreamento público
   ===================================================================== */
.track-page {
    display: grid;
    gap: 20px;
    padding-bottom: 70px;
}
.track-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}
.track-form input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    outline: none;
}
.track-result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.track-result-head h3 {
    margin-top: 6px;
    color: var(--text);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -.055em;
}
.track-result-head > strong {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.track-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.track-status-grid article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-2);
}
.track-status-grid span,
.tracking-box span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.track-status-grid strong {
    color: var(--text);
    font-size: 15px;
}
.tracking-box {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
}
.tracking-box > strong {
    color: var(--text);
    font-size: 22px;
    letter-spacing: .04em;
}
.public-timeline {
    margin-top: 26px;
}
.public-timeline h4 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 18px;
    font-weight: 950;
}
.public-timeline article {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}
.public-timeline article > span {
    width: 12px;
    height: 12px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px var(--primary-soft);
}
.public-timeline strong { color: var(--text); }
.public-timeline p { margin-top: 5px; color: var(--text-soft); line-height: 1.6; }
.public-timeline small { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; font-weight: 800; }

@media (max-width: 720px) {
    .track-form, .track-status-grid { grid-template-columns: 1fr; }
    .track-result-head { flex-direction: column; }
}

/* ======================================================================
   V6 PREMIUM — PÁGINAS ESTÁTICAS / LEGAL / CONTATO
   ====================================================================== */
.static-hero {
    padding: 56px 0 24px;
}
.static-hero__inner {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 36px;
    background:
        radial-gradient(circle at 86% 18%, rgba(96,165,250,.22), transparent 28%),
        radial-gradient(circle at 10% 0%, rgba(37,99,235,.12), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.96), color-mix(in srgb, var(--primary) 5%, #fff));
    box-shadow: var(--shadow-md);
}
.static-hero__inner h1 {
    max-width: 760px;
    font-size: clamp(36px, 5.6vw, 68px);
    line-height: .96;
    letter-spacing: -.07em;
}
.static-hero__inner p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}
.static-layout {
    display: grid;
    grid-template-columns: minmax(260px, .35fr) minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0 72px;
}
.static-sidebar-card,
.static-content-card,
.contact-info-card,
.contact-form-premium {
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}
.static-sidebar-card {
    align-self: start;
    position: sticky;
    top: 142px;
    display: grid;
    gap: 14px;
    padding: 24px;
}
.static-sidebar-card strong,
.contact-info-card > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.static-sidebar-card p {
    color: var(--text-soft);
    line-height: 1.65;
}
.static-content-card {
    padding: clamp(28px, 4vw, 48px);
}
.static-content-card h2 {
    margin: 28px 0 10px;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -.045em;
}
.static-content-card h2:first-child { margin-top: 0; }
.static-content-card p,
.static-content-card li {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}
.static-content-card ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 22px 20px;
}
.contact-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
    gap: 24px;
    padding: 28px 0 72px;
}
.contact-info-card {
    align-self: start;
    padding: clamp(28px, 4vw, 44px);
    background:
        radial-gradient(circle at 90% 0%, var(--primary-soft), transparent 30%),
        rgba(255,255,255,.9);
}
.contact-info-card h2 {
    margin-top: 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -.065em;
}
.contact-methods {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.contact-methods article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
}
.contact-methods strong { display: block; margin-bottom: 4px; }
.contact-methods p { color: var(--text-soft); }
.contact-form-premium {
    display: grid;
    gap: 16px;
    padding: clamp(24px, 4vw, 38px);
}
.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 850;
}
.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    background: #fff;
    color: var(--text);
    box-shadow: 0 8px 18px rgba(15,23,42,.035);
}
.form-field textarea { min-height: 132px; padding-top: 14px; resize: vertical; }
.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 850;
}
.alert-success { background: rgba(16,185,129,.10); color: #047857; border: 1px solid rgba(16,185,129,.18); }
.alert-error { background: rgba(239,68,68,.10); color: #b91c1c; border: 1px solid rgba(239,68,68,.18); }
.error-premium {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 80px 0;
}
.error-premium .error-num {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: clamp(76px, 12vw, 150px);
    font-weight: 950;
    line-height: .82;
    letter-spacing: -.08em;
}
.error-premium h1 {
    max-width: 760px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.07em;
}
.error-premium p {
    max-width: 620px;
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}
.confirm-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}
@media (max-width: 860px) {
    .static-layout,
    .contact-premium-grid { grid-template-columns: 1fr; }
    .static-sidebar-card { position: static; }
}
@media (max-width: 640px) {
    .static-hero { padding-top: 28px; }
    .static-hero__inner { border-radius: 26px; padding: 28px; }
    .static-layout,
    .contact-premium-grid { padding-bottom: 46px; }
}
