body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}



/* HERO DESKTOP */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('/images/HomePage.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 span {
    color: #f2b705;
}

.price {
    color: #6fa92e;
    font-weight: 600;
}

.btn-custom {
    background-color: #f2b705;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
}

.btn-custom:hover {
    background-color: #d9a404;
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.9s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}



/* HERO MÓVIL */
@media (max-width: 768px) {
    .hero {
        background: url('/images/HomePageMovil.png') no-repeat center center;
        background-size: cover;
    }

    h1 {
        font-size: 2rem;
    }
}