/*
Theme Name: Champions Theme
Theme URI: https://champions.com.br/
Description: Tema híbrido estático premium para a Champions.
Version: 1.0
Author: Antigravity
Author URI: https://champions.com.br/
Text Domain: champions-theme
*/

/* ==========================================
   1. RESET E DESIGN SYSTEM (DARK TECH)
   ========================================== */
:root {
    --primary: #F56A25; /* Laranja Oficial Champions */
    --primary-glow: rgba(245, 106, 37, 0.25);
    --primary-grad: linear-gradient(135deg, #F56A25 0%, #FF8C00 100%);
    --dark-deep: #F8FAFC; /* Fundo mais escuro */
    --dark-card: rgba(255, 255, 255, 0.85); /* Glassmorphism card */
    --dark-card-border: rgba(0, 0, 0, 0.08);
    --text-light: #1E293B;
    --text-muted: #64748B;
    --font-title: 'Rubik', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1600px; /* Atualizado conforme mockup 1600px */
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid-showcase {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Botão Premium Laranja (WhatsApp/Suporte) */
.btn-premium {
    background: var(--primary-grad);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 106, 37, 0.6);
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   2. CABEÇALHO (HEADER - GLASSMORPHISM)
   ========================================== */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--dark-card-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .logo img {
        height: auto !important;
        width: 150px !important;
        max-width: 150px !important;
    }
}

.logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 900px;
    min-height: 900px;
    margin: 0 auto;
    background-color: #F8FAFC;
    background-image: 
        linear-gradient(to top, #F8FAFC 0%, rgba(248,250,252,0) 10%),
        linear-gradient(to right, rgba(248,250,252,0) 30%, rgba(248, 250, 252, 0.9) 60%, rgba(248, 250, 252, 1)), 
        url('img/banner_hero_desktop.webp');
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start; /* Alterado de center para empurrar pro topo */
    justify-content: flex-end;
    padding: 0 20px; /* Removido o padding top de 40px para a medida de 160px ser exata */
}

.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 619px; /* 1600px - 981px (bloco do conteúdo) = 619px */
    padding-top: 150px; /* Aumentado para empurrar os cards mais para baixo no desktop */
}

/* TEXTOS PRINCIPAIS */
.hero-text-section {
    margin-bottom: 40px; /* Aumentado para afastar do logo e empurrar os cards */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-subtitle {
    color: #ff5a00;
    font-size: 60pt;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 5px; /* Pequeno espaçamento seguro */
    line-height: 1.1; /* Line-height seguro para evitar qualquer sobreposição */
    font-family: var(--font-title);
    text-transform: uppercase;
}

.hero-main-logo {
    width: 620px; /* Logo grande como no mockup */
    max-width: 100%;
    margin: 0 auto; /* Removido margens negativas agressivas para evitar sobreposição */
    display: block;
}

.hero-tagline {
    color: #ff5a00;
    font-size: 42pt;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 5px; /* Pequeno espaçamento seguro */
    margin-bottom: 15px; /* Aumentado para ajudar no espaçamento vertical */
    line-height: 1.1; /* Line-height seguro para evitar qualquer sobreposição */
    font-family: var(--font-title);
    text-transform: uppercase;
}

.hero-description {
    color: var(--text-light);
    font-size: 22pt;
    font-weight: 300; /* Peso menor */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center; /* Centralizado */
    width: 100%;
    margin-bottom: 30px; /* Aumentado de 15px para empurrar os cards mais para baixo */
    opacity: 0.9;
}

.hero-description .highlight {
    color: #ff5a00;
    font-weight: 700;
}

/* GRID DE CARDS DOS PRODUTOS */
.hero-cards-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
    max-width: 982px;
    flex-wrap: nowrap;  /* desktop: 1 linha */
}

.hero-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 18px 14px 16px;
    width: 218px;
    height: 340px;
    flex-shrink: 0;  /* desktop: tamanho fixo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255,90,0,0.6) 0%, rgba(255,255,255,0.05) 50%, rgba(255,90,0,0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-card:hover {
    transform: translateY(-12px);
    background: rgba(244, 245, 247, 0.95);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 90, 0, 0.2);
}

.hero-card:hover::before {
    opacity: 1;
}

/* ---- área fixa para a foto do aparelho ---- */
.device-img {
    width: 100%;
    height: 115px;          /* Altura otimizada para os novos aparelhos de proporções idênticas */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 4px;
    z-index: 2;
}
.device-img img {
    width: 175px;           /* Aumentado para 175px para destacar os novos aparelhos */
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.22));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card:hover .device-img img {
    transform: scale(1.1) translateY(-8px);
}

/* ---- área fixa para o ícone da marca ---- */
.icon-img {
    width: 100%;
    height: 60px;           /* fixa para todos */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2;
}
.icon-img img {
    max-height: 100%;
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}
/* Ajuste específico para equilibrar o peso visual do ícone Infinity */
.card-infinity .icon-img img {
    max-width: 55%;
    max-height: 75%;
}

/* ---- área fixa para a logo escrita ---- */
.logo-img {
    width: 100%;
    height: 42px;           /* fixa para todos */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: auto;       /* empurra para baixo do card */
}
.logo-img img {
    max-height: 100%;
    max-width: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-card:hover .logo-img img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* RESPONSIVIDADE HERO */
@media (max-width: 1600px) {
    .hero-container {
        padding-left: 0;
        margin-left: auto;
        margin-right: 0;
        max-width: 800px;
    }
    .hero-subtitle {
        font-size: 45pt;
    }
    .hero-main-logo {
        width: 460px;
        margin: 0 auto;
    }
    .hero-tagline {
        font-size: 32pt;
    }
    .hero-description {
        font-size: 18pt;
    }
    .hero-cards-container {
        gap: 12px;
    }
    .hero-card {
        width: 185px;
        height: 295px;
        padding: 14px 10px 10px;
    }
    .device-img {
        height: 100px;
        margin-bottom: 6px;
    }
    .device-img img {
        width: 125px;
    }
    .icon-img {
        height: 46px;
        margin-bottom: 6px;
    }
    .logo-img {
        height: 32px;
    }
    .badge-container {
        height: 18px;
        margin-bottom: 4px;
    }
    .badge-new {
        font-size: 7.5px;
        padding: 2px 6px;
    }
}

@media (max-width: 1450px) {
    .hero-container {
        max-width: 700px;
    }
    .hero-subtitle {
        font-size: 38pt;
    }
    .hero-main-logo {
        width: 400px;
        margin: 0 auto;
    }
    .hero-tagline {
        font-size: 26pt;
    }
    .hero-description {
        font-size: 15pt;
    }
    .hero-cards-container {
        gap: 10px;
    }
    .hero-card {
        width: 165px;
        height: 275px;
        padding: 12px 8px 8px;
    }
    .device-img {
        height: 90px;
        margin-bottom: 4px;
    }
    .device-img img {
        width: 110px;
    }
    .icon-img {
        height: 42px;
        margin-bottom: 4px;
    }
    .logo-img {
        height: 28px;
    }
    .badge-container {
        height: 16px;
        margin-bottom: 2px;
    }
    .badge-new {
        font-size: 7px;
        padding: 2.5px 5px;
    }
}

@media (max-width: 1350px) {
    .hero-container {
        max-width: 630px;
    }
    .hero-subtitle {
        font-size: 32pt;
    }
    .hero-main-logo {
        width: 340px;
        margin: 0 auto;
    }
    .hero-tagline {
        font-size: 22pt;
    }
    .hero-description {
        font-size: 13pt;
    }
    .hero-cards-container {
        gap: 8px;
    }
    .hero-card {
        width: 148px;
        height: 260px;
        padding: 10px 6px 6px;
    }
    .device-img {
        height: 80px;
        margin-bottom: 4px;
    }
    .device-img img {
        width: 100px;
    }
    .icon-img {
        height: 36px;
        margin-bottom: 4px;
    }
    .logo-img {
        height: 24px;
    }
}

/* ============================================
   HERO RESPONSIVO — MOBILE / TABLET
   ============================================ */
@media (max-width: 1300px) {

    /* --- Fundo: imagem em cima, escurecimento no fundo para os textos --- */
    .hero {
        background-image:
            linear-gradient(to top, #F8FAFC 0%, rgba(248,250,252,0) 10%),
            linear-gradient(to right, rgba(248,250,252,0) 30%, rgba(248, 250, 252, 0.9) 60%, rgba(248, 250, 252, 1)),
            url('img/banner_hero_desktop.webp') !important;
        background-color:    #F8FAFC !important;
        background-position: center center, center center, -150px center !important; /* Corrige corte à direita */
        background-size:     cover !important;
        background-repeat:   no-repeat !important;
        background-attachment: scroll !important;
        width:      100%;
        max-width:  100% !important;
        height:     auto !important;
        min-height: 100svh;
        padding:    0 4% 60px 16px !important;
        display:    flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end; /* Alinha o container à direita */
    }

    /* --- Container alinhado à direita para não cobrir a família à esquerda --- */
    .hero-container {
        padding-left: 0;
        padding-top:  0;
        align-items:  center;
        text-align:   center;
        max-width:    560px;
        width: 100%;
        margin-left:  auto;
        margin-right: 0;
    }

    /* --- Logo principal --- */
    .hero-main-logo {
        margin: 0 auto 10px auto;
        width: 300px;
    }

    /* Textos mantêm a cor padrão (laranja/escuro) no tablet com fundo claro */

    .hero-text-section {
        align-items:   center;
        text-align:    center;
        margin-bottom: 24px;
    }

    /* --- Grid 2 colunas --- */
    .hero-cards-container {
        display:         flex !important;
        flex-wrap:       wrap !important;
        justify-content: center !important;
        gap:             12px !important;
        max-width:       100% !important;
        width:           100% !important;
    }

    /* Cada card ocupa metade da linha (2 colunas) */
    .hero-card {
        width:     calc(50% - 6px) !important;
        max-width: 230px !important;
        height:    310px !important;
        padding:   18px 12px 14px !important;
        flex-shrink: 1 !important;
        background: rgba(255,255,255,0.93) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .badge-container { height: 20px !important; margin-bottom: 4px !important; }
    .badge-new { font-size: 8px !important; padding: 2px 8px !important; }
    .icon-img   { height: 50px;  margin-bottom: 8px; }
    .device-img { height: 120px;  margin-bottom: 8px; }
    .device-img img { width: 145px; height: auto; }
    .logo-img   { height: 34px; }
}

/* --- MOBILE (1150px) — layout centralizado e fundo mobile --- */
@media (max-width: 1150px) {
    .hero {
        background-image: linear-gradient(to bottom, rgba(248,250,252,0) 0px, rgba(248,250,252,0) 420px, rgba(248,250,252,0.6) 530px, rgba(248, 250, 252, 0.95) 680px, #F8FAFC 880px, #F8FAFC 100%), url('img/banner_hero_mobile.webp') !important;
        background-color:    #F8FAFC !important;
        background-position: center center, left -140px !important;
        align-items:         center !important; /* Centraliza no mobile */
        padding:             0 16px 60px !important; /* Reseta padding */
    }
    .hero-container {
        margin-left:  auto;
        margin-right: auto; /* Centraliza no mobile */
        padding-top: 550px !important;
    }
    .hero-main-logo { 
        width: 320px !important; 
        margin: 0 auto 10px auto !important;
        line-height: 1.1 !important;
    }
    
    /* Textos mantêm a cor padrão (laranja/escuro) no mobile com fundo claro */
    .hero-subtitle    { font-size: 1.8rem !important; line-height: 1.1 !important; }
    .hero-tagline     { font-size: 1.3rem !important; line-height: 1.1 !important; }
    .hero-description { font-size: 0.82rem !important; }
    
    .hero-text-section { margin-bottom: 18px !important; }

    .hero-card {
        width:    calc(50% - 10px) !important;
        max-width: 240px !important;
        height:    320px !important;
        padding:   18px 12px 14px !important;
    }
    .badge-container { height: 18px !important; margin-bottom: 4px !important; }
    .badge-new { font-size: 7.5px !important; padding: 2px 6px !important; }
    .icon-img   { height: 52px !important; }
    .device-img { height: 120px !important; }
    .device-img img { width: 145px !important; height: auto !important; }
    .logo-img   { height: 34px !important; }
}

@media (min-width: 1050px) and (max-width: 1150px) {
    .hero {
        background-position: center center, left -380px !important;
    }
    .hero-container {
        padding-top: 560px !important;
    }
}

@media (min-width: 800px) and (max-width: 1050px) {
    .hero {
        background-position: center center, left -200px !important;
    }
    .hero-container {
        padding-top: 600px !important;
    }
}

/* --- MOBILE PEQUENO (480px) --- */
@media (max-width: 480px) {
    .hero {
        padding: 0 12px 40px !important;
        background-position: center center, left -80px !important;
    }
    .hero-container {
        padding-top: 480px !important;
    }
    .hero-main-logo { 
        width: 240px !important; 
        margin: 0 auto 8px auto !important;
    }

    .hero-card {
        width:    calc(50% - 8px) !important;
        max-width: 185px !important;
        height:    275px !important;
        padding:   14px 10px 10px !important;
    }
    .badge-container { height: 16px !important; margin-bottom: 4px !important; }
    .badge-new { font-size: 7px !important; padding: 1.5px 5px !important; }
    .icon-img   { height: 44px !important; }
    .device-img { height: 100px !important; }
    .device-img img { width: 125px !important; height: auto !important; }
    .logo-img   { height: 28px !important; }
}

.card-icon img {
    max-height: 100%;
    max-width: 90%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}


/* Badge Novo Estático e Alinhamento */
.badge-container {
    width: 100%;
    height: 25px;           /* Área reservada para empurrar os ícones para baixo em todos os cards */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}
.badge-new, .badge-new-static {
    background: var(--primary-grad);
    color: var(--text-light);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px var(--primary-glow);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.25);
    line-height: 1.2;
    display: inline-block;
}

.card-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-specs {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-specs span {
    color: var(--primary);
    font-weight: 800;
}

.card-system {
    margin-top: auto;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-system span {
    color: var(--primary);
}

/* ==========================================
   4. SEÇÃO DE DIVISÃO (LOJAS DO PARAGUAI)
   ========================================== */
.divider-section {
    background-color: #121417;
    padding: 55px 0;
    text-align: center;
    border-bottom: 1px solid var(--dark-card-border);
    border-top: 1px solid var(--dark-card-border);
    position: relative;
    background-image: radial-gradient(rgba(245, 106, 37, 0.08) 1px, transparent 1px), url('img/technology.svg');
    background-size: 24px 24px, contain;
    background-repeat: repeat, no-repeat;
    background-position: center, right center;
}

.divider-title {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.divider-title span {
    color: var(--primary);
}

.divider-subtitle {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ==========================================
   5. SEÇÃO DE CARROSSÉIS DE PRODUTOS (SHOWCASE)
   ========================================== */
.products-showcase {
    padding: 100px 0;
    background-color: var(--dark-deep);
    position: relative;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 120px;
    scroll-margin-top: 120px;
}

.product-row:last-child {
    margin-bottom: 0;
}

/* Alternando lados */
.product-row.reverse {
    flex-direction: row-reverse;
}

/* Lado Esquerdo/Direito: Info e Logotipo do Produto */
.product-info-side {
    flex: 0 0 337px;
    width: 337px;
    height: 287px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between; /* Spread icon and text vertical bounds */
    z-index: 10;
}

.product-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    height: 87px; /* Fire text logo default height */
}

.product-brand-logo img {
    width: 270px; /* Matches exact user dimensions width */
    height: 87px;
    filter: none;
    transition: var(--transition-smooth);
}

.product-brand-logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

#product-infinity .product-brand-logo {
    height: 81px; /* Infinity text logo height */
}

#product-infinity .product-brand-logo img {
    width: 337px;
    height: 81px;
}

#product-ultimate .product-brand-logo {
    height: 79px;
}

#product-ultimate .product-brand-logo img {
    width: 337px;
    height: 79px;
}

#product-play .product-brand-logo {
    height: 101px;
}

#product-play .product-brand-logo img {
    width: 337px;
    height: 101px;
}

.product-hero-image {
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-hero-image img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.7));
    transition: var(--transition-smooth);
}

.product-row:hover .product-hero-image img {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 25px 35px var(--primary-glow));
}

/* Lado Direito: Carrossel do Produto */
.product-carousel-side {
    flex: 0 0 auto;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 5;
}

/* Estilo do Ícone e Brilho na Esquerda */
.product-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    width: 100%;
    height: 126px; /* Fire icon default height */
}

.product-brand-icon img {
    width: 189px; /* Matches layout exactly (189px width) */
    height: 126px;
    filter: none;
    transition: var(--transition-smooth);
}

#product-infinity .product-brand-icon {
    height: 120px; /* Infinity icon height */
}

#product-infinity .product-brand-icon img {
    width: 250px; /* Infinity icon width */
    height: 120px;
}

#product-ultimate .product-brand-icon {
    height: 120px;
}

#product-ultimate .product-brand-icon img {
    width: 120px;
    height: 120px;
}

#product-play .product-brand-icon {
    height: 120px;
}

#product-play .product-brand-icon img {
    width: 110px;
    height: 120px;
}

.product-brand-icon:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 90, 0, 0.45));
}


.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-glow);
}


/* Swiper Overrides */
.swiper {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background-color: transparent !important;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.swiper-slide img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* Estilo da Fileira Estática de Produtos */
.product-carousel-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: auto;
    margin: 0;
    padding: 10px 0;
    min-height: 550px; /* Evita que o contêiner encolha durante a transição dos cards (previne layout shift) */
    touch-action: pan-y;
}

.product-card-static {
    flex: 0 0 327px; /* All cards have exact same width */
    width: 327px;
    height: 430px;   /* Side cards height is 430px */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    /* Transição padrão (quando encolhe): altura diminui mais rapidamente (0.25s) para evitar sobreposição */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s, height 0.25s ease-in-out, width 0.6s cubic-bezier(0.16, 1, 0.3, 1), flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, margin 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.product-card-static.active {
    height: 529px;   /* Middle card is 529px */
    box-shadow: 0 15px 45px rgba(245, 106, 37, 0.22);
    border: 1px solid rgba(245, 106, 37, 0.25);
    /* Transição ativa (quando cresce): altura cresce de forma suave e progressiva (0.6s) */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s, height 0.6s cubic-bezier(0.16, 1, 0.3, 1), width 0.6s cubic-bezier(0.16, 1, 0.3, 1), flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, margin 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-static a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card-static:hover img {
    transform: scale(1.03);
}

.product-card-static:not(.active):hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Custom Carousel Transitions */
.product-card-static.entering {
    width: 0 !important;
    flex: 0 0 0 !important;
    opacity: 0 !important;
    margin-right: -20px !important;
    pointer-events: none;
}

.product-card-static.exiting {
    pointer-events: none;
}

.product-card-static.exiting.animate-exit {
    width: 0 !important;
    flex: 0 0 0 !important;
    opacity: 0 !important;
    margin-left: -20px !important;
}

/* Bidirectional transitions for the rotating carousel */
.product-card-static.entering-right {
    width: 0 !important;
    flex: 0 0 0 !important;
    opacity: 0 !important;
    margin-left: -20px !important;
    pointer-events: none;
}

.product-card-static.exiting-left {
    pointer-events: none;
}

.product-card-static.exiting-left.animate-exit-left {
    width: 0 !important;
    flex: 0 0 0 !important;
    opacity: 0 !important;
    margin-right: -20px !important;
}

/* Redução dos cards da vitrine para telas intermediárias */
@media (max-width: 1400px) {
    .product-card-static {
        flex: 0 0 270px;
        width: 270px;
        height: 355px;
    }
    .product-card-static.active {
        height: 440px;
    }
    .product-carousel-static {
        min-height: 460px; /* Mantém a altura estável em telas intermediárias */
    }
}

/* Responsividade para a fileira estática */
@media (max-width: 768px) {
    .product-carousel-static {
        flex-direction: column;
        gap: 15px;
        min-height: 650px; /* Evita layout shift no mobile com cards empilhados */
    }
    .product-card-static {
        flex: 1 1 auto;
        width: 100%;
        max-width: 320px;
        height: 200px;
    }
    .product-card-static.active {
        height: 200px;
    }
    .product-card-static.entering {
        width: 100% !important;
        max-width: 320px !important;
        height: 0 !important;
        flex: 0 0 0 !important;
        margin-right: 0 !important;
        margin-bottom: -15px !important;
    }
    .product-card-static.exiting.animate-exit {
        width: 100% !important;
        max-width: 320px !important;
        height: 0 !important;
        flex: 0 0 0 !important;
        margin-left: 0 !important;
        margin-top: -15px !important;
    }
}

.swiper-button-next, .swiper-button-prev {
    background-color: rgba(13, 14, 16, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--text-light); /* Volta a ser branco no tema escuro */
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.08);
}
.swiper-pagination {
    display: none !important;
}

.partners-swiper {
    overflow: hidden;
    width: 100%;
    margin: 0 30px;
}
.partners-btn {
    position: relative;
    z-index: 10;
}

/* ==========================================
   6. SEÇÃO FALE COM NOSSO SUPORTE
   ========================================== */
.support-cta {
    position: relative;
    background-image: linear-gradient(rgba(13, 14, 16, 0.88), rgba(13, 14, 16, 0.88)), url('img/atendentes_suporte.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    background-repeat: no-repeat;
    padding: 110px 0;
    text-align: center;
    border: none; /* Removendo as bordas que criavam a sensação de caixa/padding indesejado */
}

.support-cta-subtitle {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.support-cta-title {
    font-family: var(--font-title);
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    color: #FFFFFF; /* Garante leitura no fundo escuro */
}

.support-cta-title span {
    color: var(--primary);
}

.support-cta .btn-premium {
    font-size: 16px;
    padding: 16px 36px;
    box-shadow: 0 8px 25px rgba(245, 106, 37, 0.25);
}

/* ==========================================
   7. SEÇÃO PARCEIROS (ONDE ENCONTRAR)
   ========================================== */
.partners-section {
    padding: 80px 0;
    background-color: var(--dark-deep);
    text-align: center;
}

.partners-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Mosaico de Parceiros */
.partners-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 180px 180px; /* Reduzido de 250px para diminuir a altura dos cards */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mosaic-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mosaic-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 90, 0, 0.3);
}

.mosaic-open {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.mosaic-column-right {
    grid-column: 2 / 3;
    grid-row: 1 / 3; /* Faz a coluna ocupar as duas linhas de altura */
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.mosaic-item img {
    max-width: 60%;
    max-height: 50%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.mosaic-open img {
    max-width: 50%;
    max-height: 40%;
}

.mosaic-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partners-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    .mosaic-open {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 220px;
    }
    .mosaic-column-right {
        grid-column: 1 / -1;
        grid-row: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px;
        gap: 16px;
        display: grid;
    }
}

@media (max-width: 480px) {
    .mosaic-open {
        height: 180px;
    }
    .mosaic-column-right {
        grid-template-columns: 1fr;
        grid-template-rows: 120px 120px;
    }
}

/* ==========================================
   8. RODAPÉ (FOOTER)
   ========================================== */
footer {
    background-color: #323334;
    color: var(--text-light);
    padding: 80px 0 35px;
    text-align: center;
    border-top: 1px solid var(--dark-card-border);
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 38px;
    margin: 0 auto;
}

.footer-tagline {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 45px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-title);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-nav .btn-premium {
    font-size: 13px;
    padding: 8px 22px;
}



.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--dark-card-border);
    margin: 35px 0;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

/* ==========================================
   9. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1200px) {
    .product-row {
        flex-direction: column !important;
        gap: 50px;
        text-align: center;
    }
    .product-info-side, .product-carousel-side {
        flex: 0 0 100%;
        width: 100%;
    }
    .product-info-side {
        height: auto;
        gap: 20px;
    }
    .product-brand-icon, .product-brand-logo {
        height: auto;
    }
    .product-brand-icon img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
    .product-brand-logo img {
        max-width: 337px;
        width: 100%;
        height: auto;
    }
    .product-carousel-side {
        padding: 10px 0 !important;
    }
    .product-card-static {
        flex: 0 0 220px !important;
        width: 220px !important;
        height: 290px !important;
    }
    .product-card-static.active {
        height: 360px !important;
    }
    .product-carousel-static {
        min-height: 380px; /* Evita layout shift no tablet */
    }
}

@media (max-width: 1150px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-bottom: 1px solid var(--dark-card-border);
        gap: 15px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }
    .nav-menu.active {
        display: flex !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
    header .btn-premium {
        padding: 8px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
        gap: 6px;
        margin-left: auto;
        margin-right: 15px;
    }
    header .btn-premium i {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero-right {
        margin-top: 80px;
    }
    .hero-main-logo {
        width: 280px;
    }
    .hero-familia, .hero-marca {
        font-size: 16px;
    }
    .hero-tagline {
        font-size: 16px;
    }
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 40px auto 0;
        gap: 10px;
    }
    .divider-title {
        font-size: 20px;
    }
    .divider-subtitle {
        font-size: 15px;
    }
    .carousel-container {
        height: 250px;
    }
    .partner-logo-item {
        flex: 0 0 calc(50% - 25px);
    }
    .support-cta-title {
        font-size: 28px;
    }
}

/* ==========================================
   WOW EFFECTS CSS
   ========================================== */


/* Custom Cursor */
/* Custom Cursor rules removed to restore browser pointer */



/* Spotlight Glow on Cards */
.hero-card {
    position: relative;
    overflow: hidden;
}
.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 106, 37, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.hero-card > * {
    position: relative;
    z-index: 1;
}

/* Fix SplitType Text Wrapping */
.line { overflow: hidden; padding-bottom: 5px; }
.word { padding-bottom: 5px; }
