/* ==========================================================================
   SISTEMA DE DESIGN E ESTILOS - REMOLDA 3D (DARK MODE PREMIUM)
   ========================================================================== */

/* VARIÁVEIS DO SISTEMA */
:root {
    --bg-main: #06070a;
    --bg-card: #0f111a;
    --bg-header: rgba(6, 7, 10, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(6, 182, 212, 0.4);

    /* Cores de Marca (Neon Gradients) */
    --primary: #06b6d4;
    /* Ciano */
    --primary-hover: #0891b2;
    --secondary: #00f2fe;
    /* Ciano Neon */
    --secondary-hover: #00e0eb;
    --accent: #e2e8f0;
    /* Prata/Branco */

    /* Cores de Feedback */
    --success: #10b981;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;

    /* Cores de Texto */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Sombras e Brilhos (Glow Effects) */
    --glow-purple: rgba(6, 182, 212, 0.15);
    --glow-cyan: rgba(0, 242, 254, 0.2);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

/* LINHA DE BRILHO SUPERIOR */
.top-glow-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ELEMENTOS DE TEXTO COM GRADIENTE */
.logo-accent,
.hero-title span,
.section-title span {
    background: linear-gradient(135deg, #00f2fe 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* BOTÕES (BUTTONS) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: 0 10px 20px -10px var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-2px);
}

.btn-cyan {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--bg-main);
    box-shadow: 0 10px 20px -10px var(--glow-cyan);
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(6, 182, 212, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 100%);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(37, 211, 102, 0.5);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-clube-header {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
    padding: 0.5rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.btn-clube-header:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transform: translateY(-1px);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* ÍCONES SVGS GERAIS */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2px;
}

/* CABEÇALHO (HEADER) */
.header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0px;
    z-index: 100;
    transition: var(--transition);
}

.header-container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: translateY(5px);
    transition: var(--transition);
}

.logo-img:hover {
    transform: translateY(5px) scale(1.03);
}


.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
}

.cart-toggle-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.cart-toggle-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* SEÇÃO HERO */
.hero {
    position: relative;
    padding: 5rem 0 6rem 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #22d3ee;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-tag.tag-cyan {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Visual (Direita) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.hero-floating-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 11, 15, 0.85);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

/* SEÇÃO DIFERENCIAIS */
.beneficios {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(18, 18, 24, 0.4) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px -10px rgba(6, 182, 212, 0.1);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.purple-glow {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    box-shadow: 0 8px 20px -8px var(--glow-purple);
}

.cyan-glow {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    box-shadow: 0 8px 20px -8px var(--glow-cyan);
}

.card-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

/* SEÇÃO CATÁLOGO DE PRODUTOS */
.catalogo {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px -10px var(--glow-purple);
}

/* Card do Produto */
.product-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.product-image-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag-float {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 11, 15, 0.75);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.tag-gradient {
    border-color: var(--primary);
    color: #22d3ee;
}

.product-info {
    padding: 1.5rem 1.8rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.product-category {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.icon-star {
    width: 0.95rem;
    height: 0.95rem;
    color: #eab308;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Configuração das Variantes do Produto */
.product-variants {
    margin-bottom: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.variant-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-variant-text {
    color: var(--text-primary);
    text-transform: none;
    font-weight: 500;
}

/* ?""""""""""""""""""""""""""""""""""""""""""""""?
   TABELA DE CORES PREMIUM
?""""""""""""""""""""""""""""""""""""""""""""""? */
.color-swatches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.color-swatch-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.color-swatch-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.color-swatch-btn.active {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.3), 0 4px 12px rgba(6, 182, 212, 0.15);
}

.swatch-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.color-swatch-btn.active .swatch-circle {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), inset 0 1px 3px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.swatch-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.color-swatch-btn.active .swatch-name {
    color: var(--text-primary);
}

/* ?""""""""""""""""""""""""""""""""""""""""""""""?
   BOTÕES DE TAMANHO PREMIUM
?""""""""""""""""""""""""""""""""""""""""""""""? */
/* Botões de tamanhos */
.size-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.size-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.size-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.size-btn.active {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.3), 0 4px 12px rgba(6, 182, 212, 0.15);
}

.size-sigla {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: var(--transition);
}

.size-btn.active .size-sigla {
    background: var(--primary);
    color: #fff;
}

.size-desc {
    flex: 1;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.size-btn.active .size-desc {
    color: var(--text-primary);
}

.size-price-add {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(6, 182, 212, 0.12);
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.size-price-add.free {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.size-btn.active .size-price-add {
    background: rgba(6, 182, 212, 0.25);
}

/* Preço + rótulo no rodapé do card */
.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}


.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.2rem;
    gap: 0.75rem;
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

/* Botão de adicionar ao carrinho dentro do card */
.add-to-cart-btn {
    flex-shrink: 0;
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    border-radius: 12px;
    white-space: nowrap;
}

/* SEÇÃO PERSONALIZADOS STL */
.customizado {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.customizado-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.custom-cta-card {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.8) 0%, rgba(13, 13, 19, 0.9) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    padding: 4rem;
    text-align: center;
    position: relative;
}

.custom-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.custom-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.custom-cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* SEÇÃO FAQ */
.faq {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.05);
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-secondary);
    transition: transform 0.3s ease;
}

/* Linha horizontal */
.faq-icon::before {
    width: 12px;
    height: 2px;
}

/* Linha vertical */
.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-icon::before {
    transform: rotate(90deg);
    background-color: var(--primary);
}

.faq-item[open] .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.6;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* FOOTER (RODAP) */
.footer {
    background-color: #050508;
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    padding: 6rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), var(--secondary), rgba(6, 182, 212, 0.4), transparent);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    background: radial-gradient(circle at top, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1.2rem;
}
.footer-brand .logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}
.footer-brand .logo-img:hover {
    transform: scale(1.02);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

/* Indicador de Status de Produção */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--success);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.6rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

/* Coluna de Valores & Sustentabilidade */
.footer-value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-value-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.footer-value-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item.whatsapp-link {
    color: var(--whatsapp-green) !important;
    font-weight: 600;
}

.footer-contact-item:not(.whatsapp-link):hover {
    color: var(--text-primary);
}

.footer-contact-item.whatsapp-link:hover {
    color: var(--whatsapp-hover) !important;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.2);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact-item.whatsapp-link svg {
    color: var(--whatsapp-green);
}

/* Redes Sociais com Glow */
.footer-social-circles {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-circle-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.social-circle-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Selos e Pagamentos no Rodapé */
.footer-badges {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    gap: 0.35rem;
}

.payment-badge svg {
    width: 12px;
    height: 12px;
}

.security-seal {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
}

.security-seal svg {
    width: 12px;
    height: 12px;
}

/* ==========================================================================
   INTERAÇÃO DO CARRINHO DE COMPRAS (SIDEBAR E OVERLAY)
   ========================================================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: #0f0f15;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 951;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Espaço Scrollable dos Itens */
.cart-items-container {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Mensagem de Carrinho Vazio */
.cart-empty-message {
    text-align: center;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-empty {
    width: 60px;
    height: 60px;
    color: var(--text-muted);
}

.cart-empty-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Estilização dos itens injetados */
.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.2rem;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cart-item-variants {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Controles de Quantidade */
.qty-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 700;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.remove-item-btn:hover {
    color: var(--accent);
    background: rgba(236, 72, 153, 0.05);
}

/* Rodapé do Carrinho com Checkout */
.cart-checkout-footer {
    padding: 2rem;
    background-color: #0b0b0f;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cart-total-value {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Formulário Interno do Carrinho */
.cart-checkout-form {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    color: white;
    font-family: inherit;
    font-size: 0.85rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.15);
}

.form-group select option {
    background-color: #0f0f15;
    color: white;
}

.btn-checkout {
    font-size: 1rem;
    padding: 0.9rem;
    margin-top: 0.5rem;
}

.cart-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* ==========================================================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================================================== */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
        transform: scale(0.95);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(0.95);
    }
}

/* ============================================================
   MENU HAMBÚRGUER
   ============================================================ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.05);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0a0a0f;
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px 8px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
}

.mobile-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(6, 182, 212, 0.08);
    color: var(--primary);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* MEDIA QUERIES (RESPONSIVIDADE) */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Clube (style.css sections) */
    .clube-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .clube-box-contents {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .pedagogico-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
        padding: 2.5rem;
    }

    .colecao-banner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        margin-bottom: 4rem;
    }

    .processo-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* --- HEADER MOBILE --- */
    .header-container {
        height: 64px;
        position: relative;
    }

    .logo-img {
        height: 70px;
        transform: translateY(6px);
    }

    .logo-img:hover {
        transform: translateY(6px) scale(1.03);
    }

    /* Esconder nav desktop */
    .nav-menu {
        display: none;
    }

    /* Mostrar hambúrguer */
    .hamburger-btn {
        display: flex;
    }

    /* Mostrar overlay mobile quando ativo */
    .mobile-nav-overlay {
        display: block;
    }

    /* Esconder btn clube no header para não aglomerar */
    .btn-clube-header {
        display: none;
    }

    /* --- HERO --- */
    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        padding: 1.5rem;
    }

    .hero-img {
        max-height: 260px;
    }

    /* --- SEÇÕES --- */
    .beneficios {
        padding: 4rem 0;
    }

    .catalogo {
        padding: 4rem 0;
    }

    .faq {
        padding: 4rem 0;
    }

    .customizado {
        padding: 3rem 0;
    }

    /* --- GRIDS --- */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* --- CTA CARD --- */
    .custom-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .custom-cta-content h2 {
        font-size: 1.7rem;
    }

    .custom-cta-content p {
        font-size: 0.95rem;
    }

    /* --- SECTION TITLES --- */
    .section-title {
        font-size: 1.85rem;
    }

    /* --- FILTER BUTTONS --- */
    .catalog-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }

    /* --- PRODUCT CARDS --- */
    .color-swatches-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* --- FOOTER --- */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* --- CARRINHO --- */
    .cart-sidebar {
        max-width: 100%;
        width: 100%;
    }

    /* --- CLUBE (style.css sections) --- */
    .clube {
        padding: 5rem 0;
    }

    .clube-title {
        font-size: 2.2rem;
    }

    .clube-subtitle {
        font-size: 1.1rem;
    }

    .clube-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .clube-badges {
        justify-content: center;
    }

    .clube-box-contents {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .pedagogico-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.75rem;
        margin-bottom: 3rem;
    }

    .pedagogico-grid {
        grid-template-columns: 1fr;
    }

    .pedagogico-highlight {
        border-left: none;
        border-top: 2px solid var(--primary);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .colecao-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.75rem;
        margin-bottom: 3rem;
    }

    .processo-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .custom-cta-card {
        padding: 1.75rem 1.25rem;
    }

    .custom-cta-content h2 {
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .color-swatches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions .btn {
        font-size: 0.88rem;
        padding: 0.75rem 1.2rem;
    }
}

/* ==========================================================================
   CARDS DE PRODUTO DINÂMICOS " Estilos base (sem conflito)
   ========================================================================== */

/* Garante que cards gerados dinamicamente usem o mesmo estilo base */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium), 0 0 30px var(--glow-purple);
}

/* Tag de destaque (flutuante sobre a imagem) */
.product-tag-float {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.tag-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #fff;
}

/* Wrapper da imagem do produto */
.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a26, #12121a);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

/* Área de informações do produto */
.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-description {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Seção de variantes (cores + tamanhos) */
.product-variants {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.variant-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-variant-text {
    color: var(--text-primary);
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
}

/* ícone do botão de adicionar ao carrinho */
.add-to-cart-btn .icon {
    width: 16px;
    height: 16px;
}

/* Catálogo vazio */
.empty-catalog {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    line-height: 2;
}

/* ==========================================================================
   NOVA SEÇÃO - REMOLDA CLUBE (Futuristic Premium Styling)
   ========================================================================== */
.clube {
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.4) 0%, rgba(15, 17, 26, 0.6) 50%, rgba(6, 7, 10, 0.4) 100%);
    overflow: hidden;
}

.clube-bg-glow {
    position: absolute;
    top: 30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.clube-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.clube-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 0.8rem;
    line-height: 1.15;
}

.clube-title span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clube-subtitle {
    font-size: 1.4rem;
    color: #22d3ee;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.clube-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.clube-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.clube-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.clube-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clube-visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 75%);
    filter: blur(35px);
    z-index: -1;
}

.clube-box-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 242, 254, 0.25));
    animation: float 6s ease-in-out infinite;
}

/* O que é o clube */
.clube-features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.clube-feature-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.clube-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px -10px rgba(6, 182, 212, 0.15);
}

.clube-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.clube-feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Abre a Caixa e Começa a Aventura */
.clube-box-contents {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.contents-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.contents-img {
    max-width: 95%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    border-radius: 20px;
}

.contents-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contents-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.content-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.content-item:last-child {
    margin-bottom: 0;
}

.content-item-icon {
    font-size: 1.6rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-item-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.content-item-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Benefícios Pedagógicos */
.pedagogico-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.4) 0%, rgba(6, 7, 10, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
}

.pedagogico-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
}

.pedago-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pedagogico-highlight {
    border-left: 2px solid var(--primary);
    padding-left: 2rem;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 0.8rem;
}

.highlight-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.steam-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.steam-badges span {
    font-size: 0.72rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(0, 242, 254, 0.05) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Galeria Coleção */
.colecao-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(90deg, rgba(15, 17, 26, 0.8) 0%, rgba(6, 7, 10, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.colecao-banner::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
}

.colecao-list {
    list-style: none;
    margin-top: 1.5rem;
}

.colecao-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.colecao-list li span {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.colecao-visual {
    display: flex;
    justify-content: center;
    z-index: 2;
}

.prateleira {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 380px;
}

.prateleira-linha {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #8b5a2b; /* Prateleira de madeira */
    position: relative;
}

.prateleira-linha::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    filter: blur(2px);
}

.boneco {
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: var(--transition);
    cursor: pointer;
}

.boneco:hover {
    transform: translateY(-8px) scale(1.15);
}

/* Processo de Produção */
.processo-section {
    margin-bottom: 6rem;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    position: relative;
    height: 100%;
}

.step-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 25px -10px rgba(6, 182, 212, 0.1);
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--bg-main);
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.step-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Planos */
.planos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus-banner {
    display: inline-block;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    animation: pulseGlowGreen 2.5s infinite;
}

@keyframes pulseGlowGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.1); }
    50% { box-shadow: 0 0 12px 2px rgba(16, 185, 129, 0.25); }
}

.planos-grid {
    margin-bottom: 6rem;
    align-items: stretch;
}

.plano-card {
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
    height: 100%;
}

.plano-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.plano-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(15, 17, 26, 0.6) 0%, rgba(6, 182, 212, 0.04) 100%);
    box-shadow: 0 15px 40px -10px rgba(6, 182, 212, 0.12);
    position: relative;
}

.plano-card.popular:hover {
    box-shadow: var(--shadow-premium), 0 0 25px rgba(6, 182, 212, 0.15);
}

.plano-card.scientists {
    border-color: rgba(255, 255, 255, 0.15);
}

.plano-card.scientists:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-premium), 0 0 25px rgba(0, 242, 254, 0.1);
}

.plano-badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 242, 254, 0.3);
}

.plano-badge-best-value {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #b87333, #eab308);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
}

.plano-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plano-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.plano-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plano-desc-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.4;
    min-height: 40px;
}

.plano-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.plano-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plano-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plano-features li span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.plano-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plano-features li.disabled span {
    color: var(--text-muted);
}

/* Depoimentos */
.depoimentos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.depoimento-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.depoimento-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.depoimento-avatar {
    font-size: 1.75rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.depoimento-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.depoimento-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.depoimento-stars {
    color: #eab308;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* CTA Final */
.clube-final-cta {
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.7) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 4.5rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 6rem auto 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 0 40px rgba(6, 182, 212, 0.1);
}

.clube-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
    filter: blur(35px);
    z-index: -1;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.cta-perks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-perks span {
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    color: var(--text-primary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .clube-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .clube-title {
        font-size: 2.8rem;
    }
    
    .clube-badges {
        justify-content: center;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clube-box-contents {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pedagogico-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .pedagogico-highlight {
        border-left: none;
        border-top: 2px solid var(--primary);
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .colecao-banner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .processo-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .clube-title {
        font-size: 2.2rem;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .processo-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-perks {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .clube-final-cta {
        padding: 3rem 1.5rem;
    }
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.85; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* ==========================================================================
   CORREÇÕES CRÍTICAS MOBILE - PREVENT OVERFLOW & LAYOUT FIXES
   ========================================================================== */

/* Previne overflow horizontal em toda a página */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Garante que nenhum elemento quebre o layout horizontalmente */
* {
    min-width: 0;
}

/* Fix para botões de ação no header não transbordarem */
.header-actions {
    flex-shrink: 0;
    gap: 0.5rem;
}

/* Fix carrinho badge para não sair do botão */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    pointer-events: none;
}

/* Garante que imagens não ultrapassem o container */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    /* ---- HEADER CRÍTICO ---- */
    .header-container {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    /* Logo menor no mobile para não empurrar conteúdo */
    .logo-img {
        height: 55px !important;
        transform: none !important;
    }

    .logo-img:hover {
        transform: none !important;
    }

    /* Header actions bem compacto */
    .header-actions {
        gap: 0.4rem;
    }

    /* Botão carrinho compacto */
    .cart-toggle-btn {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    /* ---- HERO INDEX ---- */
    .hero-container {
        padding: 0;
    }

    .hero-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    /* ---- CARDS PRODUTO ---- */
    .product-card {
        width: 100%;
    }

    .product-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .size-options {
        gap: 0.3rem;
    }

    /* ---- FAQ ---- */
    .faq-question {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    /* ---- BTN WHATSAPP STL ---- */
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* ---- FOOTER ---- */
    .footer-col h4 {
        font-size: 0.85rem;
    }

    .footer-links a,
    .footer-contact-item,
    .footer-value-item {
        font-size: 0.85rem;
    }

    .footer-social-circles {
        justify-content: flex-start;
    }

    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand .status-indicator {
        align-self: flex-start;
    }

    /* ---- CART SIDEBAR MOBILE ---- */
    .cart-items-container {
        padding: 1rem;
    }

    .cart-checkout-footer {
        padding: 1rem;
    }

    .cart-header {
        padding: 1rem;
    }

    /* ---- SECTION HEADERS ---- */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* ---- BENEFICIOS CARDS ---- */
    .card {
        padding: 1.75rem;
    }

    /* ---- BOTÕES GERAIS ---- */
    .btn {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    /* Header ainda mais compacto */
    .header-container {
        height: 58px;
        padding: 0 0.75rem;
    }

    .logo-img {
        height: 48px !important;
    }

    /* Hero */
    .hero {
        padding: 3.5rem 0 3rem;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    .card-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    /* Filtros */
    .catalog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Product info */
    .product-info {
        padding: 1rem;
    }

    /* Color swatches - apenas 2 colunas */
    .color-swatches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ mais compacto */
    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    /* Footer mais apertado */
    .footer-contact-item {
        font-size: 0.8rem;
    }

    /* Hero visual escondida em telas muito pequenas para economizar espaço */
    .hero-visual {
        max-width: 260px;
    }
}
