/* =========================================
   GODOY EMPILHADEIRAS - LANDING PAGE CSS
   Estilos complementares ao style.css
   ========================================= */

/* ---- STICKY BAR ---- */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 168, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.sticky-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.sticky-phone:hover {
    color: var(--gold);
}

.btn-sm {
    padding: 10px 18px !important;
    font-size: 0.83rem !important;
}

.btn-lg {
    padding: 17px 32px !important;
    font-size: 1rem !important;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* ---- LP HERO ---- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 0;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg,
            rgba(8, 8, 8, 0.95) 0%,
            rgba(8, 8, 8, 0.75) 55%,
            rgba(8, 8, 8, 0.4) 100%);
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.lp-hero-left {
    max-width: 640px;
}

.lp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 16px;
}

.lp-hero-title .highlight {
    color: var(--gold);
}

.lp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.lp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.lp-pill {
    background: rgba(41, 171, 226, 0.1);
    border: 1px solid rgba(41, 171, 226, 0.25);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* HERO STAT CARD */
.hero-stat-card {
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(41, 171, 226, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 180px;
}

.hsc-item {
    text-align: center;
}

.hsc-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.hsc-label {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hsc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0 -4px;
}

/* ---- LP BENEFITS ---- */
.lp-benefits {
    padding: 100px 0;
    background: var(--dark);
}

.lp-section-header {
    margin-bottom: 56px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(245, 168, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ---- LP MODELS ---- */
.lp-models {
    padding: 100px 0;
    background: var(--black);
}

.models-lp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.model-lp-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.model-lp-card:hover {
    border-color: rgba(245, 168, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.model-lp-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.model-lp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-lp-card:hover .model-lp-image img {
    transform: scale(1.05);
}

.model-lp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.badge-glp {
    background: rgba(204, 34, 34, 0.8);
    color: #fff;
}

.badge-eletrica {
    background: rgba(20, 100, 180, 0.85);
    color: #fff;
}

.badge-diesel {
    background: rgba(50, 50, 50, 0.9);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-manual {
    background: rgba(60, 120, 60, 0.85);
    color: #fff;
}

.model-lp-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-lp-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.model-lp-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.model-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.spec-box {
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    letter-spacing: 0.5px;
}

.spec-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

/* ---- LP BRANDS ---- */
.lp-brands {
    padding: 60px 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
}

.brand-chip {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.brand-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- LP STEPS ---- */
.lp-steps {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--black), var(--dark));
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.step-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(245, 168, 0, 0.2);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 168, 0, 0.15);
    line-height: 1;
    margin-bottom: 4px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    text-align: center;
}

/* ---- LP TESTIMONIALS ---- */
.lp-testimonials {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-lp-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-lp-card:hover {
    border-color: rgba(245, 168, 0, 0.2);
    transform: translateY(-4px);
}

.stars-row {
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-lp-text {
    font-size: 0.93rem;
    color: var(--gray-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-lp-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.t-source {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.google-g {
    font-weight: 700;
    color: #4285F4;
}

/* ---- LP FINAL CTA ---- */
.lp-final-cta {
    padding: 80px 0;
    background: var(--black);
}

.final-cta-box {
    background: var(--dark-2);
    border: 1px solid rgba(245, 168, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 168, 0, 0.12), transparent 70%);
    pointer-events: none;
}

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta-address {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--gray);
}

/* ---- LP FOOTER ---- */
.lp-footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 0;
}

.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
}

.lp-footer-copy {
    font-size: 0.82rem;
    color: var(--gray);
}

.lp-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
}

.lp-footer-contact a {
    color: var(--gray);
    transition: var(--transition);
}

.lp-footer-contact a:hover {
    color: var(--gold);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
    }

    .lp-hero-card {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .models-lp-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-lp-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .sticky-phone {
        display: none;
    }

    .lp-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .lp-footer-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-box {
        padding: 40px 24px;
    }
}