/* ==============================================
   CARVÃƒO CAMPEÃƒO â€” Design System
   ============================================== */

:root {
    --bg:        #0c0806;
    --surface:   #181210;
    --surface-2: #201612;
    --border:    rgba(255, 210, 170, 0.12);
    --text:      #f2e8dc;
    --muted:     #c4a98e;
    --faint:     #8a7060;
    --orange:    #ff4500;
    --amber:     #ffb300;
    --green:     #22c35e;
    --ink:       #1a0a04;
    --nav-h:     68px;
    --ease:      cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l14 9-6 1.5L10 20z' fill='%23ffb300' stroke='%23a06800' stroke-width='1'/%3E%3C/svg%3E") 5 3, auto;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0c0806; }
::-webkit-scrollbar-thumb { background: rgba(255,179,0,.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,179,0,.45); }
html { scrollbar-color: rgba(255,179,0,.25) #0c0806; scrollbar-width: thin; }

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, #ff4500 0%, #ffb300 100%);
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(255,69,0,.28);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,69,0,.44); }

.btn-ghost {
    background: rgba(255,255,255,.06);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.28);
}
.btn-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,.44); }

.btn-lg    { padding: 16px 30px; font-size: 1rem; border-radius: 16px; }
.btn-block { width: 100%; }

.btn-link {
    background: none;
    border: 0;
    color: var(--faint);
    font-size: 0.84rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 8px;
    transition: color 160ms;
}
.btn-link:hover { color: var(--muted); }

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(12,8,6,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,69,0,.25));
}
/* Navbar teams carousel */
.nav-teams-carousel {
    position: relative;
    width: 40px; height: 40px;
    display: block;
}
.nav-team {
    position: absolute;
    inset: 0;
    width: 40px; height: 40px;
    object-fit: contain;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .5s ease, transform .5s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.nav-team.active {
    opacity: 1;
    transform: scale(1);
}
.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: .85;
}

.nav-menu { display: flex; gap: 4px; margin-left: auto; }
.nav-menu a {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .9rem;
    color: var(--muted);
    transition: color 160ms, background 160ms;
}
.nav-menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }

.cart-btn {
    position: relative;
    width: 46px; height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 160ms, transform 160ms;
}
.cart-btn:hover { background: rgba(255,255,255,.12); transform: scale(1.05); }

.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--orange);
    color: var(--ink);
    font-size: .7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    transition: transform 200ms var(--ease);
}
.cart-badge.hidden { display: none; }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 72% 28%, rgba(255,69,0,.22), transparent),
        radial-gradient(ellipse 35% 35% at 20% 80%, rgba(255,179,0,.10), transparent),
        linear-gradient(170deg, #120908 0%, #0c0705 100%);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-1 {
    width: 520px; height: 520px;
    top: -120px; right: -120px;
    background: radial-gradient(circle, #ff4500 0%, transparent 70%);
    animation: heroGlow 9s ease-in-out infinite alternate;
}
.hero-glow-2 {
    width: 420px; height: 420px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, #ffb300 0%, transparent 70%);
    opacity: .35;
    animation: heroGlow 11s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,20px) scale(1.1); }
}

/* Brasas flutuantes */
.hero-embers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ember {
    position: absolute;
    bottom: -10px;
    left: var(--x);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: radial-gradient(circle, #ff6a1a, #ff4500);
    opacity: var(--opacity);
    box-shadow: 0 0 6px 2px rgba(255,106,26,.4);
    animation: emberFloat var(--d) ease-in infinite var(--delay);
}
@keyframes emberFloat {
    0%   { transform: translateY(0) scale(1); opacity: var(--opacity); }
    50%  { opacity: calc(var(--opacity) + .2); }
    100% { transform: translateY(-100vh) scale(.3); opacity: 0; }
}

.hero-layout {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 140px;
    padding-block: 80px 56px;
    position: relative;
    z-index: 1;
}
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 10px 18px 10px 10px;
    border-radius: 99px;
    background: rgba(15,8,6,.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,180,120,.22);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
    animation: heroPillFloat 4s ease-in-out infinite;
}
.hero-pill img:not(.hero-pill-team) {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 4px;
    flex-shrink: 0;
}
/* Carousel de times na pill */
.hero-pill-teams {
    position: relative;
    width: 36px; height: 36px;
    flex-shrink: 0;
    overflow: visible;
}
.hero-pill-team {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 110px; height: 110px;
    background: none;
    object-fit: contain;
    padding: 0;
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}
.hero-pill-team.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.hero-pill-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.hero-pill-text strong {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
}
.hero-pill-text > span {
    font-size: .72rem;
    color: #ffb088;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
@keyframes heroPillFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.hero-pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ff6a1a;
    box-shadow: 0 0 0 4px rgba(255,106,26,.22), 0 0 12px #ff6a1a;
    animation: heroPulse 1.8s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: .55; transform: scale(.85); }
}
.hero-text h1 {
    font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-shadow: 0 16px 40px rgba(0,0,0,.32);
    position: relative;
    margin: 0;
}
.hero-text h1::after {
    content: '';
    display: block;
    width: min(180px, 38%);
    height: 6px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4500, #ffb300);
    box-shadow: 0 0 26px rgba(255,120,0,.4);
}
.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #ff6a1a 0%, #ffb300 60%, #ffd76b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 22px rgba(255,110,0,.25));
}
.hero-lead {
    margin: -8px 0 0;
    font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #ffd39e;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 46ch;
    line-height: 1.7;
    margin: 0;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.hero-badges {
    list-style: none;
    padding: 0; margin: 12px 0 0;
    display: flex; flex-wrap: nowrap; gap: 18px;
    white-space: nowrap;
}
.hero-badges li {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .85rem; color: #d8c7b3; font-weight: 500;
    white-space: nowrap;
}
.hero-badges svg {
    color: #ff8a4c;
    padding: 4px;
    background: rgba(255,138,76,.12);
    border-radius: 999px;
    box-sizing: content-box;
}

/* ---- Hero Visual / Video ---- */
.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: flex-end;
}
.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,.65);
}
.hero-video-wrap:hover { }
.hero-video {
    display: block;
    width: 100%; height: 100%;
    border: none;
    object-fit: cover;
    object-position: center;
}
.hero-video-badge {
    position: absolute;
    left: 18px; bottom: 18px;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px 10px 10px;
    border-radius: 99px;
    background: rgba(15,8,6,.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,180,120,.22);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
    z-index: 3;
    animation: heroBadgeFloat 4s ease-in-out infinite;
}
.hero-video-badge img {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 4px;
}
.hero-video-badge strong {
    display: block;
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
}
.hero-video-badge span {
    font-size: .72rem;
    color: #ffb088;
    text-transform: uppercase;
    letter-spacing: .08em;
}
@keyframes heroBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ---- Faixa de Times ---- */
.hero-teams-strip {
    position: relative; z-index: 1;
    padding: 22px 0;
    border-top: 1px solid rgba(255,210,170,.08);
    border-bottom: 1px solid rgba(255,210,170,.08);
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.025) 30%, rgba(255,255,255,.025) 70%, transparent);
}
.hero-teams-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
}
.hero-teams-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c4a98e;
}
.hero-teams {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    perspective: 900px;
}
.hero-team {
    position: relative;
    width: 92px; height: 92px;
    border-radius: 50%;
    display: grid; place-items: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.10) 0%, transparent 55%),
        linear-gradient(160deg, #2a1612 0%, #170a08 55%, #0c0504 100%);
    border: 1px solid rgba(255,170,100,.28);
    box-shadow:
        0 18px 36px rgba(0,0,0,.55),
        0 4px 8px rgba(0,0,0,.4),
        inset 0 2px 4px rgba(255,200,150,.18),
        inset 0 -6px 12px rgba(0,0,0,.5),
        0 0 30px rgba(255,120,40,.22);
    transform-style: preserve-3d;
    transform: perspective(600px) rotateX(10deg) rotateY(-8deg);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    animation: heroTeam3D 5s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.hero-team::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 45%);
    pointer-events: none;
    z-index: 2;
}
.hero-team::after {
    content: '';
    position: absolute;
    left: 10%; right: 10%;
    bottom: -16px; height: 16px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 70%);
    filter: blur(7px);
    z-index: -1;
    transition: opacity .35s ease, transform .35s ease;
}
.hero-team:hover {
    transform: perspective(600px) rotateX(0) rotateY(0) translateY(-12px) scale(1.1);
    box-shadow:
        0 28px 50px rgba(0,0,0,.6),
        0 8px 14px rgba(0,0,0,.5),
        inset 0 2px 4px rgba(255,200,150,.22),
        inset 0 -6px 12px rgba(0,0,0,.5),
        0 0 44px rgba(255,140,40,.45);
}
.hero-team:hover::after { transform: scaleX(1.2); opacity: .9; }
.hero-team img {
    width: 78%; height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.2));
}
.hero-team-inner {
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 32% 28%, #ffffff 0%, #f0f0f0 60%, #d4d4d4 100%);
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,.95),
        inset 0 -4px 8px rgba(0,0,0,.18),
        0 2px 4px rgba(0,0,0,.35);
    transform: translateZ(14px);
    z-index: 1;
}
@keyframes heroTeam3D {
    0%, 100% { transform: perspective(600px) rotateX(10deg) rotateY(-8deg) translateY(0); }
    50%      { transform: perspective(600px) rotateX(6deg)  rotateY(8deg)  translateY(-6px); }
}
@keyframes heroTeamFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.hero-stats {
    position: relative; z-index: 1;
    margin-top: 0;
    padding: 64px 0 72px;
    background: linear-gradient(180deg, var(--bg) 0%, #110d0a 100%);
}
.hero-stats::before {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    width: 200px; height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
    box-shadow: 0 0 20px rgba(255,179,0,.4);
}
.hero-stats::after { display: none; }
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}
.hero-stat {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    padding: 28px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,179,0,.1);
    transition: transform .3s ease, border-color .3s ease;
}
.hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255,179,0,.3);
}
.hero-stat::before { display: none; }
.hero-stat-icon {
    position: relative;
    display: grid; place-items: center;
    width: 46px; height: 46px;
    border-radius: 14px;
    color: var(--amber);
    background: rgba(255,179,0,.08);
    border: 1px solid rgba(255,179,0,.15);
    margin-bottom: 4px;
}
.hero-stat-icon svg { width: 22px; height: 22px; }
.hero-stat strong {
    position: relative;
    font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
    font-size: 2.2rem; font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -.01em;
}
.hero-stat span:not(.hero-stat-icon) {
    position: relative;
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
}

/* ---- Section Head ---- */
.section-head { margin-bottom: 44px; max-width: 58ch; }
.section-head.centered { text-align: center; margin-inline: auto; }
.section-label {
    display: inline-block;
    font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--orange);
    margin-bottom: 10px;
}
.section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

.products-section { padding: 96px 0; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.product-card-preview {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.product-card-preview:focus-visible {
    outline: 2px solid rgba(255,179,0,.9);
    outline-offset: 4px;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(255,69,0,.16);
    border-color: rgba(255,69,0,.32);
}
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 360ms var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-weight-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 5px 12px; border-radius: 99px;
    background: rgba(12,8,6,.72);
    backdrop-filter: blur(6px);
    color: #f2e8dc;
    font-size: .78rem; font-weight: 700;
    border: 1px solid rgba(255,255,255,.12);
}
.product-body {
    display: flex; flex-direction: column;
    justify-content: space-between;
    flex: 1; padding: 22px; gap: 18px;
}
.product-meta h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.product-meta p  { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.product-buy {
    display: flex; align-items: center;
    justify-content: center; gap: 12px;
}
.product-link-btn {
    min-width: 132px;
}
.product-card-preview .product-link-btn {
    pointer-events: none;
}
.product-price {
    display: inline-flex; align-items: baseline; gap: 3px;
    line-height: 1; flex-shrink: 0;
}
.price-cur {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--amber); letter-spacing: .02em;
}
.price-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--amber);
}
.product-price-atacado {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--amber);
    background: rgba(251,191,36,.12);
    border: 1px solid rgba(251,191,36,.35);
    border-radius: 6px;
    padding: 4px 12px;
    line-height: 1.4;
    flex-shrink: 0;
}
.catalog-cta {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}
.catalog-page-hero {
    padding: 72px 0 18px;
}
.catalog-page-hero-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.catalog-page-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 58ch;
}
.catalog-banner-card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,179,0,.18);
    background:
        radial-gradient(circle at top left, rgba(255,179,0,.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255,69,0,.24), transparent 34%),
        linear-gradient(135deg, #22120b 0%, #140d09 55%, #0f0906 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.catalog-banner-card::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,179,0,.14);
    filter: blur(14px);
}
.catalog-banner-card::after {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,69,0,.16);
    filter: blur(10px);
}
.catalog-banner-badge,
.catalog-banner-note,
.catalog-banner-track {
    position: relative;
    z-index: 1;
}
.catalog-banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #ffd9a3;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.catalog-banner-track {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}
.catalog-banner-marquee {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: catalog-marquee 18s linear infinite;
}
.catalog-banner-marquee span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: .08em;
    white-space: nowrap;
    color: rgba(255,244,230,.98);
    text-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.catalog-banner-marquee-reverse {
    animation-duration: 22s;
    animation-direction: reverse;
}
.catalog-banner-note {
    margin-top: 28px;
    max-width: 36ch;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--muted);
}
.products-page-section {
    padding-top: 32px;
}

@keyframes catalog-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

/* ---- Steps ---- */
.steps-section {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.steps-grid { display: flex; align-items: center; }
.step-card  { flex: 1; padding: 40px 36px; text-align: center; }
.step-arrow { font-size: 2.6rem; color: var(--orange); opacity: .32; flex-shrink: 0; }
.step-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem; font-weight: 900; line-height: 1;
    margin-bottom: 18px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,69,0,.36);
}
.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ---- Footer ---- */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,.18);
}
.footer-inner { width: 100%; }
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
    margin-top: 0;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-email {
    font-weight: 600;
    font-size: 1.08rem;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0;
}
.footer-tagline {
    margin: 0;
    font-size: .87rem;
    color: var(--muted);
}
.footer-nav a {
    color: var(--muted);
    font-size: .9rem;
    padding: 4px 14px;
    position: relative;
    transition: color 160ms var(--ease);
}
.footer-nav a + a::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--faint);
}
.footer-nav a:hover {
    color: var(--text);
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--muted);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .3s ease;
}
.footer-social-link:hover {
    transform: translateY(-4px);
    border-color: transparent;
    color: #fff;
}
.footer-social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform .3s ease;
}
.footer-social-link:hover svg {
    transform: scale(1.12);
}
.footer-social-link.social-whatsapp:hover {
    background: #25d366;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.footer-social-link.social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 8px 24px rgba(225,48,108,.35);
}
.footer-social-link.social-facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 24px rgba(24,119,242,.35);
}
.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom span {
    font-size: .84rem;
    color: var(--faint);
}

/* ---- Cart Overlay ---- */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.64);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0; pointer-events: none;
    transition: opacity 300ms var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ---- Cart Drawer ---- */
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(440px, 100vw);
    z-index: 201;
    background: var(--surface);
    border-left: 1px solid var(--border);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 360ms var(--ease);
    box-shadow: -24px 0 80px rgba(0,0,0,.36);
}
.cart-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-header h3   { font-size: 1.1rem; font-weight: 700; }
.drawer-subtitle    { font-size: .82rem; color: var(--muted); display: block; margin-top: 2px; }
.drawer-close {
    width: 38px; height: 38px;
    border: 1px solid var(--border); border-radius: 10px;
    background: rgba(255,255,255,.06); color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 160ms;
}
.drawer-close:hover { background: rgba(255,255,255,.12); }

.drawer-body   { flex: 1; overflow: hidden; position: relative; }
.drawer-view   {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.drawer-view.hidden { opacity: 0; pointer-events: none; transform: translateX(16px); }

.cart-list {
    flex: 1; overflow-y: auto;
    padding: 16px 24px;
    display: flex; flex-direction: column;
}
.cart-empty-state {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; padding: 48px 0;
    color: var(--faint); text-align: center;
}
.cart-empty-state p    { font-size: 1rem; font-weight: 600; color: var(--muted); }
.cart-empty-state span { font-size: .86rem; }

.cart-item-row {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item-row:last-child { border-bottom: 0; }
.cart-item-thumb {
    position: relative;
    width: 68px; height: 68px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,140,60,.18), transparent 55%),
        linear-gradient(160deg, #2a1612 0%, #170a08 55%, #0c0504 100%);
    border: 1px solid rgba(255,170,100,.22);
    box-shadow:
        inset 0 1px 2px rgba(255,200,150,.15),
        inset 0 -4px 8px rgba(0,0,0,.4),
        0 6px 14px rgba(0,0,0,.4);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.cart-item-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, transparent 45%);
    pointer-events: none;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; filter: drop-shadow(0 4px 6px rgba(0,0,0,.5)); }
.cart-item-info strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-info span   { font-size: .78rem; color: var(--faint); }
.cart-item-ctrl  { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price { font-size: .9rem; font-weight: 700; color: var(--amber); }

.qty-wrap {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 3px;
}
.qty-wrap button {
    width: 28px; height: 28px;
    border: 0; border-radius: 7px;
    background: rgba(255,255,255,.07); color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; line-height: 1;
    transition: background 160ms;
}
.qty-wrap button:hover { background: rgba(255,255,255,.16); }
.qty-wrap span { font-size: .86rem; font-weight: 700; min-width: 20px; text-align: center; }

.drawer-footer {
    flex-shrink: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex; flex-direction: column; gap: 10px;
}
.drawer-total-row {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 6px;
}
.drawer-total-row span    { font-size: .88rem; color: var(--muted); }
.drawer-total-row strong  {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem; font-weight: 800; color: var(--amber);
}

/* ---- Checkout View ---- */
#view-checkout  { overflow-y: auto; padding: 20px 24px; gap: 0; }
.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 0;
    color: var(--muted); cursor: pointer;
    font-size: .86rem; padding: 0;
    margin-bottom: 16px;
    transition: color 160ms; flex-shrink: 0;
}
.back-link:hover { color: var(--text); }
.checkout-summary-box {
    background: rgba(255,69,0,.07);
    border: 1px solid rgba(255,69,0,.2);
    border-radius: 14px;
    padding: 14px 16px; margin-bottom: 18px;
    font-size: .86rem; color: var(--muted); line-height: 1.75;
}
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .84rem; font-weight: 600; color: var(--muted); }
.form-row label span { color: var(--faint); font-weight: 400; }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 12px;
    background: rgba(255,255,255,.04); color: var(--text);
    transition: border-color 160ms;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: rgba(255,69,0,.52); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--faint); }
.form-row select option { background: #1a1210; }

/* ==============================================
   ADMIN STYLES (admin/index.php)
   ============================================== */
.page-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto; padding: 24px 0 64px;
}
.admin-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0; color: #f2e8dc;
    background:
        radial-gradient(circle at top right, rgba(244,81,30,.18), transparent 24%),
        linear-gradient(180deg, #130e0b 0%, #0d0a08 100%);
}
.admin-shell    { padding-top: 36px; }
.admin-header   { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin-bottom: 28px; }
.stats-grid     { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-grid     { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.stat-card, .admin-card {
    border-radius: 22px; padding: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,210,170,.12);
}
.stat-card span   { color: #c4a98e; }
.stat-card strong { font-size: 1.4rem; color: #ffb300; display: block; margin: 8px 0 4px; }
.stat-card p      { font-size: .84rem; color: #8a7060; margin: 0; }
.eyebrow { margin: 0 0 8px; color: #ffca80; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; }
.section-heading    { margin-bottom: 20px; }
.section-heading h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.compact            { margin-bottom: 14px; }
.module-list        { margin: 18px 0 0; padding-left: 20px; line-height: 1.8; }
.product-admin-list { display: grid; gap: 12px; }
.product-admin-item {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(255,210,170,.1);
}
.product-admin-item:last-child { border-bottom: 0; }
.product-admin-item strong { display: block; font-size: .92rem; margin-bottom: 4px; }
.product-admin-item span   { color: #8a7060; font-size: .82rem; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 0 18px;
    border-radius: 14px; font-weight: 700;
    border: 0; cursor: pointer; font-size: .9rem; text-decoration: none;
}
.button.ghost   { background: rgba(255,255,255,.06); color: #f2e8dc; border: 1px solid rgba(255,210,170,.12); }
.button.primary { background: linear-gradient(135deg, #ff4500, #ffb300); color: #1a0a04; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .products-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
    .hero-layout { gap: 80px; }
}
@media (max-width: 980px) {
    .hero-layout { gap: 56px; }
}
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: 56px; gap: 40px;
    }
    .hero-text        { align-items: center; text-align: center; }
    .hero-text h1     { font-size: clamp(2.8rem, 12vw, 4rem); } /* Menor no celular */
    .hero-pill        { align-self: center; }
    .hero-sub         { margin-inline: auto; font-size: 0.95rem; }
    .hero-badges      { justify-content: center; flex-wrap: wrap; gap: 8px; } /* Evita transbordar */
    .hero-teams       { justify-content: center; }
    .hero-ctas        { justify-content: center; flex-direction: column; width: 100%; gap: 12px; }
    .hero-ctas .btn   { width: 100%; }
    .hero-visual      { order: -1; }
    .hero-video-wrap  { border-radius: 18px; max-width: 100%; transform: none; aspect-ratio: 16 / 10; margin-inline: auto; }
    .hero-video-wrap:hover { transform: none; }
    .hero-team        { animation: heroTeamFloat 4s ease-in-out infinite; transform: none; }
    .hero-team:hover  { transform: translateY(-6px) scale(1.08); }
    .hero-teams-inner { gap: 16px; }
    .catalog-page-hero-inner { align-items: stretch; }
    .nav-menu         { display: none; }
    .steps-grid       { flex-direction: column; }
    .step-arrow       { transform: rotate(90deg); font-size: 1.6rem; }
    .admin-grid, .stats-grid, .admin-header { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .products-grid    { grid-template-columns: 1fr; }
    .hero-stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .hero-team        { width: 72px; height: 72px; }
    .footer-top       { gap: 6px; padding-bottom: 12px; }
    .footer-brand     { align-items: center; text-align: center; }
    .footer-nav       { gap: 2px 0; }
    .footer-nav a     { padding: 2px 8px; font-size: .85rem; }
    .footer-bottom    { gap: 6px; padding-top: 12px; }
    .footer-socials   { gap: 12px; }
    .product-buy      { flex-direction: column; align-items: stretch; gap: 10px; }
    .product-link-btn { width: 100%; }
    .section-head     { text-align: center; }
    .catalog-banner-card { min-height: 240px; padding: 22px; }
    .catalog-banner-badge { justify-content: center; }
    .catalog-banner-note { max-width: none; text-align: center; }
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonials-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #110d0a 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.testimonials-track {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 15px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 22px;
    margin-bottom: 32px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.testimonials-track::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-width: calc(33.333% - 15px); /* Mostra 3 cards por vez no desktop */
    flex-shrink: 0;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 8rem; font-weight: 900; line-height: 1;
    color: rgba(255, 69, 0, 0.07);
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,69,0,.3);
    box-shadow: 0 20px 50px rgba(255,69,0,.12);
}
.testimonial-stars {
    color: var(--amber);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex; flex-direction: column; gap: 3px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.testimonial-name     { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-location { font-size: .78rem; color: var(--faint); }
.testimonials-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 8px;
}
.testimonials-dots .dot {
    width: 8px; height: 8px; border-radius: 99px;
    background: rgba(255,179,0,.2);
    border: none; cursor: pointer; padding: 0;
    transition: background .25s, width .25s;
}
.testimonials-dots .dot.active { background: var(--amber); width: 24px; }

/* =============================================
   MAPA DE ENTREGA
   ============================================= */
.delivery-section {
    padding: 96px 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
.delivery-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.delivery-info {
    display: flex; flex-direction: column; gap: 20px;
}
.delivery-info h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; letter-spacing: -.02em; line-height: 1.05; margin: 0;
}
.delivery-info h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #ff6a1a 0%, #ffb300 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.delivery-info > p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin: 0; }
.delivery-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
}
.delivery-features li { display: flex; align-items: flex-start; gap: 14px; }
.delivery-icon        { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.delivery-features strong {
    display: block; font-size: .92rem; font-weight: 700;
    color: var(--text); margin-bottom: 2px;
}
.delivery-features span { font-size: .82rem; color: var(--faint); }
.map-wrapper {
    position: relative; border-radius: 22px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
#delivery-map {
    height: 420px; width: 100%; border-radius: 22px;
    background: #1a1210;
    filter: brightness(.88) contrast(1.05) saturate(.9);
}
.map-marker-pin {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #ff4500, #ffb300);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(255,69,0,.5);
}
.map-marker-pin span { transform: rotate(45deg); font-size: 1.4rem; line-height: 1; margin-top: -2px; }

/* Responsivo: Depoimentos + Mapa */
@media (max-width: 1024px) {
    .testimonials-track { grid-auto-columns: calc(50% - 11px); }
}
@media (max-width: 768px) {
    .testimonials-track { 
        grid-template-rows: 1fr;
        grid-auto-columns: min(300px, 80vw); 
    }
    .delivery-layout { grid-template-columns: 1fr; gap: 36px; }
    #delivery-map    { height: 300px; }
    .delivery-info h2 { font-size: 1.8rem; }
    .testimonials-section, .delivery-section { padding: 64px 0; }
}
@media (max-width: 600px) {
    .testimonials-track { grid-auto-columns: min(260px, 85vw); }
    #delivery-map     { height: 260px; }
    .testimonials-section, .delivery-section { padding: 40px 0; }
}
/* --- Melhorias avançadas de responsividade --- */
@media (max-width: 600px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-block: 32px 16px;
    }
    .hero-text { gap: 14px; }
    .hero-bg, .hero-glow, .hero-glow-1, .hero-glow-2, .hero-embers, .hero-visual { display: none !important; }
    .navbar-inner { gap: 8px; }
    .brand-logo { height: 32px; }
    .nav-teams-carousel, .nav-team { width: 28px; height: 28px; }
    .footer-logo { height: 28px; }
    .nav-menu a { padding: 7px 8px; font-size: 0.95rem; }
    .btn, .btn-primary, .btn-ghost, .btn-whatsapp { padding: 10px 8px; font-size: 1rem; border-radius: 10px; }
    .btn-lg { padding: 12px 10px; font-size: 1rem; }
    .container { width: 100%; max-width: 100vw; padding: 0 2vw; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.1rem; }
    p, .error-msg { font-size: 1rem; }
    .cart-btn { width: 38px; height: 38px; }
    .cart-badge { min-width: 16px; height: 16px; font-size: .65rem; }
    .order-card, .rastreio-wrap { padding: 12px 6px; }
    .order-card { border-radius: 10px; }
    .rastreio-title { font-size: 1.5rem; }
    .rastreio-form input { padding: 10px 10px; font-size: 1rem; border-radius: 8px; }
}
/* --- Responsividade Mobile --- */
@media (max-width: 600px) {
    html { font-size: 15px; }
    body { font-size: 15px; padding: 0 4px; }
    .container { width: 100%; padding: 0 4px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    .btn { padding: 10px 12px; font-size: 0.98rem; }
    nav, header, footer { padding-left: 4px; padding-right: 4px; }
}
