/*=====================================
=            HERO HOME
======================================*/

.hero-home {
    padding: 180px 0 90px;
    background: linear-gradient(180deg,
            var(--beige-lightest),
            white);

}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--rosa-light);
    color: var(--taupe-dark);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--rosa-darkest);
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 25px;

}

.hero-title span {
    color: var(--taupe);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-primary-home {
    background: var(--taupe);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-home:hover {
    background: var(--taupe-darkest);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-home {
    border: 2px solid var(--taupe);
    color: var(--taupe);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.btn-outline-home:hover {
    background: var(--taupe);
    color: white;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-features i {
    color: var(--salvia-dark);
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {

    max-width: 80%;
    border-radius: 30px;
    border: 1px solid var(--beige);
    box-shadow: var(--shadow-lg);
    transition: .5s;

}

.hero-image img:hover {
    transform: scale(1.02);
}

@media(max-width:991px) {

    .hero-home {
        padding: 50px 0 70px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

}