:root {
    /* NOVA PALETA OFICIAL JC BORGES / HUNTER */
    --primary-bg: #111111;
    /* Preto Fundo/Tech */
    --secondary-bg: #1C1C1C;
    /* Preto Secundário para Cards */
    --brand-accent: #E31837;
    /* Vermelho Automotivo (Destaque e Botões) */
    --brand-accent-hover: #BF102A;
    /* Vermelho Hover */
    --light-bg: #F8FAFC;
    /* Cinza claro para áreas claras */
    --text-dark: #333333;
    /* Texto nas áreas claras */
    --text-light: #E2E8F0;
    /* Texto nas áreas escuras */
    --white: #FFFFFF;
    --whatsapp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

html {
    background-color: var(--white);
    color: var(--text-dark);
    min-height: 100%;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    min-height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--brand-accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-accent-hover);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-bg);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.title-dark {
    color: var(--primary-bg);
}

.title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.py-100 {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.bg-dark {
    background-color: var(--primary-bg);
    color: var(--text-light);
}

.bg-dark * {
    color: inherit;
}

.title-light,
.hero-text h1 span,
.step-num,
.btn-primary,
.btn-outline:hover,
.contact-phone,
.footer-logo {
    color: inherit;
}

/* HEADER */
header {
    background: var(--primary-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--brand-accent);
}

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Logo Oficial JC Borges */

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)),
        url('assets/images/hero-bg.jfif') center/cover;
    color: var(--white);
    padding: 120px 0 100px;
    border-bottom: 5px solid var(--brand-accent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 40px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text h1 span {
    color: var(--brand-accent);
}

.hero-text p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--brand-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box h4 {
    font-size: 1.3rem;
    color: var(--primary-bg);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--brand-accent);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: #A0AEC0;
    font-size: 0.95rem;
}

/* EQUIPMENT & PARTS */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.equip-item {
    background: var(--white);
    color: var(--text-dark);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--brand-accent);
}

.equip-item h4 {
    color: var(--primary-bg);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.equip-item p {
    font-size: 0.95rem;
    color: #4A5568;
}

/* JOURNEY */
.journey {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.step {
    text-align: center;
    width: 18%;
    position: relative;
}

.step-num {
    width: 45px;
    height: 45px;
    background: var(--primary-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    border: 2px solid var(--brand-accent);
}

.step h5 {
    color: var(--primary-bg);
    margin-bottom: 8px;
    font-size: 1rem;
}

.step p {
    font-size: 0.85rem;
    color: #64748b;
}

/* CONTACT FORM */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-top: 5px solid var(--brand-accent);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-bg);
    margin-bottom: 20px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-bg);
}

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-accent);
}

select.form-control {
    appearance: auto;
}

/* FOOTER */
footer {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    font-size: 0.9rem;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer p,
footer li {
    color: #A0AEC0;
    margin-bottom: 10px;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #718096;
}

/* WPP FLOAT */
.wpp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s;
}

.wpp-float:hover {
    transform: scale(1.1);
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.about-description {
    margin-bottom: 20px;
}

.about-description--muted {
    color: #4A5568;
    margin-bottom: 20px;
}

.hero-image-mock {
    background: url('assets/images/hero-mock.jfif') center/cover;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 6px solid var(--brand-accent);
}

.section-title-center {
    text-align: center;
}

.section-subtitle-center {
    text-align: center;
    color: #A0AEC0;
}

.section-journey {
    padding-bottom: 180px;
}

.contact-section {
    padding-bottom: 80px;
}

.contact-info-text {
    margin-bottom: 20px;
    color: #4A5568;
}

.contact-info-item {
    color: var(--primary-bg);
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 1.2rem;
    color: var(--brand-accent);
    font-weight: 800;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

.footer-logo {
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    height: 50px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {

    .hero-content,
    .about-grid,
    .contact-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .journey {
        flex-direction: column;
        gap: 30px;
    }

    .step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .step-num {
        margin: 0;
    }

    .contact-wrap {
        margin-top: 0;
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
    }

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