/* ==========================================================================
   THE BEST FINDS - GLOBAL STYLES (MVC CONFIGURATION)
   ========================================================================== */

@import url('https://googleapis.com');

:root {
    --primary: #0B1E36;       
    --accent: #FF6B00;        
    --accent-hover: #e56000;  
    --bg-main: #FFFFFF;       
    --bg-muted: #F8FAFC;      
    --text-main: #0F172A;     
    --text-muted: #64748B;    
    --border: #E2E8F0;        
    --font-stack: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-stack); background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Navegação Global (Header) */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Modificado para distribuir o logo na esquerda e o menu TOTALMENTE centralizado no espaço restante */
.header-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    height: 80px;
}

.brand-logo img { height: 45px; width: auto; display: block; }

/* Menu Centralizado e com Mais Vida */
.nav-links {
    display: flex;
    justify-content: center; /* Centraliza os links perfeitamente */
    gap: 35px;
    padding-right: 120px; /* Compensa a largura do logo para centralização real */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600; /* Texto ligeiramente mais encorpado */
    font-size: 0.98rem;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

/* Efeito Moderno de Linha Deslizante sob o Link */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

/* BOTÕES DE AÇÃO (CTAs) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25);
}
.btn-cta:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35); }

.section-title { font-size: 2.25rem; font-weight: 700; color: var(--primary); letter-spacing: -1px; margin-bottom: 12px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; }
.site-footer { background-color: var(--primary); color: #FFFFFF; padding: 40px 0; text-align: center; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer p { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 900px) {
    .header-wrap { display: flex; justify-content: space-between; height: 70px; }
    .nav-links { gap: 15px; padding-right: 0; }
    .brand-logo img { height: 35px; }
}
/* --- AJUSTE CIRÚRGICO DE ESPAÇOS (ABOVE THE FOLD) --- */

/* Reduz o espaço interno da caixa azul do Hero */
.hero-section {
    padding: 20px 0 25px 0 !important; 
}

/* Reduz o tamanho do título principal para economizar altura */
.hero-title {
    font-size: 2.3rem !important;
    margin-bottom: 8px !important;
}

/* Reduz o espaço entre o subtítulo e o botão laranja */
.hero-subtitle {
    margin-bottom: 15px !important;
}

/* REMOVE O ABUSO DE ESPAÇO ENTRE A FAIXA AZUL E O "TRENDING COLLECTIONS" */
.showcase-section {
    padding: 25px 0 60px 0 !important; /* Espaçamento do topo caiu de 80px para apenas 25px! */
}

/* Espaço entre o título da seção e a grade de cards */
.section-subtitle {
    margin-bottom: 20px !important;
}
