:root {
    --orange: #ef6c28;
    --orange-hover: #d95e1f;
    --grey: #6b6b6b;
    --grey-light: #9a9a9a;
    --dark: #2b2b2b;
    --text: #333333;
    --muted: #666666;
    --bg: #f4f4f4;
    --white: #ffffff;
    --border: #e5e5e5;
    --radius: 8px;
    --radius-pill: 50px;
    --header-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER (igual layout site atual) ========== */
.site-header {
    background: var(--white);
    box-shadow: var(--header-shadow);
}

.head-sticky {
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-inner {
    padding-bottom: 4px;
}

.head-top-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 0 8px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.logo-img {
    width: auto;
    height: 44px;
    max-width: min(100%, 220px);
    object-fit: contain;
}

.head-search-desktop { display: none; }

.head-search-mobile {
    display: flex;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .menu-toggle { display: none; }

    .head-top-row {
        grid-template-columns: minmax(180px, 260px) 1fr auto;
        gap: 24px;
        padding: 16px 0 12px;
    }

    .logo-link { justify-content: flex-start; }

    .logo-img {
        height: 56px;
        max-width: 260px;
    }

    .head-search-desktop {
        display: flex;
        max-width: 100%;
    }

    .head-search-mobile { display: none; }
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.head-action {
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.2s;
}

.head-action:hover { color: var(--orange); }

.head-action-wa { color: #25d366; }
.head-action-wa:hover { color: #1da851; }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Busca — barra arredondada como no site original */
.head-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    overflow: hidden;
    background: var(--white);
}

.head-search input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
}

.head-search input::placeholder { color: var(--grey-light); }

.head-search button {
    border: none;
    background: transparent;
    padding: 0 16px;
    cursor: pointer;
    color: var(--grey);
    display: flex;
    align-items: center;
}

.head-search button:hover { color: var(--orange); }

/* Menu categorias */
.head-nav {
    border-top: 1px solid var(--border);
    background: #fafafa;
    display: none;
}

.head-nav.open {
    display: block;
}

@media (min-width: 992px) {
    .head-nav { display: block; }
}

.head-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 0;
}

.head-nav-list a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.head-nav-list a:hover {
    color: var(--orange);
    background: rgba(239, 108, 40, 0.08);
}

@media (max-width: 991px) {
    .head-nav:not(.open) { display: none; }
    .head-nav.open {
        display: block;
        border-top: 1px solid var(--border);
    }
    .head-nav-list {
        flex-direction: column;
        padding: 8px 0 12px;
    }
}

/* ========== HERO / BANNER ========== */
.hero-slider {
    padding: 16px 0 0;
    background: var(--bg);
}

.hero-banner {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e24 0%, #2d2d35 55%, #1a1a1f 100%);
    min-height: 280px;
    position: relative;
}

.hero-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 32px;
    gap: 24px;
    min-height: 280px;
}

.hero-banner-text h2 {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.hero-banner-text h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-banner-text .hero-brand {
    color: var(--orange);
}

.hero-banner-text p {
    color: #b0b0b0;
    font-size: 0.95rem;
    max-width: 400px;
}

.hero-banner-visual {
    flex-shrink: 0;
    width: 200px;
    opacity: 0.9;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 8px;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
}

.hero-dots button.active { background: var(--dark); }

/* ========== BENEFÍCIOS (faixa horizontal) ========== */
.benefits-bar {
    background: var(--white);
    padding: 16px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 200px;
    scroll-snap-align: start;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.benefit-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.benefit-card span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ========== SEÇÕES ========== */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: left;
}

/* Produtos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
    display: block;
    aspect-ratio: 1;
    background: #eee;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 12px;
}

.product-body h3 {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
    min-height: 2.7em;
    color: var(--text);
}

.product-body h3 a:hover { color: var(--orange); }

.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.btn-primary {
    background: var(--dark);
    color: #fff;
}

.btn-primary:hover { background: #000; }

.btn-sm {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.78rem;
    background: var(--dark);
    color: #fff;
}

/* Categorias */
.categories-section {
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 600px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}

.category-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.category-card:hover {
    border-color: var(--orange);
}

.cat-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Depoimentos */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

.testimonial-card cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
}

/* Footer */
.site-footer {
    background: #f7f7f7;
    color: var(--muted);
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    padding: 40px 0 24px;
}

.site-footer h3 {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 6px; }

.site-footer a {
    font-size: 0.88rem;
    color: var(--muted);
}

.site-footer a:hover { color: var(--orange); }

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.88rem;
}

.newsletter-form button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    text-align: center;
    font-size: 0.82rem;
    background: var(--white);
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ececec;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 300;
    font-size: 0.85rem;
    color: var(--text);
}

.cookie-bar.hidden { display: none; }

.cookie-bar button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 72px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    z-index: 250;
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

.page-stub {
    padding: 60px 0;
    text-align: center;
}

.page-stub h1 { margin-bottom: 12px; }
