
/* ---- Anti espaço em branco lateral (mobile) ---- */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
.container {
    width: 100%;
    max-width: var(--container, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}
.maxtem-header,
.maxtem-nav,
.maxtem-topbar,
.maxtem-hero,
.maxtem-main,
.hero-swiper,
.swiper,
.swiper-wrapper,
.swiper-slide,
.hero-slide {
    max-width: 100%;
    box-sizing: border-box;
}
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}
/* ============================================================
   MAXTEM Industrial Store Premium - Main Stylesheet
   Cores: #0066B3 | #008CFF | #061525 | #050505 | #9DA8B3
   ============================================================ */

:root {
    --maxtem-blue: #0066B3;
    --maxtem-blue-light: #008CFF;
    --maxtem-dark: #061525;
    --maxtem-black: #050505;
    --maxtem-metal: #9DA8B3;
    --maxtem-white: #FFFFFF;
    --maxtem-gray: #F0F2F5;
    --maxtem-gray-dark: #1A2332;
    --maxtem-green: #25D366;
    --maxtem-green-dark: #1DA851;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 32px rgba(0, 102, 179, 0.25);
    --transition: 0.25s ease;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Montserrat', 'Inter', sans-serif;
    --container: 1280px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; }
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP BAR ========== */
.maxtem-topbar {
    background: var(--maxtem-black);
    color: var(--maxtem-metal);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--maxtem-metal);
}
.topbar-item:hover { color: var(--maxtem-white); }
.topbar-item strong { color: var(--maxtem-white); font-weight: 600; }
.topbar-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--maxtem-metal);
}
.topbar-right { display: flex; gap: 14px; }
.social-icon {
    color: var(--maxtem-metal);
    display: flex;
    align-items: center;
}
.social-icon:hover { color: var(--maxtem-blue-light); }

/* ========== HEADER ========== */
.maxtem-header {
    background: var(--maxtem-dark);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 179, 0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-logo { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--maxtem-white);
    letter-spacing: -0.5px;
}
.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--maxtem-blue-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.custom-logo-link img { max-height: 50px; width: auto; }

/* Search */
.header-search { flex: 1; max-width: 520px; }
.search-form {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}
.search-form:focus-within { border-color: var(--maxtem-blue-light); }
.search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    background: transparent;
}
.search-input::placeholder { color: #999; }
.search-btn {
    background: var(--maxtem-blue);
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.search-btn:hover { background: var(--maxtem-blue-light); }

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--maxtem-white);
}
.action-item:hover { color: var(--maxtem-blue-light); }
.action-text { display: flex; flex-direction: column; line-height: 1.2; }
.action-label { font-size: 13px; font-weight: 600; }
.action-sub { font-size: 11px; color: var(--maxtem-metal); }
.cart-icon-wrap { position: relative; }
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--maxtem-blue-light);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-whatsapp-header {
    background: var(--maxtem-blue);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.btn-whatsapp-header:hover {
    background: var(--maxtem-blue-light);
    transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    cursor: pointer;
    padding: 6px;
}
.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== NAV ========== */
.maxtem-nav {
    background: var(--maxtem-blue);
    position: sticky;
    top: 78px;
    z-index: 999;
}
/* MaxTem TV: menu NÃO acompanha o scroll */
body.maxtem-tv .maxtem-nav {
    position: relative !important;
    top: auto !important;
    z-index: 100;
}

.nav-inner { display: flex; }
.nav-menu {
    display: flex;
    align-items: center;
    width: 100%;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover,
.nav-item:hover > .nav-link {
    background: rgba(0, 0, 0, 0.15);
}
.nav-categories {
    background: rgba(0, 0, 0, 0.12);
    font-weight: 700;
}

/* Mobile menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--maxtem-dark);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.mobile-close {
    background: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav li a:hover { color: var(--maxtem-blue-light); }
.btn-whatsapp-mobile {
    display: block;
    margin-top: 24px;
    background: var(--maxtem-green);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
}

/* ========== HERO ========== */
.maxtem-hero {
    position: relative;
    background: var(--maxtem-dark);
}
.hero-swiper { width: 100%; }
.hero-slide {
    position: relative;
    /* Havan FullBanner: 1410×270 | full-bleed ~1920×370 */
    width: 100%;
    height: auto;
    min-height: 270px;
    max-height: 370px;
    aspect-ratio: 1410 / 270;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-bg-gradient {
    background: linear-gradient(135deg, #061525 0%, #0a2540 40%, #0066B3 100%);
}
.hero-overlay {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    pointer-events: none !important;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 20px;
}
.hero-text { max-width: 580px; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.8vw, 36px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.title-line { display: block; }
.title-line.highlight { color: var(--maxtem-blue-light); }
.hero-desc {
    font-size: clamp(13px, 1.4vw, 16px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    line-height: 1.45;
    max-width: 420px;
}
.hero-desc strong { color: #fff; }
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--maxtem-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-hero:hover {
    background: var(--maxtem-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 140, 255, 0.4);
}
.btn-hero-outline {
    background: transparent;
    border: 2px solid #fff;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--maxtem-dark);
}

/* Swiper nav */
.hero-prev, .hero-next {
    color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover {
    background: var(--maxtem-blue);
}
.hero-prev::after, .hero-next::after {
    font-size: 18px !important;
    font-weight: 700;
}
.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--maxtem-blue-light);
    width: 28px;
    border-radius: 5px;
}

/* ========== BENEFÍCIOS ========== */
.maxtem-beneficios {
    background: var(--maxtem-dark);
    padding: 36px 0;
    border-top: 1px solid rgba(0,102,179,0.2);
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.beneficio-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(0, 102, 179, 0.2);
    border: 1px solid rgba(0, 140, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maxtem-blue-light);
}
.beneficio-text h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.beneficio-text p {
    font-size: 12px;
    color: var(--maxtem-metal);
}

/* ========== SECTION HEADER ========== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--maxtem-dark);
    letter-spacing: 0.5px;
}
.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--maxtem-blue);
}
.section-link:hover { color: var(--maxtem-blue-light); }

/* ========== CATEGORIAS ========== */
.maxtem-categorias {
    padding: 50px 0 40px;
    background: #fff;
}
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.categoria-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e8ecf0;
}
.categoria-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.categoria-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--maxtem-gray);
}
.categoria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.categoria-card:hover .categoria-img { transform: scale(1.06); }
.categoria-label {
    background: var(--maxtem-blue);
    color: #fff;
    text-align: center;
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* ========== PRODUTOS ========== */
.maxtem-produtos {
    padding: 40px 0 60px;
    background: var(--maxtem-gray);
}
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.produto-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e8ecf0;
    display: flex;
    flex-direction: column;
}
.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.produto-img-wrap {
    aspect-ratio: 1.2;
    overflow: hidden;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.produto-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.produto-card:hover .produto-img { transform: scale(1.05); }
.produto-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.produto-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--maxtem-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.produto-name a:hover { color: var(--maxtem-blue); }
.produto-specs {
    margin-bottom: 12px;
    flex: 1;
}
.produto-specs li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
}
.produto-specs svg { color: var(--maxtem-blue); flex-shrink: 0; }
.produto-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--maxtem-blue);
    margin-bottom: 12px;
    font-family: var(--font-display);
}
.btn-produto-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--maxtem-green);
    color: #fff;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    width: 100%;
}
.btn-produto-whatsapp:hover {
    background: var(--maxtem-green-dark);
    transform: translateY(-1px);
}

/* ========== SOBRE ========== */
.maxtem-sobre {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--maxtem-dark) 0%, #0a2540 100%);
    color: #fff;
}
.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sobre-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--maxtem-blue-light);
}
.sobre-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    line-height: 1.7;
}
.btn-sobre {
    display: inline-block;
    margin-top: 12px;
    background: var(--maxtem-blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-sobre:hover { background: var(--maxtem-blue-light); }
.btn-sobre-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: var(--maxtem-green);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-sobre-whatsapp:hover { background: var(--maxtem-green-dark); }
.btn-mapa {
    display: inline-block;
    margin-top: 12px;
    border: 2px solid var(--maxtem-blue-light);
    color: var(--maxtem-blue-light);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-mapa:hover {
    background: var(--maxtem-blue-light);
    color: #fff;
}
.local-map-wrap { margin-top: 12px; border-radius: 10px; overflow: hidden; }

/* ========== FOOTER ========== */
.maxtem-footer {
    background: var(--maxtem-black);
    color: var(--maxtem-metal);
}
.footer-main { padding: 50px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 36px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-main { font-size: 24px; }
.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maxtem-metal);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--maxtem-blue);
    color: #fff;
}
.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 13px;
    color: var(--maxtem-metal);
}
.footer-links a:hover { color: var(--maxtem-blue-light); }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}
.footer-contact a:hover { color: var(--maxtem-blue-light); }
.btn-footer-whatsapp {
    display: inline-block;
    margin-top: 8px;
    background: var(--maxtem-green);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-footer-whatsapp:hover { background: var(--maxtem-green-dark); }
.footer-address { font-size: 13px; margin-bottom: 12px; line-height: 1.6; }
.footer-map { border-radius: 8px; overflow: hidden; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--maxtem-blue-light); }

/* ========== FLOATING WHATSAPP ========== */
/* Floating WhatsApp — PC e mobile */
.whatsapp-float,
.maxtem-float-wa {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--maxtem-green, #25D366) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999 !important;
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none !important;
}
.whatsapp-float:hover,
.maxtem-float-wa:hover {
    transform: scale(1.08);
    background: var(--maxtem-green-dark, #1DA851) !important;
    color: #fff !important;
}
@media (max-width: 768px) {
    .whatsapp-float,
    .maxtem-float-wa {
        bottom: 18px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}


/* ========== CONTENT PAGES ========== */
.content-area { padding: 40px 0 60px; }
.page-header, .single-header { margin-bottom: 28px; }
.page-title, .single-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--maxtem-dark);
}
.entry-content { line-height: 1.8; color: #333; }
.entry-content h2, .entry-content h3 { margin: 24px 0 12px; color: var(--maxtem-dark); }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--maxtem-blue); }
.entry-content img { border-radius: var(--radius); margin: 16px 0; }

/* Posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.post-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e8ecf0;
}
.post-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-body { padding: 20px; }
.post-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.post-title a:hover { color: var(--maxtem-blue); }
.btn-readmore {
    display: inline-block;
    margin-top: 12px;
    color: var(--maxtem-blue);
    font-weight: 600;
    font-size: 14px;
}

/* 404 */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}
.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--maxtem-blue);
    line-height: 1;
    font-family: var(--font-display);
}
.error-title { font-size: 28px; margin: 16px 0; color: var(--maxtem-dark); }
.error-desc { color: #666; margin-bottom: 28px; }
.btn-primary {
    display: inline-block;
    background: var(--maxtem-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 12px;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--maxtem-blue-light); }
.btn-whatsapp {
    display: inline-block;
    background: var(--maxtem-green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: var(--maxtem-green-dark); }

/* Pagination */
.navigation.pagination {
    margin-top: 40px;
    text-align: center;
}
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-weight: 600;
    color: var(--maxtem-dark);
}
.page-numbers.current,
.page-numbers:hover {
    background: var(--maxtem-blue);
    color: #fff;
    border-color: var(--maxtem-blue);
}

/* ============================================================
   V2 — NEW SECTIONS
   ============================================================ */

/* ---- Qualidade e Força ---- */
.maxtem-qualidade {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #061525 0%, #0a2a4a 50%, #0066B3 100%);
}
.qualidade-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.qualidade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.45;
}
.qualidade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(6,21,37,0.7) 55%, rgba(6,21,37,0.25) 100%);
}
.qualidade-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}
.qualidade-text { max-width: 520px; }
.qualidade-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.qualidade-title .highlight { color: var(--maxtem-blue-light); }
.qualidade-list {
    margin-bottom: 28px;
}
.qualidade-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}
.qualidade-list svg {
    color: var(--maxtem-blue-light);
    flex-shrink: 0;
    background: rgba(0,140,255,0.15);
    border-radius: 50%;
    padding: 3px;
    width: 24px;
    height: 24px;
}
.btn-qualidade {
    display: inline-block;
    background: var(--maxtem-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: var(--transition);
}
.btn-qualidade:hover {
    background: var(--maxtem-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,140,255,0.35);
}

/* ---- Marcas ---- */
.maxtem-marcas {
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
}
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}
.marca-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: #f7f9fb;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    min-height: 72px;
    transition: var(--transition);
}
.marca-item:hover {
    border-color: var(--maxtem-blue);
    box-shadow: 0 4px 16px rgba(0,102,179,0.12);
}
.marca-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--maxtem-dark);
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}

/* ---- Blog ---- */
.maxtem-blog {
    padding: 50px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e8ecf0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.blog-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--maxtem-dark);
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--maxtem-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-title a:hover { color: var(--maxtem-blue); }
.blog-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.blog-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--maxtem-blue);
}
.blog-link:hover { color: var(--maxtem-blue-light); }

/* ---- Produtos grid 6 ---- */
.produtos-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}
.maxtem-produtos-2 {
    background: #fff;
    padding-bottom: 50px;
}

/* ---- CTA Bar ---- */
.maxtem-cta-bar {
    background: linear-gradient(90deg, var(--maxtem-blue) 0%, #008CFF 100%);
    padding: 28px 0;
}
.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-bar-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}
.cta-bar-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.cta-bar-text span {
    font-size: 14px;
    opacity: 0.9;
}
.btn-cta-whatsapp {
    background: #fff;
    color: var(--maxtem-blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-cta-whatsapp:hover {
    background: var(--maxtem-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Local map icon ---- */
.local-map-icon {
    color: var(--maxtem-blue-light);
    margin: 12px 0;
    opacity: 0.8;
}

/* ---- Footer refinements V2 ---- */
.footer-tagline {
    font-size: 12px;
    color: var(--maxtem-metal);
}

/* ---- Serviços V3 ---- */
.maxtem-servicos {
    padding: 50px 0 40px;
    background: #fff;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.servico-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,102,179,0.18);
    border-color: #0066B3;
}
.servico-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(0,102,179,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008CFF;
}
.servico-title {
    font-size: 16px;
    font-weight: 800;
    color: #061525;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.servico-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}
.servico-link {
    font-size: 13px;
    font-weight: 600;
    color: #0066B3;
    margin-bottom: 12px;
}
.servico-link:hover { color: #008CFF; }
.btn-servico-wa {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}
.btn-servico-wa:hover {
    background: #1DA851;
    color: #fff;
}
.page-cta { margin-top: 28px; }

@media (max-width: 992px) {
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .servicos-grid { grid-template-columns: 1fr; }
}

/* ---- Nav centralizado V4 ---- */
.maxtem-nav .nav-inner {
    display: flex;
    justify-content: center;
}
.maxtem-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0;
}
.maxtem-nav .nav-item {
    flex: 1 1 auto;
    text-align: center;
}
.maxtem-nav .nav-link {
    justify-content: center;
    width: 100%;
    padding: 14px 10px;
    font-size: 12px;
    letter-spacing: 0.4px;
}

/* ---- YouTube ---- */
.maxtem-youtube {
    padding: 50px 0;
    background: #0a1520;
}
.maxtem-youtube .section-title { color: #fff; }
.maxtem-youtube .section-link { color: #008CFF; }
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.youtube-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: 0.25s ease;
}
.youtube-card:hover {
    border-color: #ff0000;
    background: rgba(255,0,0,0.08);
}
.youtube-icon { color: #ff0000; flex-shrink: 0; }
.youtube-channel {
    font-size: 11px;
    font-weight: 700;
    color: #008CFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.youtube-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 6px 0 10px;
    font-family: 'Montserrat', sans-serif;
}
.youtube-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}
.btn-youtube {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}
.btn-youtube:hover { background: #cc0000; color: #fff; }

/* ---- Artistas ---- */
.maxtem-artistas {
    padding: 50px 0;
    background: #fff;
}
.artistas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.artista-card {
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}
.artista-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,102,179,0.15);
    border-color: #0066B3;
}
.artista-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #061525, #0066B3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.artista-name {
    font-size: 20px;
    font-weight: 800;
    color: #061525;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.artista-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}
.artista-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.btn-artista-yt {
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}
.btn-artista-yt:hover { background: #cc0000; color: #fff; }
.btn-artista-wa {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}
.btn-artista-wa:hover { background: #1DA851; color: #fff; }

/* ---- Instagrams ---- */
.maxtem-instagrams {
    padding: 40px 0;
    background: var(--maxtem-gray, #F0F2F5);
}
.instagrams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.instagram-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 18px 20px;
    transition: 0.25s ease;
}
.instagram-card:hover {
    border-color: #E1306C;
    box-shadow: 0 4px 16px rgba(225,48,108,0.15);
}
.instagram-icon { color: #E1306C; }
.instagram-name {
    display: block;
    font-size: 14px;
    color: #061525;
}
.instagram-handle {
    font-size: 12px;
    color: #888;
}

/* Footer social labels */
.footer-social-labels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.footer-social-labels a {
    font-size: 12px;
    color: #9DA8B3;
}
.footer-social-labels a:hover { color: #008CFF; }

@media (max-width: 768px) {
    .youtube-grid,
    .artistas-grid { grid-template-columns: 1fr; }
    .instagrams-grid { grid-template-columns: 1fr; }
    .maxtem-nav .nav-item { flex: 1 1 45%; }
}

/* Carrossel da loja: só a imagem — sem textos e sem botão no banner */
body:not(.maxtem-tv) .maxtem-hero .hero-text,
body:not(.maxtem-tv) .maxtem-hero .hero-title,
body:not(.maxtem-tv) .maxtem-hero .hero-desc,
body:not(.maxtem-tv) .maxtem-hero .btn-hero {
    display: none !important;
}
/* Ícone flutuante WhatsApp permanece visível em todo o site */


/* Sem botão WhatsApp no carrossel (loja e TV) */
.maxtem-hero .btn-hero,
.mtv-hero .btn-hero {
    display: none !important;
}
