/* =========================================
   GODOY EMPILHADEIRAS - MANUTENÇÃO CSS
   Estilos específicos da LP de Manutenção
   Usa vermelho como cor primária (urgência)
   ========================================= */

/* ---- OVERRIDES PARA VERMELHO ---- */
.tag-red {
    background: rgba(204, 34, 34, 0.12) !important;
    border-color: rgba(204, 34, 34, 0.35) !important;
    color: var(--red-light) !important;
}

.dot-red {
    background: var(--red) !important;
}

.highlight-red {
    color: var(--red);
}

.span-red {
    color: var(--red);
}

/* ---- HERO OVERLAY MAIS ESCURO (imagem de mecânico) ---- */
.manut-overlay {
    background: linear-gradient(100deg,
            rgba(8, 8, 8, 0.95) 0%,
            rgba(8, 8, 8, 0.80) 55%,
            rgba(8, 8, 8, 0.5) 100%) !important;
}

/* ---- PILLS VERMELHAS ---- */
.pills-red .lp-pill,
.pill-red {
    background: rgba(204, 34, 34, 0.12) !important;
    border-color: rgba(204, 34, 34, 0.3) !important;
    color: #F08080 !important;
}

/* ---- BOTÃO VERMELHO ---- */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ---- STAT CARD VERMELHO ---- */
.stat-card-red {
    border-color: rgba(204, 34, 34, 0.25) !important;
}

.hsc-red {
    color: var(--red) !important;
}

/* ---- BARRA DE URGÊNCIA ---- */
.urgency-bar {
    background: var(--red);
    padding: 14px 0;
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.3rem;
}

.urgency-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-text strong {
    color: white;
    font-weight: 700;
}

.urgency-btn {
    background: white;
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.urgency-btn:hover {
    background: #fff5f5;
    transform: scale(1.03);
}

/* ---- BENEFIT CARDS VERMELHO ---- */
.benefit-card-red::before {
    background: linear-gradient(135deg, rgba(204, 34, 34, 0.06), transparent) !important;
}

.benefit-card-red:hover {
    border-color: rgba(204, 34, 34, 0.25) !important;
}

/* ---- SEÇÃO DE DIFERENCIAIS ---- */
.manut-diff-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--dark), var(--black));
}

.manut-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.manut-diff-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.manut-diff-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.manut-diff-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(204, 34, 34, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.mdb-icon {
    font-size: 1.8rem;
}

.mdb-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.mdb-text {
    font-size: 0.78rem;
    color: var(--gray);
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.diff-item {
    display: flex;
    gap: 16px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition);
}

.diff-item:hover {
    border-color: rgba(204, 34, 34, 0.2);
}

.diff-icon-red {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(204, 34, 34, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.diff-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.diff-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---- BRANDS OBs ---- */
.brands-obs {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ---- STEP CARDS VERMELHO ---- */
.step-card-red:hover {
    border-color: rgba(204, 34, 34, 0.25) !important;
}

/* ---- TESTIMONIALS VERMELHO ---- */
.testimonial-card-red:hover {
    border-color: rgba(204, 34, 34, 0.25) !important;
}

/* ---- CTA FINAL VERMELHO ---- */
.final-cta-red {
    border-color: rgba(204, 34, 34, 0.3) !important;
}

.final-cta-glow-red {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 34, 34, 0.15), transparent 70%);
    pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .manut-diff-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .manut-diff-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .urgency-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}