
/* ── CUSTOM FONTS ── */
@font-face {
    font-family: 'Microgramma';
    src: url('../fonts/MicrogrammaExtDBol.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Microgramma';
    src: local('Microgramma'),
         url('../fonts/MicrogrammaExtDMed.ttf?v=1') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* ── PAGE LOADER ── */
.page-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #010714;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-loader-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loader-content {
    width: 33%;
    max-width: 400px;
    text-align: center;
}

.loader-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', monospace;
}

.loader-bar-wrapper {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E18EFB 0%, #3BCAFD 50%, #E18EFB 100%);
    box-shadow: 0 0 15px rgba(225, 142, 251, 0.5);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.loader-percent {
    font-size: 1rem;
    font-weight: 700;
    color: #3BCAFD;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
}

.banner-text-content {
    display: inline-block;
    width: fit-content;
}

/* ── CSS CUSTOM PROPERTIES (editáveis via Admin → Cores) ── */
:root {
    /* Fundos */
    --cor-fundo-body:     #010714;
    --cor-fundo-header:   #161616;
    --cor-fundo-sessao-1: #161616;   /* Notebooks */
    --cor-fundo-sessao-2: #0B0B0B;   /* Setup */
    --cor-fundo-sessao-3: #0B0B0B;   /* Outros Produtos */
    --cor-fundo-footer:   #161616;

    /* Botões (gradiente) */
    --cor-btn-a: #3BCAFD;
    --cor-btn-b: #E18EFB;

    /* Destaque / títulos (gradiente 4 cores) */
    --cor-destaque-a: #3FC0FF;
    --cor-destaque-b: #29F8F6;
    --cor-destaque-c: #EA82FF;
    --cor-destaque-d: #8AFED8;

    /* Detalhes */
    --cor-nav-link: #E18EFB;
    --cor-setas:    #FF6500;
    --cor-acento:   #FF6500;   /* bordas tabela PC, ícones, labels */
}

body {
    background-color: var(--cor-fundo-body);
    font-family: "Inter", sans-serif;
    color: #FFF;
}

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

/* ------------------------- TOP BANNER ----------------------------- */

.top-banner {
    position: relative;
    background-image: url('https://firebasestorage.googleapis.com/v0/b/clube-aorus.firebasestorage.app/o/assets%2FBANNER-LP.png?alt=media');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    min-height: clamp(250px, 40vh, 400px);
    display: flex;
    align-items: center;
}

.top-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--cor-destaque-a) 0%, var(--cor-destaque-b) 33%, var(--cor-destaque-c) 66%, var(--cor-destaque-d) 100%);
    background-size: 200% auto;
    animation: borderMove 3s linear infinite alternate;
}

.banner-txt {
    width: 70%;
    padding: 5vh 0;
    height: auto;
    position: relative;
    z-index: 2;
}

.banner-text-content {
    display: inline-block;
    width: fit-content;
}

.banner-gradient-text {
    font-family: 'Microgramma', 'Aldrich', 'Orbitron', sans-serif;
    font-size: clamp(0.76rem, 3.36vw, 2.52rem);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    margin: 0;
    padding: 0 10px;
    background: linear-gradient(90deg, #3FC0FF 0%, #29F8F6 33%, #EA82FF 66%, #8AFED8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
    position: relative;
    z-index: 2;
    transform: skewX(-12deg);
}

.banner-gradient-text span.highlight {
    background: linear-gradient(90deg, #3FC0FF 0%, #29F8F6 33%, #EA82FF 66%, #8AFED8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.banner-subtitle {
    font-family: 'Aldrich', 'Orbitron', sans-serif;
    font-size: clamp(0.42rem, 2vw, 1.13rem);
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.2;
    margin: 1rem 0 0 0;
    padding: 0 10px;
    color: #fff;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
    position: relative;
    z-index: 2;
    width: 100%;
}

@keyframes borderMove {
    0%   { background-position: 0%   0%; }
    100% { background-position: 100% 0%; }
}

/* ─── RESPONSIVO BANNER ─── */
@media (max-width: 768px) {
    /* Overlay escuro apenas no mobile */
    .top-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1;
    }

    .banner-text-content {
        width: 90%;
        max-width: 95vw;
        margin: 0 auto;
    }

    .banner-gradient-text {
        font-size: clamp(1.4rem, 6.5vw, 2.4rem);
        line-height: 1.1;
        text-align: center;
    }

    .banner-subtitle {
        font-size: clamp(0.75rem, 3.2vw, 1.1rem);
        line-height: 1.15;
        text-align: center;
    }
}

.top-banner img { max-width: 100%; height: auto; }

img.logo        { height: auto; width: 100%; }
img.logo-logitech { height: 13vh; width: auto; }
img.footer      { height: 13vh; width: auto; }

/* ------------------------- MENU ----------------------------- */

.menu { background: var(--cor-fundo-header); --bs-navbar-padding-y: 1rem; }

.menu a {
    color: var(--cor-nav-link);
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 0;
}

.menu .nav-link {
    font-size: 15px;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-weight: 600;
}

.menu a:hover {
    color: #FFF;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu .btn-primary {
    color: #212121;
    background: linear-gradient(92deg, var(--cor-btn-a) 0%, var(--cor-btn-b) 100%);
    border: none;
    box-shadow: 0px 2px 0px 0px rgba(0,0,0,.2);
}

.menu .btn-primary:hover { color: #fff; background-color: #fff; border: none; }

.menu .btn-outline-secondary {
    color: #FFF;
    border: 2px solid #E18EFB;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu .btn-outline-secondary:hover {
    color: #212121;
    background: linear-gradient(92deg, var(--cor-btn-a) 0%, var(--cor-btn-b) 100%);
    border-color: transparent;
}

/* CARROSSEL DOS PCs */

.carousel-control-prev,
.carousel-control-next { opacity: 1 !important; }

/* Puxa as setas pra fora do conteúdo do carousel */
#carouselSetups {
    overflow: visible;
}

#carouselSetups .carousel-control-prev {
    left: -4rem;
    width: 3rem;
}

#carouselSetups .carousel-control-next {
    right: -4rem;
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 3rem;
    height: 3rem;
    background-color: var(--cor-btn-b);
    border-radius: 50%;
    opacity: 1 !important;
}

.carousel-control-prev-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carousel-control-next-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #FFF;
    transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* HAMBURGUER */
/* Ícones de redes sociais */
.rede-link {
    color: var(--cor-nav-link);
    opacity: .75;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
}

.rede-link:hover {
    opacity: 1;
    color: #fff;
    transform: scale(1.1);
}

/* Separador visual entre redes e botão CTA no desktop */
#redes-desktop {
    border-left: 1px solid #2a2a2a;
    padding-left: 10px;
    margin-left: 2px;
    gap: 8px !important;
    flex-shrink: 0;
}

.navbar-toggler {
    background-color: #E18EFB;
    border: none;
    padding: 5px 10px;
    border-radius: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='purple' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.menu .navbar-nav {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.menu .navbar-nav .nav-item { flex-shrink: 0; }

.menu .navbar-brand { flex-shrink: 0; margin-right: 0; }

/* FOOTER */
.footer {
    background-color: var(--cor-fundo-footer);
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Orbitron;
}

.note { text-align: center; font-weight: bold; margin-top: 15px; font-family: Orbitron; }

.btn { border-radius: 0px; }

/* ------------------------- SEÇÕES ----------------------------- */

.sessao-ofertas       { background: var(--cor-fundo-sessao-3); }
.sessao-intel         { background: var(--cor-fundo-sessao-1); }
.sessao-pc-adrenaline { background: var(--cor-fundo-sessao-2); }

/* ------------------------- TEXTOS ----------------------------- */

h2.section-title.highlight,
h2.section-title.highlight-2,
h2.section-title.highlight-white { padding: 2px 20px; }

h2.section-title-pc {
    font-size: 4rem;
    font-family: Orbitron;
    font-weight: 700;
    text-align: left;
    background: linear-gradient(90deg, var(--cor-destaque-a) 0%, var(--cor-destaque-b) 33%, var(--cor-destaque-c) 66%, var(--cor-destaque-d) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h4.section-title-pc {
    color: #fff !important;
    font-size: 1.2rem;
    font-family: Orbitron;
    font-weight: 700;
    text-align: left;
}

h2.section-title,
h2.section-title-white,
h2.section-title-orange { font-size: 2.4rem; font-family: Orbitron; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; }

h3.section-title,
h3.section-title-white,
h3.section-title-orange {
    font-size: 1.4rem;
    font-family: 'Aldrich', 'Orbitron', sans-serif;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
    color: #fff !important;
}

h2.section-title.highlight,
h2.section-title.highlight-2 {
    background: linear-gradient(90deg, var(--cor-destaque-a) 0%, var(--cor-destaque-b) 33%, var(--cor-destaque-c) 66%, var(--cor-destaque-d) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    padding: 4px 24px;
    border-radius: 2px;
    font-style: italic;
    font-family: 'Microgramma', 'Aldrich', 'Orbitron', sans-serif;
    font-weight: 700;
    animation: borderMove 3s linear infinite alternate;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Microgramma', 'Aldrich', 'Orbitron', sans-serif;
    margin: 0;
}

h3.section-title       { color: black; }
h3.section-title-white { color: #fff; }
h3.section-title-orange { color: var(--cor-acento); }

p.section-desc {
    color: var(--cor-acento);
    font-size: 1.3rem;
    font-family: Orbitron;
    font-weight: 700;
    padding: 2rem 0;
}

.setup-name { color: var(--cor-acento); }

/* AJUSTES */
.py-8 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-s { padding-top: 6rem !important; padding-bottom: 3rem !important; }

/* ---------------------- CONFIG PC -------------------------- */

.list-group,
.list-group-item {
    color: #fff;
    font-weight: 600;
    border-radius: 0px;
    font-size: 14px;
    background: transparent;
    border: 1px solid var(--cor-acento);
}

strong.item-pc { color: var(--cor-acento); font-family: Orbitron; font-size: 12px; font-weight: 800; }

.btn-item-pc { font-size: 13px; }

.btn-veragora,
.btn-item-pc {
    color: #161616;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    background: linear-gradient(92deg, var(--cor-btn-a) 0%, var(--cor-btn-b) 100%);
}

.btn-veragora {
    width: 100%;
    padding: 10px 5px;
    margin-top: 30px;
    font-size: 16px;
    box-shadow: 0px 4px 0px 0px rgba(0,0,0,.2);
}

.btn-veragora:hover,
.btn-item-pc:hover {
    background: linear-gradient(92deg, rgba(59, 202, 253, 0.8) 0%, rgba(225, 142, 251, 0.8) 100%);
    color: #FFF;
    box-shadow: 0px 4px 12px rgba(225, 142, 251, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SWIPER NAV */
.swiper-button-next,
.swiper-button-prev { color: var(--cor-setas) !important; }

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled { opacity: .35; cursor: auto; pointer-events: none; }

/* SWIPER ALTURA IGUAL */
.swiper .swiper-wrapper                        { align-items: stretch; }
.swiper-slide                                  { display: flex; flex-direction: column; height: auto; }
.swiper-destaques-container .swiper-wrapper    { display: flex; align-items: stretch; }
.swiper-destaques-container .swiper-slide      { display: flex; flex-direction: column; height: auto; }

/* PRODUTOS EM DESTAQUE */
.destaque-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    height: 100%;
    color: white;
    padding: 10px 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destaque-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(225, 142, 251, 0.15);
}

.destaque-item img { max-height: 180px; object-fit: contain; }

.produto-titulo {
    font-family: Orbitron;
    font-size: 16px;
    font-weight: 600;
    color: #E8E8E8;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    min-height: 2.2em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET (< 992px) ─────────────────────────────────────── */
@media (max-width: 991.98px) {

    /* Logo + toggler na mesma linha, collapse vai pra baixo */
    .menu .container {
        flex-wrap: wrap;
        align-items: center;
        gap: 0 !important;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .menu .navbar-brand   { order: 1; padding: 0 12px 0 0; align-self: center; }
    .menu .navbar-toggler { order: 2; margin-left: auto; align-self: center; }
    .menu .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        padding: 8px 0;
    }

    /* Títulos um pouco menores */
    h2.section-title,
    h2.section-title-white,
    h2.section-title-orange { font-size: 1.8rem; }

    h3.section-title,
    h3.section-title-white,
    h3.section-title-orange { font-size: 1.1rem; }

    /* Setup carousel: setas grudadas nas bordas (sem negative offset) */
    #carouselSetups .carousel-control-prev { left: 0; }
    #carouselSetups .carousel-control-next { right: 0; }

    /* Setup: imagem menor */
    #carouselSetups img { max-height: 280px !important; }

    /* Setup: heading centralizado */
    h4.section-title-pc { text-align: center; }
}

/* ── MOBILE (< 768px) ─────────────────────────────────────── */
@media (max-width: 767.98px) {

    /* Oculta itens exclusivos de desktop */
    .sponsors { display: none; }
    p.section-desc { display: none; }

    /* Banner mobile */
    .top-banner {
        background-position: center center;
        background-size: cover;
        min-height: 260px;
    }
    .top-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1;
    }
    .top-banner .container { z-index: 2; position: relative; }
    .top-banner .container {
        max-width: 100% !important;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 260px;
    }
    .top-banner .row {
        width: 100%;
        margin: 0;
    }
    .top-banner .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .banner-txt {
        width: 80%;
        max-width: 320px;
        padding: 3vh 0;
        margin: 0 auto;
        display: block;
    }

    /* Padding das seções reduzido */
    .py-8 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .py-s { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

    /* Títulos mobile */
    h2.section-title,
    h2.section-title-white,
    h2.section-title-orange { font-size: 1.4rem; }

    h3.section-title,
    h3.section-title-white,
    h3.section-title-orange { font-size: 0.9rem; }

    h4.section-title-pc { font-size: 0.95rem; text-align: center; }

    /* highlight-2 não transborda */
    h2.section-title.highlight-2 { font-size: 1.4rem; padding: 2px 12px; }

    /* Banner row (remove flex-column herdado) */
    .top-banner .row { flex-direction: row; }
    .top-banner { border-bottom: 2px solid #C90808; }

    /* Logo */
    img.logo { height: auto; width: 100%; }
    img.logo-logitech { height: 10vh; width: auto; }
    img.footer { height: 10vh; width: auto; }

    /* Navbar: toggler alinhado com logo */
    .menu .container {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .menu .navbar-toggler {
        padding: 4px 8px;
        font-size: 14px;
    }

    /* Navbar mobile */
    .menu-mobile-center { flex-direction: column; align-items: center; text-align: center; }
    .menu-mobile-center .navbar-nav {
        width: 100%;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center;
        white-space: normal;
    }
    .menu-mobile-center .navbar-nav .nav-link { margin: 6px 0; }

    /* Swiper: esconde setas no mobile (swipe nativo) */
    .swiper-button-next,
    .swiper-button-prev { display: none; }

    /* Setup carousel: setas fixas na altura da imagem */
    #carouselSetups {
        position: relative;
    }
    #carouselSetups .carousel-control-prev,
    #carouselSetups .carousel-control-next {
        top: 0;
        bottom: auto;
        height: 200px;   /* mesma altura da imagem no mobile */
        width: 2rem;
        background: rgba(0,0,0,.25);
    }
    #carouselSetups .carousel-control-prev { left: 0; }
    #carouselSetups .carousel-control-next { right: 0; }

    /* Setup: imagem centralizada e menor, com padding pras setas */
    #carouselSetups img {
        max-height: 200px !important;
        margin: 0 auto 1rem;
        padding: 0 2rem;
        box-sizing: border-box;
        width: 100%;
        object-fit: contain;
    }

    /* Setup: remove padding extra da coluna da lista */
    #carouselSetups .col-md-6:last-child { padding: 0 0.5rem; }

    /* Lista PC: uma linha só por item */
    .list-group-item {
        font-size: 11px;
        padding: 7px 8px;
        display: flex;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap;
        gap: 6px;
    }
    .list-group-item > span {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    strong.item-pc {
        font-size: 9px;
        display: inline;
        margin-right: 4px;
    }
    .btn-item-pc {
        font-size: 10px;
        padding: 4px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Footer */
    .footer { font-size: 11px; padding: 16px; }
}

/* ────────────────────────── FAQ ──────────────────────────── */

.section-faq {
    background: var(--cor-fundo-sessao-1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid var(--cor-acento);
    border-left: 4px solid var(--cor-acento);
    border-radius: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.faq-item-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.2);
    user-select: none;
}

.faq-item-header:hover {
    background: rgba(255, 101, 0, 0.15);
    border-left-color: var(--cor-acento);
}

.faq-item-header::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--cor-acento);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.open .faq-item-header::after {
    transform: rotate(-180deg);
}

.faq-item-header h5 {
    font-size: 1.1rem;
    color: #FFF;
    font-weight: 600;
    margin: 0;
    font-family: Inter, sans-serif;
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-item-content {
    max-height: 500px;
}

.faq-item-body {
    padding: 1.5rem;
    color: #DDD;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: Inter, sans-serif;
}

/* ── TABLET (< 992px) ─────────────────────────────────────── */
@media (max-width: 991.98px) {
    .faq-item-header {
        padding: 1.2rem;
    }

    .faq-item-header h5 {
        font-size: 1rem;
    }

    .faq-item-body {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
}

/* ── MOBILE (< 768px) ─────────────────────────────────────── */
@media (max-width: 767.98px) {
    .faq-item-header {
        padding: 1rem;
    }

    .faq-item-header h5 {
        font-size: 0.95rem;
    }

    .faq-item-header::after {
        font-size: 0.7rem;
        margin-left: 0.8rem;
    }

    .faq-item-body {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* ── SMALL MOBILE (< 480px) ──────────────────────────────── */
@media (max-width: 479.98px) {

    h2.section-title,
    h2.section-title-white,
    h2.section-title-orange { font-size: 1.1rem; }

    h2.section-title.highlight-2 { font-size: 1rem; padding: 2px 10px; }

    h3.section-title,
    h3.section-title-white,
    h3.section-title-orange { font-size: 0.8rem; }

    h4.section-title-pc { font-size: 0.8rem; }

    #carouselSetups .col-md-6:last-child { padding: 0 0.25rem; }
    .list-group-item > span { font-size: 10px; }
    strong.item-pc { font-size: 8px; }

    .faq-item-header {
        padding: 0.8rem;
    }

    .faq-item-header h5 {
        font-size: 0.85rem;
    }

    .faq-item-body {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
}

/* ── TRANSLATIONS MANAGER ───────────────────────────────────────── */

.translations-category {
    background: #0B0B0B;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #E18EFB;
    font-size: 1.1rem;
    margin-top: 2rem;
    border-left: 4px solid #E18EFB;
    grid-column: 1 / -1;
}

.translations-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a1a;
}

.translations-row {
    display: contents;
}

.translations-cell {
    padding: 1rem;
    border-right: 1px solid #333;
    border-bottom: 1px solid #222;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.95rem;
}

.translations-cell:last-child {
    border-right: none;
}

.translations-cell.translations-header {
    background: #0B0B0B;
    font-weight: 700;
    color: #E18EFB;
    border-bottom: 2px solid #E18EFB;
    padding: 1.2rem 1rem;
}

.translations-cell.label {
    font-weight: 600;
    color: #E18EFB;
    font-size: 0.9rem;
    background: #161616;
}

.translations-cell.pt-ref {
    background: #0B0B0B;
    color: #bbb;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-word;
    font-style: italic;
    max-height: 100px;
    overflow-y: auto;
}

.translations-input {
    width: 100%;
    min-height: 2.5rem;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 0.5rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.translations-input:focus {
    outline: none;
    border-color: #E18EFB;
    background: #2a2a2a;
    box-shadow: 0 0 8px rgba(225, 142, 251, 0.3);
}

.translations-input::placeholder {
    color: #666;
}

.translations-grid .translations-row:hover .translations-cell {
    background: #222;
}

.translations-grid .translations-row:hover .translations-cell.pt-ref {
    background: #1a1a1a;
}

.translations-grid .translations-row:hover .translations-cell.label {
    background: #1e1e1e;
}

/* Responsivo */
@media (max-width: 1200px) {
    .translations-grid {
        grid-template-columns: 150px 1fr 1fr 1fr;
    }

    .translations-cell {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .translations-input {
        min-height: 2rem;
        font-size: 0.85rem;
    }
}

/* ── CARROSSEL POR SEÇÃO (ADMIN) ─────────────────────────────────────── */

.produtos-secao-list {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #0B0B0B;
    border-radius: 4px;
    min-height: 60px;
    border: 1px solid #333;
}

.sortable-ghost {
    cursor: grabbing;
    opacity: 0.6;
}


@media (max-width: 768px) {
    .translations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        border: none;
        overflow: visible;
    }

    .translations-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
        background: #161616;
        border: 1px solid #333;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .translations-cell {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .translations-cell.translations-header {
        display: none;
    }

    .translations-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #E18EFB;
        display: block;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .translations-category {
        margin-top: 1.5rem;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

/* ── FLOATING PROMO ── */
.floating-promo {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
    width: 13rem;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: none;
    flex-direction: column;
}

.float-up {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.float-down-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.float-down {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.promo-timer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #181818;
    padding: 0;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    z-index: 100;
    line-height: 1.6;
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-titulo {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding-top: 10px;
}

.timer-countdown {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: -5px;
}

/* Responsividade do Floating Promo */
@media (max-width: 1366px) {
    .floating-promo {
        width: 12rem;
        bottom: 2rem;
        right: 2rem;
    }

    .timer-countdown {
        font-size: 1.1rem;
    }

    .timer-titulo {
        font-size: 0.65rem;
    }
}

@media (max-width: 1024px) {
    .floating-promo {
        width: 11rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .timer-countdown {
        font-size: 1rem;
    }

    .timer-titulo {
        font-size: 0.6rem;
    }
}
