@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Great+Vibes&display=swap');

:root {
    --primary-blue: #002d5a;
    --primary-light: #004d8c;
    --accent-gold: #c5a059;
    --accent-yellow: #F7B800;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
    background-color: var(--primary-blue);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-script);
    font-size: 5.5rem;
    color: var(--accent-yellow);
    line-height: 1;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(247,184,0,0.15);
    letter-spacing: 1px;
}

.logo-text:hover {
    transform: scale(1.02);
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5), 0 0 30px rgba(247,184,0,0.3);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 4px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background-color: var(--accent-yellow);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after { transform: scaleX(1); }

.nav-links a:hover { background: rgba(255,255,255,0.1); }

.nav-links a.nav-active { color: var(--accent-yellow); }

.catalog-btn {
    background: var(--accent-yellow) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border-radius: 8px;
}

.catalog-btn::after { display: none !important; }

.catalog-btn:hover {
    background: #dca300 !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
    position: relative;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, #001f40 0%, #003575 40%, #001428 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Detalhe decorativo no hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(247,184,0,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 .highlight { color: var(--accent-yellow); }

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary { background: var(--accent-yellow); color: #000; box-shadow: 0 4px 14px rgba(247,184,0,0.4); }
.btn-primary:hover { background: #dca300; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(247,184,0,0.5); }

.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ── ABOUT ───────────────────────────────────────────── */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
}

.about-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-visual {
    background: url('loja.png') center/cover;
    position: relative;
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248,250,252,0.6) 0%, transparent 45%);
}

.about-subtitle {
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text p { margin-bottom: 1.25rem; }

/* Mission / Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    border-top: 4px solid var(--accent-yellow);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.info-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-top-color: var(--primary-blue);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.info-card p { color: var(--text-muted); line-height: 1.7; }

/* ── FABRICANTES CAROUSEL ────────────────────────────── */
.partners-section {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
    display: block;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.carousel-track-container { overflow: hidden; width: 100%; }

.carousel-track {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform 0.5s ease;
    padding: 10px 20px;
}

.carousel-slide {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    transition: var(--transition);
}

.carousel-slide:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
}

.carousel-slide img {
    max-width: 130px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.carousel-slide:hover img { filter: grayscale(0%); }

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent-yellow);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(247,184,0,0.3);
}

.carousel-btn:hover { background: #dca300; transform: scale(1.1); }

/* ── LOCALIZAÇÃO ─────────────────────────────────────── */
.contact-location-section { background: var(--bg-light); }

.location-bg-wrapper {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
}

.location-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1;
}

.location-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.snell-title {
    font-family: var(--font-script);
    font-size: 5rem;
    color: white;
    font-weight: normal;
    margin-bottom: 1.5rem;
    text-align: center;
}

.address-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hours-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.map-iframe-container {
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mt-4 { margin-top: 2rem; }

/* ── FORM ────────────────────────────────────────────── */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid var(--accent-yellow);
}

.form-group { margin-bottom: 1.5rem; text-align: left; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(247,184,0,0.2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.btn-submit { width: 100%; font-size: 1.1rem; padding: 15px; margin-top: 0.5rem; }

.form-feedback { margin-top: 15px; text-align: center; font-weight: bold; font-family: var(--font-heading); }
.feedback-success { color: #16a34a; }
.feedback-error { color: #dc2626; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.footer-content p {
    color: rgba(255,255,255,0.65);
    font-family: var(--font-body);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    width: 100%;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-family: var(--font-body);
    text-align: center;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .about-section { grid-template-columns: 1fr; }
    .about-visual { height: 400px; order: -1; }
    .about-visual::after { background: linear-gradient(to bottom, transparent, var(--bg-light)); }
    .mission-vision { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile: navbar keeps horizontal brand + hamburger */
    .navbar-inner { flex-direction: row; padding: 1rem; }
    .mobile-menu-btn { display: block; }

    /* Mobile drawer */
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; max-width: 300px;
        height: 100vh;
        background: var(--primary-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.4);
        z-index: 1050;
        padding: 2rem;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; padding: 12px 20px; width: 100%; text-align: center; }

    /* Overlay behind drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
    }
    .nav-overlay.active { display: block; }

    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-content { padding: 3rem 1.5rem; }
    .about-title { font-size: 2.2rem; }
    .mission-vision { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .snell-title { font-size: 3.5rem; }
    .contact-form { padding: 2rem; }
    .logo-text { font-size: 4rem; }
}
