:root {
    --brand-red: #E31D2D;
    --brand-blue: #1A308E;
    --brand-dark: #0A1445;
    --bg-light: #F1F5F9;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-light: #64748B;
    --radius: 12px;
}

/* Reset e Base Responsiva */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem;
}

/* --- HEADER --- */
header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 75px;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img { height: 80px; cursor: pointer; }

.menu-desktop { display: none; gap: 2rem; align-items: center; }
.menu-desktop a {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}
.menu-desktop a:hover { color: var(--brand-red); }

.mobile-btn {
    font-size: 1.5rem;
    color: var(--brand-blue);
    cursor: pointer;
    background: none;
    border: none;
}

/* Menu Mobile */
.nav-mobile {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1999;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- SEÇÕES SPA --- */
.page-section { display: none; animation: fadeIn 0.4s ease; }
.page-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- HERO --- */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(10, 20, 69, 0.8), rgba(10, 20, 69, 0.8)), 
                url('https://images.unsplash.com/photo-1586015555751-63bb77f4322a?q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.hero h1 { font-family: 'Montserrat'; font-size: 2.2rem; margin-bottom: 1rem; }
.hero h1 span { color: var(--brand-red); }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-inline: auto; }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* --- GRID SERVIÇOS E LOJAS --- */
.section-padding { padding: 4rem 0; }
.grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}
.card i { font-size: 2.5rem; color: var(--brand-red); margin-bottom: 1rem; }

.grid-lojas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.card-loja {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand-red);
}
.card-loja h3 { color: var(--brand-blue); font-size: 1.1rem; margin-bottom: 0.5rem; }
.card-loja p { font-size: 0.9rem; color: var(--text-light); }

/* --- QUEM SOMOS --- */
.about-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.content-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

/* --- STATS --- */
.stats { background: var(--brand-blue); color: white; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--brand-red); }

/* --- CONTATO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* --- FOOTER --- */
footer { background: var(--brand-dark); color: #cbd5e1; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-logo img { 
    height: 150px; 
    /* A linha abaixo foi removida para a logo não ficar branca */
    margin-bottom: 1rem; 
}
.footer-links h4 { color: white; margin-bottom: 1.2rem; }
.footer-links p, .footer-links a { margin-bottom: 0.6rem; cursor: pointer; transition: 0.2s; color: inherit; text-decoration: none; display: block; }
.footer-links p:hover, .footer-links a:hover { color: var(--brand-red); }

@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero { text-align: left; }
    .hero p { margin-inline: 0; }
    .mobile-btn { display: none; }
    .menu-desktop { display: flex; }
    .grid { grid-template-columns: repeat(3, 1fr); }
    .about-flex { flex-direction: row; }
    .about-text, .about-img { flex: 1; }
    .contact-grid { grid-template-columns: 1.5fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}