/* home.css - estilos específicos para a homepage reformulada */

/* corpo recebe padding extra para barra fixa */
html {
    scroll-behavior: smooth;
}
body.home {
    overflow-x: hidden;
}

/* 1. Barra superior de mensagens rotativas */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #09111b 0%, #121b29 48%, #182230 100%);
    color: #fff;
    font-size: 0.875rem;
    z-index: 1300;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.top-bar .message {
    width: 100%;
    text-align: center;
    line-height: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-weight: 600;
}
.top-bar .message.visible {
    opacity: 1;
}

/* 2. Header transparente / branco ao scroll */
body.home .main-header {
    position: fixed;
    top: 30px; /* height of top-bar */
    left: 0;
    right: 0;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1200;
    /* remove any default border/shadow */
    border-bottom: none;
    box-shadow: none;
    color: #fff;
}
body.home .main-header.scrolled,
body.home .main-header.hovered,
body.home .main-header:hover {
    background: #fff;
    color: #000;
    /* keep clean without divider */
    border-bottom: none;
    box-shadow: none;
}
body.home .main-header:not(.scrolled):not(.hovered) a,
body.home .main-header:not(.scrolled):not(.hovered) .icon-link {
    color: #fff;
    transition: color 0.3s ease;
}

/* dropdown toggle and cart icon should also be white when header is transparent */
body.home .main-header:not(.scrolled):not(.hovered) .dropdown-toggle {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
body.home .main-header:not(.scrolled):not(.hovered) .dropdown-toggle:hover,
body.home .main-header:not(.scrolled):not(.hovered) .dropdown-toggle.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
body.home .main-header:not(.scrolled):not(.hovered) .cart-icon-link i {
    color: #fff;
}
body.home .main-header:not(.scrolled):not(.hovered) .menu-toggle {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
body.home .main-header.scrolled a,
body.home .main-header.scrolled .icon-link,
body.home .main-header.hovered a,
body.home .main-header.hovered .icon-link {
    color: #000;
}

/* 3. Navegação minimalista */
/* main-nav default (flex for desktop) – grid only applies to inner wrapper */
body.home .main-nav {
    display: block;
    width: 100%;
    /* keep the mobile panel below the top-bar */
    top: 30px;
}

/* grid wrapper around header content */
body.home .main-nav .header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* grid helpers */
body.home .header-left { justify-self: start; }
body.home .header-center { justify-self: center; }
body.home .header-right { justify-self: end; }
body.home .main-nav .nav-left,
body.home .main-nav .nav-right {
    display: flex;
    align-items: center;
}
/* position relative on list items to anchor absolute search box */
body.home .main-nav .nav-right li {
    position: relative;
}
body.home .main-nav .nav-left li,
body.home .main-nav .nav-right li {
    list-style: none;
}
body.home .main-nav .nav-left a,
body.home .main-nav .mega-toggle {
    margin-right: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
body.home .main-nav .navbar-logo {
    flex-shrink: 0;
    margin: 0; /* center cell will align it */
}
body.home .main-nav .navbar-logo img {
    height: 50px;
    width: auto;
}

/* ícones lado direito */
body.home .main-nav .icon-link {
    color: inherit;
    font-size: 1.2rem;
    margin-left: 1.2rem;
    position: relative;
}
body.home .main-nav .cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--primary-color);
    color: #0c1218;
    border-radius: 50%;
    font-size: 0.6rem;
    padding: 2px 5px;
    font-weight: 700;
}

/* busca escondida até ativar */
body.home .search-box {
    position: absolute;
    right: 0;
    top: 100%;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}
body.home .search-box.active {
    width: 200px;
    opacity: 1;
}
body.home .search-box input[type="search"] {
    width: 100%;
    padding: 4px 8px;
    font-size: 0.9rem;
}
body.home .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

/* ensure mobile close button does not occupy a grid cell */
body.home .mobile-menu-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1301;
}

/* 5. Mega menu clean */
/* remove positioning on parent so the dropdown can stretch across the viewport */
.has-mega {
    /* no longer relative; the containing block becomes the nearest positioned ancestor
       (the header itself), allowing the menu to align to the left edge of the page */
    position: static;
}
.mega-wrapper {
    /* positioned relative to header, span full available width of nav container */
    position: absolute;
    top: 100%; /* drops below the header */
    left: 0;    /* start at left edge of header */
    width: 100%; /* fill header/nav width */
    background: #fff;
    padding: 40px 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1199;
}
.has-mega:hover .mega-wrapper,
.mega-wrapper:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.mega-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    /* keep content aligned with main site container */
    max-width: 1200px;
    margin: 0 auto;
}

/* grid for collection cards */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    gap: 20px;
}

/* new collections grid (homepage) */
.collections {
    padding: 48px 0;
}
.collections h2 {
    font-size: 1.75rem;
    margin-bottom: 28px;
    text-align: center;
}
.collections-grid {
    display: grid;
    gap: 28px;
}
@media (min-width: 769px) {
    .collections-grid {
        grid-template-columns: repeat(4,1fr);
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .collections-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

.collection-card {
    cursor: pointer;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f6fb 0%, #eef1f8 100%);
    border: 1px solid rgba(15,17,23,0.07);
    box-shadow: 0 12px 32px rgba(15,17,23,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 0;
}
.collection-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 56px rgba(15,17,23,0.18);
    border-color: rgba(46, 139, 87, 0.45);
}
.collection-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0d1118;
}
.collection-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.35s ease;
}
.collection-card:hover .collection-image img {
    transform: scale(1.04);
}
.collection-info {
    padding: 16px 18px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.collection-eyebrow {
    display: inline-block;
    background: rgba(46, 139, 87, 0.16);
    color: #1f5d3b;
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 2px;
    width: fit-content;
}
.collection-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}
.collection-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    margin-top: 4px;
    transition: color 0.2s ease;
}
.collection-link::after {
    content: '→';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #11161f;
    color: #8fc8a8;
    font-size: 0.75rem;
}
.collection-card:hover .collection-link {
    color: #1f5d3b;
}

.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.mega-card-meta {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #3a5400;
    background: rgba(203,255,46,0.20);
    border-radius: 999px;
    padding: 2px 8px;
    margin-bottom: 4px;
    width: fit-content;
    align-self: center;
}

.mega-card img {
    width: 100%;
    height: 120px; /* fixed height for uniform row alignment */
    border-radius: 6px;
    object-fit: cover;
    display: block;
    margin-bottom: 6px;
}

.mega-card a {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    margin-top: 2px;
}

.mega-card a:hover {
    color: var(--primary-color);
}
.mega-col h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}
.mega-col ul {
    list-style:none;
    padding:0;
}
.mega-col li {
    margin-bottom: 0.5rem;
}
.mega-col a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mega-col a:hover {
    color: var(--primary-color);
}

/* typography and layout improvements for dynamic mega menu list */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-list li {
    margin-bottom: 0.5rem;
}
.mega-list a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: color 0.2s ease;
    display: block;
}
.mega-list a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mega-wrapper { display: none; }
}

/* allow desktop dropdowns to open on hover like mega menu */
header.home .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

/* update toggle styling when hovered to mirror expanded state */
header.home .dropdown:hover > .dropdown-toggle {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 4. Hero section com vídeo */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}/* ensure buttons not transparent */
/* Seta de scroll do hero */
.hero-scroll-arrow {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 102;
    color: rgba(255,255,255,0.75);
    font-size: 2rem;
    animation: arrowBounce 1.6s ease-in-out infinite;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-scroll-arrow:hover {
    color: #D9FF5A;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 1;    }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}
/* ensure buttons not transparent */
.home-hero .cta-buttons .btn-cta,
.home-hero .cta-buttons .btn-cta-outline {
    opacity: 1 !important;
}
/* Botão único centralizado */
.home-hero .cta-buttons--single {
    justify-content: center;
}
.home-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.home-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 50;
    pointer-events: none;
}
.home-hero .hero-content-wrapper {
    position: relative;
    z-index: 101; /* ensure top layer */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
}
.home-hero .hero-content h1 {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.0;
    font-family: 'Barlow Condensed', 'Oxanium', sans-serif;
}
.home-hero .hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(203,255,46,0.22);
    color: #cbff2e;
    border: 1px solid rgba(203,255,46,0.45);
    border-radius: 999px;
    padding: 5px 14px;
    backdrop-filter: blur(8px);
    margin-bottom: 1.2rem;
}
.home-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.home-hero h1 {
    /* opacity controlada por animações */
}
.home-hero .cta-buttons .btn-cta,
.home-hero .cta-buttons .btn-cta-outline {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 999px;
    text-transform: uppercase;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
}
.home-hero .cta-buttons .btn-cta {
    background: #D9FF5A;
    color: #0c1218;
    border-color: #D9FF5A;
}
.home-hero .cta-buttons .btn-cta:hover {
    background: transparent;
    color: #D9FF5A;
    border-color: #D9FF5A;
}
.home-hero .cta-buttons .btn-cta-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.home-hero .cta-buttons .btn-cta-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* evitar que conteúdo da página fique sob o header fixo */
body.home main,
body.home section,
body.home .home-hero + * {
    padding-top: calc(30px + 70px);
}

/* responsivo */
@media (max-width: 768px) {
    body.home .main-nav .nav-left {
        flex-direction: column;
    }
    body.home .main-nav .navbar-logo {
        margin: 1rem 0;
    }
    body.home .search-box.active {
        width: 150px;
    }
}

/* guarantee hero-content opacity and vertical offset */
.home-hero .hero-content,
.home-hero .hero-content h1,
.home-hero .hero-content p,
.home-hero .hero-content .btn-cta,
.home-hero .hero-content .btn-cta-outline {
    z-index: 101; /* definitely above overlay/video */
}
.home-hero .hero-content { margin-top: 150px; }

/* ================================================================
   SEÇÃO NOSSA COLEÇÃO — Street Core (cards estáticos)
   ================================================================ */
.street-core-section {
    padding: 80px 0;
    background: #f6f8fb;
    text-align: center;
}
.street-core-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.street-core-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.65;
}
.street-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}
@media (min-width: 481px) and (max-width: 900px) {
    .street-core-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .street-core-grid { grid-template-columns: 1fr; }
}

/* ── Hero mobile ────────────────────────────────── */
@media (max-width: 768px) {
    .home-hero {
        height: 100dvh;
        min-height: 100dvh;
    }
    .home-hero .hero-content { margin-top: 80px; }
    .home-hero .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
    .hero-scroll-arrow {
        font-size: 1.5rem;
        bottom: 18px;
    }
}
@media (max-width: 480px) {
    .home-hero {
        height: 100dvh;
        min-height: 100dvh;
    }
    .home-hero .hero-content { margin-top: 60px; }
    .home-hero .hero-content h1 {
        font-size: clamp(1.8rem, 11vw, 2.6rem);
    }
    .hero-scroll-arrow {
        font-size: 1.3rem;
        bottom: 14px;
    }
}

.sc-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f6fb 0%, #eef1f8 100%);
    border: 1px solid rgba(15, 17, 23, 0.07);
    box-shadow: 0 10px 28px rgba(15, 17, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sc-card:hover {
    transform: scale(1.025);
    box-shadow: 0 20px 48px rgba(15, 17, 23, 0.15);
    border-color: rgba(203, 255, 46, 0.6);
}
.sc-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0d1118;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sc-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}
.sc-card:hover .sc-card-img img {
    transform: scale(1.05);
}
.sc-card-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sc-card-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}
.sc-card-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

/* Efeito Holograma - Materializando (para texto) */
@keyframes hologramEffect {
    0% {
        opacity: 0;
        filter: blur(10px) brightness(0.5);
        text-shadow: 0 0 10px rgba(203, 255, 46, 0.3);
    }
    25% {
        opacity: 0.4;
        filter: blur(6px) brightness(0.8);
        text-shadow: 0 0 15px rgba(203, 255, 46, 0.6);
        transform: translateY(10px);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px) brightness(1.2);
        text-shadow: 0 0 20px rgba(203, 255, 46, 0.8), 0 0 30px rgba(203, 255, 46, 0.4);
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        filter: blur(0) brightness(1);
        text-shadow: none;
        transform: translateY(0);
    }
}

/* Efeito de entrada para botão — aparece sólido, sem fade de opacidade */
@keyframes hologramButtonEffect {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ver Coleção - aparece aos 5s com efeito de 2s */
.cta-buttons.fade-in-first {
    animation: hologramButtonEffect 2s ease-in-out both;
    animation-delay: 5s;
    pointer-events: none;
}

/* Subtítulo - aparece aos 12s com efeito de 2s */
.hero-subtitle.fade-in-early {
    opacity: 0;
    animation: hologramEffect 2s ease-in-out forwards;
    animation-delay: 12s;
}

/* Título h1 - aparece aos 25s com efeito de 2s */
h1.fade-in-mid {
    opacity: 0;
    animation: hologramEffect 2s ease-in-out forwards;
    animation-delay: 25s;
}

/* Kicker - aparece em 25s */
.hero-kicker.fade-in-late {
    opacity: 0;
    animation: fadeInSimple 0.8s ease forwards;
    animation-delay: 25s;
}

/* Fade simples para o último elemento */
@keyframes fadeInSimple {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   SEÇÃO PERSONALIZAÇÃO SOB ENCOMENDA — WhatsApp conversion
   ================================================================ */
.custom-order-section {
    padding: 48px 0 80px;
    background: var(--surface-dark);
    color: #fff;
    text-align: center;
}
.custom-order-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px 40px;
    text-align: left;
}
.custom-order-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.custom-order-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.custom-order-section .section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 540px;
    margin: 0 auto 20px;
    line-height: 1.55;
}
.custom-order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}
@media (min-width: 481px) and (max-width: 900px) {
    .custom-order-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .custom-order-grid { grid-template-columns: 1fr; }
}

.custom-order-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.custom-order-card:hover {
    transform: scale(1.025);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.45);
    border-color: rgba(203, 255, 46, 0.45);
}
.custom-order-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1a2235;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-order-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}
.custom-order-card:hover .custom-order-img img {
    transform: scale(1.05);
}
.custom-order-info {
    padding: 16px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.custom-order-tag {
    display: inline-block;
    background: rgba(203, 255, 46, 0.12);
    color: #cbff2e;
    border: 1px solid rgba(203, 255, 46, 0.3);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 3px 10px;
    width: fit-content;
}
.custom-order-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.custom-order-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}
.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, transform 0.2s ease;
    margin-top: 6px;
    align-self: center;
    white-space: nowrap;
}
.btn-wpp:hover {
    background: #1da954;
    transform: translateY(-2px);
    color: #fff;
}
.btn-wpp i {
    font-size: 1rem;
}
.btn-wpp--sm {
    font-size: 0.77rem;
    padding: 8px 16px;
}

/* ================================================================
   SEÇÃO EYEBROW — label de categoria acima do título
   ================================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cbff2e;
    margin-bottom: 12px;
}

/* ================================================================
   GRID DE CATEGORIAS — integrado à seção principal de personalização
   ================================================================ */

/* Divisor label entre os cards de produto e os cards de categoria */
.custom-order-categories-label {
    margin: 52px 0 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.custom-order-categories-label::before,
.custom-order-categories-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.custom-order-categories-label span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    white-space: nowrap;
}

/* ================================================================
   CARROSSEL DE CATEGORIAS
   ================================================================ */
.themes-carousel-wrapper {
    position: relative;
    padding: 0 28px;
}
.themes-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.themes-carousel-btn:hover {
    background: rgba(141, 184, 46, 0.18);
    border-color: rgba(141, 184, 46, 0.45);
    color: #8db82e;
}
.themes-carousel-btn--prev { left: 0; }
.themes-carousel-btn--next { right: 0; }
.themes-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.themes-carousel::-webkit-scrollbar { display: none; }
.themes-carousel .theme-card {
    scroll-snap-align: start;
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
}
@media (max-width: 900px) {
    .themes-carousel .theme-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 560px) {
    .themes-carousel .theme-card { flex: 0 0 88%; }
    .themes-carousel-wrapper { padding: 0 20px; }
}
.theme-card {
    background: var(--surface-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(203, 255, 46, 0.35);
}
.theme-card--featured {
    border-color: rgba(203, 255, 46, 0.3);
    background: linear-gradient(145deg, #13243a 0%, #1a2e47 100%);
    overflow: hidden;
}
.theme-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(203, 255, 46, 0.15);
    color: #cbff2e;
    border: 1px solid rgba(203, 255, 46, 0.4);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
}
/* Placeholder para imagem/banner futuro da Copa */
.theme-card-img-placeholder {
    height: 96px;
    background: linear-gradient(135deg, rgba(203, 255, 46, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px dashed rgba(203, 255, 46, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(203, 255, 46, 0.5);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.theme-card-banner {
    width: calc(100% + 48px);
    margin: -28px -24px 0;
    height: 380px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
}
.theme-icon {
    font-size: 1.8rem;
    color: #cbff2e;
    line-height: 1;
    text-align: center;
}
.theme-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.25;
}
.theme-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

/* -- Mini produtos dentro do card Gamer -- */
.gamer-products-mini { display: none; } /* removido — substituído por slideshow */

/* -- Slideshow do card Gamer -- */
.gamer-slideshow {
    position: relative;
    width: calc(100% + 48px);
    margin: -28px -24px 0;
    height: 380px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.gamer-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: gamerFade 9s infinite;
}
.gamer-slide:nth-child(1) { animation-delay: 0s; }
.gamer-slide:nth-child(2) { animation-delay: 3s; }
.gamer-slide:nth-child(3) { animation-delay: 6s; }
.gamer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
@keyframes gamerFade {
    0%      { opacity: 1; }
    28%     { opacity: 1; }
    33%     { opacity: 0; }
    97%     { opacity: 0; }
    100%    { opacity: 0; }
}

/* ================================================================
   PROVA SOCIAL — mockup de celular + depoimentos
   ================================================================ */
.social-proof-section {
    padding: 80px 0;
    background: #f4f6f0;
    color: #11161f;
    text-align: left;
}
.social-proof-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}
.social-proof-text {
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}
.social-proof-text .section-eyebrow {
    color: #5a7a1a;
}
.social-proof-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #11161f;
    margin-bottom: 14px;
    line-height: 1.15;
}
.social-proof-text p {
    font-size: 0.97rem;
    color: #4a5260;
    line-height: 1.65;
    margin-bottom: 28px;
}
.social-proof-ig-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.social-proof-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #11161f;
    border: 1.5px solid rgba(17,22,31,0.18);
    border-radius: 999px;
    padding: 9px 18px;
    width: fit-content;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-proof-ig-btn i {
    font-size: 1rem;
    color: #5a7a1a;
}
.social-proof-ig-btn:hover {
    border-color: #5a7a1a;
    color: #5a7a1a;
    background: rgba(90,122,26,0.06);
}
.social-proof-note {
    font-size: 0.75rem !important;
    color: #9aa0ab !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* -- Phone shell -- */
.phone-shell {
    width: 270px;
    min-height: 500px;
    background: #0d1522;
    border-radius: 44px;
    border: 2.5px solid rgba(17, 22, 31, 0.18);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18),
                0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 14px 0 18px;
    flex-shrink: 0;
}
.phone-notch {
    width: 56px;
    height: 9px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    margin: 0 auto 12px;
}
.phone-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 10px;
}
.phone-feed-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 2px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
}
.phone-feed-header i {
    font-size: 0.85rem;
    color: #8db82e;
}
.phone-feed-track {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 290px;
}
.phone-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}
.phone-slide.active { opacity: 1; }
.phone-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #000;
}
.phone-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.phone-img-placeholder i { font-size: 1.4rem; }
/* Quando tiver imagem real: trocar o placeholder por <img> com esta classe */
.phone-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.phone-feed-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 10px 0 2px;
}
.phone-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s, width 0.3s;
}
.phone-dot.active {
    background: #8db82e;
    width: 14px;
    border-radius: 999px;
}


@media (max-width: 768px) {
    body.home .main-header {
        top: 30px;
        background: transparent !important;
    }
    body.home .main-header.scrolled,
    body.home .main-header.hovered,
    body.home .main-header:hover,
    body.home.mobile-menu-active .main-header {
        background: #fff !important;
    }

    .social-proof-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    .social-proof-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .social-proof-ig-links { align-items: center; }
}

/* ================================================================
   FOOTER — placeholders de contato em atualização
   ================================================================ */
.footer-contact-soon {
    color: rgba(255, 255, 255, 0.42);
    font-style: italic;
    font-size: 0.87rem;
}

/* ================================================================
   MEGA TOGGLE → agora é link simples; remover gap de navegação
   ================================================================ */
body.home .main-nav .nav-left a {
    margin-right: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ================================================================
   BOTÃO VER COLEÇÃO — cor fixa #D9FF5A (regra final, máxima prioridade)
   ================================================================ */
body.home .home-hero .cta-buttons .btn-cta {
    background: #D9FF5A !important;
    color: #0c1218 !important;
    border: 2px solid #D9FF5A !important;
    border-radius: 999px !important;
    opacity: 1 !important;
}
body.home .home-hero .cta-buttons .btn-cta:hover {
    background: transparent !important;
    color: #D9FF5A !important;
    border-color: #D9FF5A !important;
}

/* ================================================================
   DIFERENCIAIS — benefit-item centralizado com ícone
   ================================================================ */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.benefit-item > i {
    font-size: 2.2rem;
    color: #8db82e;
    margin-bottom: 12px;
    display: block;
}

/* ================================================================
   MOBILE — seções novas (carrossel, Gamer, Copa, prova social)
   ================================================================ */

/* --- Cabeçalho da seção de personalização --- */
@media (max-width: 600px) {
    .custom-order-section { padding: 36px 0 60px; }

    .custom-order-list {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .custom-order-categories-label { margin: 36px 0 20px; }

    /* Carrossel: 1 card por vez, quase full width */
    .themes-carousel .theme-card {
        flex: 0 0 88%;
        min-width: 0;
    }
    .themes-carousel-wrapper { padding: 0 16px; }
    .themes-carousel-btn { display: none; } /* swipe nativo no mobile */

    /* Banners Gamer e Copa menores no mobile */
    .theme-card-banner { height: 220px; }
    .gamer-slideshow    { height: 220px; }

    /* Padding interno do card menor */
    .theme-card { padding: 20px 16px; }
    .theme-card-banner {
        width: calc(100% + 32px);
        margin: -20px -16px 0;
    }
    .gamer-slideshow {
        width: calc(100% + 32px);
        margin: -20px -16px 0;
    }
}

/* --- Seção prova social (celular + Instagram) --- */
@media (max-width: 768px) {
    .social-proof-section { padding: 52px 0; }

    .social-proof-layout {
        flex-direction: column;
        align-items: center;
        gap: 36px;
        text-align: center;
    }
    .social-proof-text {
        max-width: 100%;
        text-align: center;
    }
    .social-proof-ig-links {
        align-items: center;
    }
    .phone-shell {
        width: 230px;
        min-height: 420px;
    }
    .phone-feed-track { min-height: 230px; }
}

@media (max-width: 400px) {
    .phone-shell { width: 200px; min-height: 370px; }
    .phone-feed-track { min-height: 195px; }
}
