:root {
    --gp-black: #070707;
    --gp-dark: #111111;
    --gp-card: #161616;
    --gp-red: #e10613;
    --gp-yellow: #ffc400;
    --gp-white: #ffffff;
    --gp-muted: #c7c7c7;
}

.o_gparts_site {
    background: var(--gp-black);
    color: var(--gp-white);
    font-family: 'Inter', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
}
.o_gparts_site a { text-decoration: none; }

.gp-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.gp-topbar {
    background: #050505;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: sticky;
    top: 0;
    z-index: 30;
}
.gp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}
.gp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gp-white);
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.gp-brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gp-red);
}
.gp-brand span strong { color: var(--gp-red); }
.gp-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.gp-nav a {
    color: var(--gp-muted);
    font-weight: 700;
    font-size: 14px;
}
.gp-nav a:hover { color: var(--gp-yellow); }
.gp-wa-button {
    color: #fff !important;
    background: linear-gradient(135deg, #20b65a, #139e46);
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(32, 182, 90, .28);
}

.gp-hero {
    min-height: 720px;
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.58), rgba(0,0,0,.35)),
        url('/gpartsnosara_website/static/src/img/workshop.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.gp-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--gp-red), var(--gp-yellow), var(--gp-red));
}
.gp-hero-content { position: relative; z-index: 2; max-width: 760px; padding: 90px 0; }
.gp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gp-yellow);
    border: 1px solid rgba(255,196,0,.45);
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
}
.gp-hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: .95;
    text-transform: uppercase;
    font-weight: 1000;
    letter-spacing: -2px;
}
.gp-hero h1 span { color: var(--gp-red); display: block; }
.gp-hero p {
    color: #efefef;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.45;
    max-width: 680px;
}
.gp-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.gp-btn-primary { background: var(--gp-red); color: #fff; box-shadow: 0 12px 32px rgba(225,6,19,.28); }
.gp-btn-secondary { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); }

.gp-section { padding: 86px 0; position: relative; }
.gp-section-title { text-align: center; margin-bottom: 42px; }
.gp-kicker { color: var(--gp-yellow); font-weight: 1000; letter-spacing: .15em; text-transform: uppercase; font-size: 13px; }
.gp-section-title h2 { font-size: clamp(32px, 5vw, 58px); text-transform: uppercase; font-weight: 1000; margin: 8px 0; }
.gp-section-title p { color: var(--gp-muted); max-width: 760px; margin: 0 auto; font-size: 18px; }

.gp-grid { display: grid; gap: 22px; }
.gp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gp-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gp-card {
    background: linear-gradient(180deg, #1d1d1d, #101010);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    position: relative;
    overflow: hidden;
}
.gp-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gp-red), var(--gp-yellow));
}
.gp-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(225,6,19,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gp-yellow);
    font-size: 28px;
    margin-bottom: 18px;
}
.gp-card h3 { font-size: 22px; text-transform: uppercase; font-weight: 1000; margin: 0 0 10px; }
.gp-card p, .gp-card li { color: var(--gp-muted); }
.gp-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.gp-card li { margin: 8px 0; }
.gp-card li::before { content: '✓'; color: var(--gp-red); font-weight: 1000; margin-right: 8px; }

.gp-showcase {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
}
.gp-showcase img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
.gp-marcas {
    background-image: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.88)), url('/gpartsnosara_website/static/src/img/brands.jpeg');
    background-size: cover;
    background-position: center;
}
.gp-brand-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 940px;
    margin: 0 auto;
}
.gp-brand-chip {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.gp-products { background: #0b0b0b; }
.gp-product-card {
    padding: 0;
    min-height: 260px;
}
.gp-product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.gp-product-card .gp-product-body { padding: 22px; }

.gp-contact {
    background: radial-gradient(circle at top, rgba(225,6,19,.22), transparent 36%), #070707;
}
.gp-contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: stretch;
}
.gp-contact-box {
    background: linear-gradient(180deg, #1b1b1b, #101010);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 34px;
}
.gp-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    margin: 18px 0;
    color: #fff;
}
.gp-contact-line strong { color: var(--gp-yellow); }
.gp-qr-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #fff;
    color: #111;
    padding: 18px;
    border-radius: 18px;
    margin-top: 18px;
}
.gp-qr-card img { width: 120px; height: 120px; }
.gp-floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 12px 30px rgba(37,211,102,.35);
}
.gp-footer { background: #020202; border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; color: var(--gp-muted); text-align: center; }

@media (max-width: 900px) {
    .gp-topbar-inner { align-items: flex-start; flex-direction: column; }
    .gp-grid-3, .gp-grid-4, .gp-showcase, .gp-contact-wrap { grid-template-columns: 1fr; }
    .gp-hero { min-height: auto; }
    .gp-hero-content { padding: 70px 0; }
}


.gp-importacion {
    background:
        linear-gradient(135deg, rgba(0,0,0,.92), rgba(0,0,0,.78)),
        radial-gradient(circle at right, rgba(255,196,0,.16), transparent 36%),
        linear-gradient(90deg, #080808, #121212);
    overflow: hidden;
}
.gp-importacion::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, transparent 0 58%, rgba(225,6,19,.18) 58% 60%, transparent 60%),
        linear-gradient(60deg, transparent 0 72%, rgba(255,196,0,.12) 72% 73%, transparent 73%);
    pointer-events: none;
}
.gp-import-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
}
.gp-import-content {
    background: rgba(10,10,10,.72);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 22px 70px rgba(0,0,0,.42);
}
.gp-import-content h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
    margin: 10px 0 18px;
    text-transform: uppercase;
    font-weight: 1000;
}
.gp-import-content h2::first-line { color: #fff; }
.gp-lead {
    color: #f0f0f0;
    font-size: 19px;
    line-height: 1.55;
    max-width: 780px;
}
.gp-import-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.gp-import-points div {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
}
.gp-import-points span {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gp-red), #8d0008);
    color: #fff;
    font-weight: 1000;
}
.gp-import-points strong {
    color: var(--gp-yellow);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.gp-import-points small { color: var(--gp-muted); font-size: 15px; }
.gp-note {
    color: #d6d6d6;
    font-size: 14px;
    margin-top: 18px;
    border-left: 4px solid var(--gp-yellow);
    padding-left: 12px;
}
.gp-import-card {
    min-height: 520px;
    border-radius: 28px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.88)),
        url('/gpartsnosara_website/static/src/img/workshop.jpeg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 80px rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.gp-import-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--gp-red), var(--gp-yellow), var(--gp-red));
}
.gp-import-badge {
    align-self: flex-start;
    background: rgba(225,6,19,.92);
    color: #fff;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 10px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.gp-import-card h3 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 1000;
    margin: 0 0 18px;
    text-shadow: 0 4px 18px rgba(0,0,0,.8);
}
.gp-import-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}
.gp-import-card li {
    color: #fff;
    font-weight: 800;
    background: rgba(0,0,0,.52);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 10px 14px;
}
.gp-import-card li::before {
    content: '✓';
    color: var(--gp-yellow);
    margin-right: 9px;
    font-weight: 1000;
}

@media (max-width: 900px) {
    .gp-import-wrap { grid-template-columns: 1fr; }
    .gp-import-content { padding: 26px; }
    .gp-import-card { min-height: 440px; }
}
