:root {
    --brand-pink: #FF2D95;
    --brand-purple: #7000FF;
    --dark: #050505;
    --surface: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* RESET (SEM QUEBRAR SWIPER) */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #ffffff; 
    color: var(--dark); 
    overflow-x: hidden; 
}

/* APLICA TRANSITION SÓ ONDE IMPORTA */
.btn-primary,
.btn-secondary,
img,
a,
#arsenal-grid > div {
    transition: all 0.3s ease;
}

/* GRADIENT */
.text-gradient-brand {
    background: linear-gradient(to right, var(--brand-pink), var(--brand-purple));
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}

/* GLASS */
.glass-card { 
    background: var(--glass-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid var(--glass-border); 
}

/* BOTÕES */
.btn-primary {
    background: var(--brand-pink); 
    color: white; 
    padding: 1rem 2.5rem; 
    border-radius: 9999px;
    font-weight: 900; 
    text-transform: uppercase; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(255, 45, 149, 0.3); 
    text-decoration: none;
}

.btn-primary:hover { 
    background: var(--dark); 
    transform: translateY(-3px); 
}

.btn-secondary {
    background: white; 
    color: var(--dark); 
    border: 1px solid #e2e8f0; 
    padding: 1rem 2.5rem;
    border-radius: 9999px; 
    font-weight: 900; 
    text-transform: uppercase; 
    display: inline-flex;
    align-items: center; 
    gap: 0.75rem; 
    text-decoration: none;
}

.btn-secondary:hover { 
    background: var(--brand-pink); 
    color: white; 
    border-color: var(--brand-pink); 
    transform: translateY(-3px); 
}

/* GRID */
#arsenal-grid > div:hover { 
    transform: translateY(-12px); 
    border-color: rgba(255, 45, 149, 0.2); 
}

/* ========================= */
/* SWIPER (CORREÇÃO FINAL)   */
/* ========================= */

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}
