.hero-left h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-left p {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.kpis {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.kpi {
    background: linear-gradient(145deg, #fff8f0, #fffdf6);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 180px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.kpi h3 {
    color: var(--color-primary);
}

.kpi p {
    color: var(--color-text);
}


.kpi:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.kpi-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.kpi h3 {
    font-size: 1.2rem;
    margin: 8px 0 6px;
    color: #3a2e23;
}

.kpi p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.hero-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08)
}

.hero-card h4 {
    margin: 0 0 8px
}

.order-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #inicio {
        padding-top: 150px !important;
        height: auto !important;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-left {
        width: 100%;
        text-align: center;
    }

    .hero-left h2 {
        font-size: 2rem;
        margin-top: 0;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }

    .kpis {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        gap: 15px;
    }

    .kpi {
        width: 50%;
        margin: 0;
        transform: none !important;
    }

    .kpi h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 936px) {
    .hero-left h2 {
        font-size: 2.1rem;
        margin-top: 0;
        line-height: 1.2;
    }
}