:root {
    /* AJUSTE DE CONTRASTE: Cores escurecidas para leitura perfeita (WCAG AA/AAA) */
    --primary-color: #c91e1e;   /* Vermelho mais profundo */
    --primary-dark: #991b1b;
    --secondary-color: #111827; /* Quase preto */
    --secondary-light: #374151;
    --bg-light: #f9fafb;        /* Fundo levemente off-white */
    --white: #ffffff;
    --text-color: #1f2937;      /* Cinza muito escuro para texto principal */
    --ml-blue: #2968c8;
    --success-green: #15803d;   /* Verde mais legível */
    --danger-red: #b91c1c;
    --gray-text: #4b5563;       /* Cinza para textos secundários */
    --gray-disabled: #6c757d;
    
    /* Cores de Categoria (Eyebrows e Highlights) */
    --cat-auto: #374151;
    --cat-casa: #ea580c; /* Laranja escuro */
    --cat-cel: #1e40af;  /* Azul escuro */
    --cat-fit: #15803d;  /* Verde escuro */
    --cat-game: #6d28d9; /* Roxo escuro */
    --cat-info: #155e75; /* Ciano */
    --cat-moda: #be185d; /* Rosa escuro */
    --cat-pet: #a16207;  /* Amarelo ouro escuro */
}

/* Reset e Acessibilidade Básica */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background-color: var(--bg-light); color: var(--text-color); display: flex; flex-direction: column; min-height: 100vh; margin: 0; padding: 0; padding-top: 190px; line-height: 1.5; font-display: swap; }
a { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; padding: 0; margin: 0; }
img, iframe, object, video { max-width: 100% !important; height: auto; display: block; }

/* ACESSIBILIDADE: Classe para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ACESSIBILIDADE: Foco visível para navegação por teclado */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #ffca28; /* Amarelo ouro para destaque */
    outline-offset: 2px;
    z-index: 10;
}

/* Header & Nav */
header { background-color: var(--primary-color); padding: 15px 0; box-shadow: 0 4px 10px rgba(0,0,0,.1); position: fixed; top: 0; left: 0; z-index: 1000; width: 100%; transition: padding .3s ease, background-color .3s ease; }
header.scrolled { padding: 8px 0; background-color: rgba(201, 30, 30, 0.98); box-shadow: 0 4px 15px rgba(0,0,0,.2); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }
.header-top { display: flex; justify-content: center; align-items: center; }
.logo a { display: block; line-height: 0; }
.logo svg { height: 60px; width: auto; transition: height .3s ease; display: block; filter: drop-shadow(0 2px 2px rgba(0,0,0,.1)); }
header.scrolled .logo svg { height: 40px; }

.nav-bar-container { border-top: 1px solid rgba(255,255,255,.2); padding-top: 10px; margin-top: 10px; overflow: hidden; transition: all .3s ease; width: 100%; }
header.scrolled .nav-bar-container { padding-top: 0; margin-top: 5px; border-top: none; }
.nav-bar { display: flex; justify-content: center; gap: 20px; color: #fff; font-weight: 500; white-space: nowrap; flex-wrap: wrap; }

/* ACESSIBILIDADE E LAYOUT DO MENU */
.nav-link { 
    position: relative; 
    padding: 10px 8px; 
    color: #fff; 
    text-decoration: none; 
    font-size: 15px; 
    display: inline-flex; 
    align-items: center; 
    min-height: 44px; /* Área de toque mínima */
    gap: 10px; 
}

/* EFEITO HOVER E ACTIVE */
.nav-link::after { 
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 2px; 
    bottom: 5px; 
    left: 0; 
    background-color: #fff; 
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { 
    transform: scaleX(1); 
}

.nav-link.active {
    font-weight: 700;
    color: white !important;
}

/* Footer */
footer { background-color: #fff; padding: 50px 0 20px; margin-top: auto; border-top: 1px solid #eee; width: 100%; position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; text-align: left; }
.footer-col h4 { margin-bottom: 20px; color: var(--secondary-color); font-size: 1.2rem; border-bottom: 2px solid var(--primary-color); display: inline-block; padding-bottom: 5px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; color: #444; font-size: .95rem; }
.footer-col ul li a { display: inline-block; padding: 5px 0; color: var(--gray-text); }
.footer-col ul li a:hover { color: var(--primary-color); text-decoration: underline; }
.social-icons { margin-top: 10px; }
.social-icons a { font-size: 1.8rem; margin-right: 20px; color: var(--secondary-color); transition: .3s; display: inline-block; padding: 10px; }
.social-icons a:hover { color: var(--primary-color); transform: translateY(-3px); }
.copyright { text-align: center; font-size: .9rem; color: #666; border-top: 1px solid #eee; padding-top: 20px; }

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; 
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

@media (hover: hover) {
    .back-to-top:hover { background-color: var(--secondary-color); transform: translateY(-5px); }
}

.back-to-top:active { background-color: var(--primary-dark); transform: scale(0.95); }

/* Home Slider & Banners */
.hero-slider { position: relative; max-width: 1300px; margin: 30px auto; height: 400px; min-height: 400px; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,.1); background-color: #eee; }
.slide { width: 100%; height: 100%; display: none; align-items: center; padding: 0 80px; color: #fff; position: relative; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { display: flex; opacity: 1; }

.banner-content { z-index: 2; position: relative; }
.banner-content h2 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,.5); }
.banner-content p { font-size: 1.5rem; margin-bottom: 25px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.banner-btn { padding: 14px 32px; background: #fff; color: var(--primary-color); font-weight: 700; border-radius: 30px; display: inline-flex; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,.2); text-transform: uppercase; transition: transform 0.3s; min-height: 48px; }
.banner-btn:hover { transform: scale(1.05); }

/* Banner Backgrounds */
.banner-1 { background: linear-gradient(135deg, var(--cat-info) 0%, #155e75 100%); background-size: 200% 200%; animation: gradientBG 10s ease infinite; }
.banner-1 .banner-btn { color: #155e75; }

.banner-2 { background: linear-gradient(135deg, var(--cat-casa) 0%, #c2410c 100%); background-size: 200% 200%; animation: gradientBG 10s ease infinite; }
.banner-2 .banner-btn { color: #c2410c; }

.banner-3 { background: linear-gradient(135deg, var(--cat-cel) 0%, #1e40af 100%); background-size: 200% 200%; animation: gradientBG 10s ease infinite; }
.banner-3 .banner-btn { color: #1e40af; }

/* Banner Animations */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatAndBounce {
    0% { transform: translate(0, 0) rotate(-15deg) scale(1); }
    25% { transform: translate(-20px, -25px) rotate(-10deg) scale(1.05); }
    50% { transform: translate(0, -40px) rotate(-5deg) scale(1.1); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5)); }
    75% { transform: translate(20px, -25px) rotate(-10deg) scale(1.05); }
    100% { transform: translate(0, 0) rotate(-15deg) scale(1); }
}

.banner-icon { 
    font-size: 220px; 
    position: absolute; 
    right: -10px; 
    opacity: 0.15; 
    transform: rotate(-15deg); 
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: floatAndBounce 10s ease-in-out infinite;
}
.banner-icon.casa { right: 20px; }

/* Components */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin: 40px 0 20px 0; }
.section-title { font-size: 1.8rem; color: var(--secondary-color); text-transform: uppercase; display: flex; align-items: center; gap: 10px; line-height: 1.2; }
.section-title i { color: var(--primary-color); }
.see-more { font-size: .95rem; color: var(--primary-color); font-weight: 700; cursor: pointer; white-space: nowrap; flex-shrink: 0; margin-left: 15px; margin-bottom: 5px; padding: 10px; text-decoration: underline; }

.chart-section { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,.05); }
.chart-container { position: relative; height: 35vh; width: 100%; }
.category-showcase { margin-top: 30px; }
.carousel-container { display: flex; gap: 15px; overflow-x: auto; padding: 10px 5px 20px 5px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; min-height: 350px; }
.carousel-item { min-width: 200px; max-width: 200px; min-height: 320px; flex-shrink: 0; }
.brands-row { display: flex; gap: 20px; overflow-x: auto; padding: 20px 5px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.brand-card { min-width: 150px; height: 80px; background: #fff; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-weight: 900; color: #555; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,.05); transition: .3s; border: 1px solid #eee; }
.brand-card:hover { color: var(--primary-color); box-shadow: 0 8px 20px rgba(0,0,0,.1); border-color: var(--primary-color); }
.products-grid, .products-grid-category, .products-grid-top { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; margin-bottom: 50px; }
.products-grid-top { min-height: 380px; }

/* Product Card */
.product-card { background: #fff; border-radius: 12px; padding: 15px; transition: all .3s ease; box-shadow: 0 5px 15px rgba(0,0,0,.05); position: relative; border: 1px solid transparent; cursor: pointer; display: flex; flex-direction: column; min-height: 340px; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.1); border-color: #eee; }
.product-card .ranking-badge { position: absolute; top: -8px; left: -8px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; box-shadow: 0 4px 8px rgba(0,0,0,.2); z-index: 2; }
.product-img { width: 100%; height: 160px; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: #ccc; border-radius: 8px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; }
.product-img i { transition: .3s; }
.product-card:hover .product-img i { transform: scale(1.1); color: var(--secondary-color); }
.product-card h3, .product-card h4 { font-size: .95rem; margin-bottom: 8px; color: var(--secondary-color); height: 40px; overflow: hidden; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-weight: 500; }
.product-price { color: var(--text-color); font-size: 1.4rem; font-weight: 900; }
.old-price { font-size: .85rem; text-decoration: line-through; color: #666; margin-bottom: 2px; }
.product-installments { font-size: .85rem; color: var(--success-green); font-weight: 600; margin-bottom: 10px; }
.btn-offer { width: 100%; padding: 12px 10px; background-color: var(--primary-color); color: #fff; text-align: center; border-radius: 6px; font-weight: 700; font-size: 1rem; margin-top: auto; transition: .3s; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.btn-offer:hover { background-color: var(--primary-dark); }

.product-card.placeholder { cursor: default; opacity: 0.8; }
.product-card.placeholder:hover { transform: none; box-shadow: 0 5px 15px rgba(0,0,0,.05); border-color: transparent; }
.product-card.placeholder .product-img { background-color: #eee; }
.product-card.placeholder h4 { color: #666; }
.product-card.placeholder .product-price { color: #999; }
.btn-disabled { background-color: #ccc !important; cursor: not-allowed; pointer-events: none; }

/* Breadcrumbs & Category Intro */
.breadcrumb { margin: 30px 0 20px 0; font-size: .95rem; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.breadcrumb a { color: var(--secondary-color); font-weight: 500; padding: 5px; }
.breadcrumb .current { color: var(--primary-color); font-weight: 700; }
.breadcrumb .current-link { text-decoration: underline; cursor: pointer; } 
.category-intro { background: #fff; padding: 30px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,.03); }
.category-intro h1 { font-size: 2.2rem; margin-bottom: 15px; color: var(--secondary-color); text-transform: uppercase; border-bottom: 4px solid var(--primary-color); display: inline-block; padding-bottom: 5px; }
.category-intro p { font-size: 1rem; line-height: 1.6; color: #444; max-width: 900px; }
.content-link { color: var(--primary-color); font-weight: 700; text-decoration: underline; }
.content-link:hover { background-color: rgba(220,38,38,.1); }
.category-content { background: #fff; padding: 40px; border-radius: 12px; margin-bottom: 40px; box-shadow: 0 2px 10px rgba(0,0,0,.03); }
.category-content h2 { font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 20px; margin-top: 30px; }
.category-content h3 { font-size: 1.4rem; color: var(--secondary-color); margin-bottom: 15px; margin-top: 25px; }
.category-content p { margin-bottom: 15px; line-height: 1.7; color: #333; text-align: justify; }
.category-content ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; color: #333; }
.category-content li { margin-bottom: 8px; }

/* Subtitulo de Categoria */
.subtitle-grid { font-size: 1.6rem; color: var(--secondary-color); margin-bottom: 20px; font-weight: 800; border-left: 4px solid var(--primary-color); padding-left: 15px; text-transform: uppercase; }

/* FAQ */
.faq-section { margin-bottom: 60px; margin-top: 40px; width: 100%; }
.faq-title { font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 25px; text-align: center; text-transform: uppercase; font-weight: 800; }
.faq-container { max-width: 900px; margin: 0 auto; width: 100%; }
.faq-item { background: #fff; margin-bottom: 10px; border-radius: 8px; border: 1px solid #eee; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px; background: #fff; border: none; outline: none; cursor: pointer; font-size: 1.05rem; font-weight: 700; color: var(--secondary-color); display: flex; justify-content: space-between; align-items: center; transition: .3s; min-height: 48px; }
.faq-question:hover { background-color: #fcfcfc; color: var(--primary-color); }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); transition: .3s; }
.faq-question.active::after { content: '-'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease-out; background-color: #fafafa; border-top: 1px solid #eee; }
.faq-answer p { padding: 20px; color: #444; line-height: 1.6; font-size: 1rem; margin: 0; }

/* Newsletter */
.newsletter { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); color: #fff; padding: 50px 0; text-align: center; width: 100%; margin-top: 60px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; max-width: 550px; margin: 20px auto 0; flex-wrap: wrap; }
.newsletter-form input { padding: 12px 20px; border-radius: 30px; border: none; flex-grow: 1; outline: none; font-size: 1rem; color: #333; height: 48px; }
.newsletter-form button { padding: 0 32px; background: var(--primary-color); color: #fff; border: 2px solid #fff; border-radius: 30px; font-weight: 700; cursor: pointer; transition: .3s; min-height: 48px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
.newsletter-form button:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,.2); }

/* PRODUCT PAGE SPECIFICS */
.product-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.03); margin-bottom: 30px; width: 100%; overflow: visible; }
.gallery-container { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.main-image { width: 100%; height: 450px; background: #fff; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid #eee; overflow: hidden; position: relative; cursor: zoom-in; }
.main-image img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .2s ease-out; transform-origin: center center; }
@media(hover: hover) { .main-image:hover img { transform: scale(1.5); } }
.main-image .ranking-badge { position: absolute; width: auto; height: auto; border-radius: 4px; padding: 6px 12px; top: 15px; right: 15px; left: auto; font-size: .85rem; background: var(--primary-color); color: #fff; font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,.2); z-index: 5; pointer-events: none; }
.ranking-badge-dark { background: #333 !important; }
.thumbnails { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.thumbnails::-webkit-scrollbar { display: none; }
.thumb { min-width: 70px; height: 70px; border: 1px solid #ddd; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: .6; transition: .2s; background: #fff; }
.thumb.active { opacity: 1; border-color: var(--primary-color); }
.thumb img { max-width: 90%; max-height: 90%; object-fit: contain; }
.product-info { position: sticky; top: 100px; height: fit-content; width: 100%; min-width: 0; }
.product-info h1 { font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 10px; line-height: 1.3; font-weight: 800; word-wrap: break-word; }
.rating { color: #b45309 !important; margin-bottom: 15px; font-size: .9rem; display: flex; align-items: center; gap: 5px; }
.rating i { color: #b45309 !important; }
.rating span { color: #374151 !important; font-weight: 700; }
.price-box { margin: 20px 0; padding: 20px; background: #f8f9fa; border-radius: 8px; border-left: 5px solid var(--success-green); }
.price-old { text-decoration: line-through; color: #666; font-size: 1rem; }
.price-tag { font-size: 3rem; font-weight: 900; color: var(--text-color); line-height: 1; }
.price-symbol { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
.installments { color: var(--success-green); font-weight: 600; font-size: 1.1rem; display: block; margin-top: 8px; }
.shipping-info { margin-top: 12px; font-size: 0.95rem; color: var(--success-green); display: flex; align-items: center; gap: 5px; }
.btn-buy-lg { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background-color: var(--ml-blue); color: #fff; font-size: 1rem; font-weight: 700; border-radius: 6px; text-transform: uppercase; cursor: pointer; transition: .3s; margin-top: 20px; box-shadow: 0 4px 10px rgba(41,104,200,.3); text-decoration: none; white-space: nowrap; min-height: 52px; }
.btn-buy-lg:hover { background-color: #1e52a3; }
.btn-icon-right { margin-left: 8px; font-size: 0.9rem; }
.btn-audio { background: 0 0; border: 2px solid #e0e0e0; color: var(--secondary-color); padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 600; font-size: .9rem; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; width: 100%; box-sizing: border-box; min-height: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.feature-card { text-align: center; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 10px; }
.feature-card i { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 10px; display: block; }
.feature-card h4 { font-size: .9rem; margin-bottom: 2px; color: var(--secondary-color); font-weight: 700; text-transform: uppercase; }
.feature-card span { font-size: .8rem; color: #555; line-height: 1.2; display: block; }
.content-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 30px; width: 100%; }
.rich-content { background: #fff; padding: 40px; border-radius: 12px; width: 100%; box-sizing: border-box; }
.rich-content p { margin-bottom: 20px; font-size: 1rem; text-align: justify; color: #333; }
.rich-content ul { margin-left: 20px; margin-bottom: 20px; color: #333; }
.rich-content li { margin-bottom: 10px; }
.sidebar-content { display: flex; flex-direction: column; gap: 30px; width: 100%; }
.chart-box, .video-box { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.03); width: 100%; }
.chart-container-small { height: 200px; width: 100%; }
.chart-caption { font-size: 0.8rem; color: #666; margin-top: 10px; text-align: center; }

/* 1. VÍDEO FACADE */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
}

button.video-facade {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    text-align: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

button.video-facade:focus {
    outline: 3px solid #ff0000;
    outline-offset: -3px;
}

.video-play-btn {
    width: 68px;
    height: 48px;
    background-color: #ff0000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s;
    pointer-events: none;
}

.video-play-btn::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.video-facade:hover .video-play-btn { transform: scale(1.1); }
.video-caption { margin-top: 10px; font-size: 0.9rem; color: #666; text-align: center; }

/* Pros & Cons */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.cons-box, .pros-box { padding: 20px; border-radius: 8px; border: 1px solid #eee; }
.pros-box h4 { color: var(--success-green)!important; margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cons-box h4 { color: var(--danger-red)!important; margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cons-box li, .pros-box li { list-style: none; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #333; }
.pros-box li i { color: var(--success-green)!important; font-size: 1.1rem; }
.cons-box li i { color: var(--danger-red)!important; font-size: 1.1rem; }

/* Tables */
.table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 30px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; }
.comparison-table, .specs-table { width: 100%; min-width: 700px; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.specs-table tr:nth-child(odd) { background: #f9f9f9; }
.comparison-table th, .comparison-table td, .specs-table th, .specs-table td { padding: 16px; text-align: left; border-bottom: 1px solid #f3f4f6; font-size: 0.95rem; color: #374151; vertical-align: middle; }
.comparison-table td:first-child, .specs-table td:first-child { white-space: nowrap; font-weight: 700; background-color: #f9fafb; width: 1%; text-align: center; }

.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 10px 15px; box-shadow: 0 -4px 20px rgba(0,0,0,.15); z-index: 9999; display: none; justify-content: space-between; align-items: center; border-top: 1px solid #eee; box-sizing: border-box; gap: 10px; min-height: 70px; }
.sticky-price { font-size: 1.2rem; font-weight: 900; color: var(--text-color); line-height: 1; white-space: nowrap; }
.sticky-label { font-size: 0.8rem; margin-right: 5px; color: #555; }
.btn-sticky { padding: 12px 15px; background: var(--ml-blue); color: #fff; border-radius: 6px; font-weight: 700; font-size: .85rem; text-transform: uppercase; text-decoration: none; text-align: center; white-space: nowrap; min-height: 48px; display: flex; align-items: center; }
.status-dot { height: 12px; width: 12px; border-radius: 50%; display: inline-block; margin-right: 8px; }
.dot-green { background-color: var(--success-green); }
.dot-yellow { background-color: #ffc107; }
.dot-red { background-color: var(--danger-red); }

/* Tech Boxes & Eyebrows (Variations) */
.tech-box { background: #eef2ff; border: 1px solid #c7d2fe; padding: 20px; border-radius: 8px; margin: 30px 0; }
.tech-box h4, .box-title { color: #3730a3; margin-bottom: 10px; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.tech-box p { color: #333; }
.tech-box i { color: #3730a3; margin-right: 5px; }
.tech-box.orange { background: #fff3e0; border-color: #ffe0b2; }
.tech-box.orange h4, .tech-box.orange i { color: #e65100; }
.tech-box.blue { background: #eef2ff; border-color: #c7d2fe; }
.tech-box.blue h4, .tech-box.blue i { color: #3730a3; }

.tech-highlight { background-color: #f5f5f5; border-left: 4px solid #333; padding: 20px; margin: 25px 0; border-radius: 4px; color: #333; }
.tech-highlight h5 { color: #000; font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; }
.tech-highlight p { color: #333; }
.tech-highlight-dark { background-color: #212121; border-left: 4px solid #00E676; padding: 20px; margin: 25px 0; border-radius: 4px; color: #fff; }
.tech-highlight-dark h5 { color: #00E676; font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; }
.tech-highlight-dark p { color: #e0e0e0; }

.tech-highlight.green { background-color: #f0fdf4; border-left: 4px solid var(--success-green); }
.tech-highlight.green h5 { color: #15803d; }
.tech-highlight.purple { background-color: #f3e5f5; border-left: 4px solid #7c3aed; }
.tech-highlight.purple h5 { color: #4a148c; }
.tech-highlight.blue { background-color: #f0f8ff; border-left: 4px solid #0891b2; }
.tech-highlight.blue h5 { color: #0056b3; }
.tech-highlight.lime { background-color: #f7fee7; border-left: 4px solid #65a30d; }
.tech-highlight.lime h5 { color: #3f6212; }

.product-eyebrow { display: inline-block; background-color: var(--secondary-color); color: #fff; font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.product-eyebrow.green { background-color: #000; color: #00E676; border: 1px solid #00E676; }
.product-eyebrow.orange { background-color: var(--cat-casa); }
.product-eyebrow.blue { background-color: var(--cat-cel); }
.product-eyebrow.purple { background-color: var(--cat-game); }
.product-eyebrow.cyan { background-color: var(--cat-info); }
.product-eyebrow.lime { background-color: #65a30d; }

.badge-soon { position: absolute; top: -8px; left: -8px; background: #6c757d; color: #fff; width: auto; padding: 5px 10px; border-radius: 4px; font-weight: 700; font-size: .8rem; box-shadow: 0 4px 8px rgba(0,0,0,.2); z-index: 2; text-transform: uppercase; }

/* Box Content List */
.box-content-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.box-item { background: #f9f9f9; padding: 15px; border-radius: 8px; text-align: center; border: 1px solid #eee; font-size: 0.9rem; color: #555; }
.box-item i { display: block; font-size: 1.5rem; color: var(--primary-color); margin-bottom: 10px; }

/* Utilities */
.institutional-container { display: block; max-width: 900px; margin: 30px auto; width: 100%; }
.text-center, .rich-content .text-center, .rich-content p.text-center, .rich-content .text-center p { text-align: center; } 
.text-left { text-align: left; }
.divider { border: 0; border-top: 1px solid #eee; margin: 40px 0; width: 100%; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* Image LCP Optimization */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4); 
}

/* Suggestion Box */
.suggestion-box {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    color: #5d4037;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    display: none; 
}
.suggestion-box i { color: #ffca28; font-size: 1.5rem; margin-bottom: 10px; display: block; }
.suggestion-link { color: #d84315; font-weight: bold; text-decoration: underline; cursor: pointer; font-size: 1.1rem; padding: 10px; display: inline-block; }
.suggestion-link:hover { color: #bf360c; }

/* LCP Fixes */
.slide.banner-1.active .banner-content { animation: none !important; opacity: 1 !important; transform: translateY(0) !important; }
.slide:not(.banner-1).active .banner-content { animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.lazy-hidden { content-visibility: auto; contain-intrinsic-size: 500px; }

/* MEDIA QUERIES (Mobile) */
@media(max-width: 900px) {
    .header-top { flex-direction: column; gap: 15px; }
    .nav-bar-container { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
    .nav-bar { justify-content: flex-start; padding: 0 15px; width: max-content; gap: 15px; }
    .hero-slider { height: 320px; margin: 15px auto; min-height: 320px; }
    .slide { padding: 0 20px; text-align: center; justify-content: center; }
    .banner-content h2 { font-size: 2rem; }
    .products-grid-top { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .footer-grid { text-align: center; }
    .social-icons { justify-content: center; display: flex; gap: 20px; }
    .social-icons a { margin-right: 0; }
    body { padding-bottom: 90px; padding-top: 240px; }
    .container { padding: 0 15px; width: 100%; max-width: 100%; overflow-x: hidden; }
    .product-main { display: block; padding: 20px 15px; width: 100%; box-sizing: border-box; }
    .gallery-container { margin-bottom: 20px; width: 100%; }
    .main-image { height: 300px; cursor: default; }
    .main-image:hover img { transform: none; }
    .thumbnails { justify-content: flex-start; width: 100%; }
    .product-info { position: static; width: 100%; }
    .product-info h1 { font-size: 1.4rem; margin-top: 0; line-height: 1.4; }
    .btn-buy-lg { display: flex!important; margin-bottom: 15px; }
    .btn-audio { width: 100%; padding: 12px; }
    .content-wrapper { display: block; margin-top: 20px; width: 100%; }
    .rich-content { padding: 20px; margin-bottom: 30px; width: 100%; }
    .pros-cons-grid { grid-template-columns: 1fr; gap: 15px; }
    .features-grid { gap: 10px; }
    .feature-card { padding: 10px 5px; }
    .feature-card h4 { font-size: .8rem; }
    .specs-table td { display: table-cell; font-size: .9rem; padding: 8px; }
    .specs-table td:first-child { width: 20%; white-space: nowrap; }
    .sticky-cta { display: flex; }
    .product-main table, .category-content table, .rich-content table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .back-to-top { bottom: 90px; }
}
@media(min-width: 901px) {
    .sticky-cta { display: none!important; }
}

/* ==========================================================================
   UTILITIES & HELPERS (NOVO - Para eliminar CSS Inline)
   ========================================================================== */
.render-optimize { content-visibility: auto; contain-intrinsic-size: 1000px; }
.relative-hidden { position: relative; overflow: hidden; }
.ratio-1-1 { aspect-ratio: 1/1; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-5 { margin-bottom: 5px; }
.mt-4 { margin-top: 4px; }
.text-left-bold { text-align: left; font-weight: 700; }
.font-bold { font-weight: 700; }
.items-start { align-items: flex-start; }
.text-blue-900 { color: #1e3a8a; }
.text-green-700 { color: #15803d; }
.text-red-700 { color: #b91c1c; }

/* ==========================================================
   MELHORIA DE UX: MENU COM ROLAGEM VISÍVEL E SEM CORTES
   ========================================================== */
@media (max-width: 900px) {
    .nav-bar-container {
        position: relative;
        display: block;
        width: 100%;
        /* Retiramos o 'overflow: hidden' que podia travar o toque */
    }

    /* O efeito de sombra para dar a pista visual de "continua" 
    .nav-bar-container::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 65px;
        height: 100%;
        background: linear-gradient(to right, transparent, var(--primary-color) 95%);
        pointer-events: none;
        z-index: 10;
    }*/

    .nav-bar {
        display: flex !important;
        flex-wrap: nowrap !important; /* Mantém tudo em uma linha só */
        justify-content: flex-start !important; /* Alinha na esquerda para permitir correr para a direita */
        
        /* ATIVA A ROLAGEM */
        overflow-x: auto !important; 
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch; /* Suavidade no iPhone */
        
        padding-left: 15px;
        padding-right: 60px !important; /* Espaço para o último item não ficar sob a sombra */
        padding-bottom: 10px; /* Espaço para a barra de rolagem aparecer sem cortar o ícone */
        
        /* NÃO vamos esconder a barra, para que seus amigos vejam que ela existe */
    }

    .nav-link {
        flex-shrink: 0; /* Impede que o navegador esmague os botões */
        white-space: nowrap; /* Impede que o texto quebre linha */
        margin-right: 5px;
    }
}
/* Componente de Compartilhamento - Padrão Achadinho */
.share-container { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.btn-share { flex: 1; min-width: 44px; height: 48px; border-radius: 8px; border: 1px solid #ddd; background: #fff; color: var(--secondary-color); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; font-size: 1.2rem; text-decoration: none; }
.btn-share:hover { background: #f3f4f6; border-color: var(--primary-color); color: var(--primary-color); }
.btn-share.whatsapp:hover { color: #25d366; border-color: #25d366; }
.btn-share.copy-success { background: var(--success-green); color: #fff; border-color: var(--success-green); }

/* Correção de contraste para Eyebrow Laranja (Acessibilidade) */
.product-eyebrow.orange { background-color: var(--cat-casa); color: #111827; font-weight: 900; }

/* TOOLTIP DE PREÇO E DATA */
.price-tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-size: 1rem;
    z-index: 50;
}

.price-tooltip-icon {
    color: #9ca3af; /* Cinza discreto */
    cursor: help;
    transition: color 0.3s;
}

.price-tooltip-icon:hover {
    color: var(--primary-color);
}

.price-tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 100;
    bottom: 125%; /* Posiciona acima do ícone */
    left: 50%;
    margin-left: -125px; /* Centraliza */
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Mostra o tooltip ao passar o mouse ou focar */
.price-tooltip-container:hover .price-tooltip-text,
.price-tooltip-container:focus-within .price-tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media(max-width: 600px) {
    .price-tooltip-text {
        width: 200px;
        margin-left: -180px; /* Ajuste para não sair da tela no mobile */
    }
}