.hf-hero-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    font-family: 'Rubik', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F6F6F6;
    gap: 80px;
}

/* --- IMAGEN MANO --- */
.hf-hand-wrapper {
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}

.hf-hand-img {
    width: 60%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}

/* --- TÍTULO GIGANTE --- */

.hf-logo {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.hf-content-wrapper {
    position: relative;
    width: 100%;
    z-index: 5;
    text-align: center;
    padding-inline: 8%;
}

.hf-big-title {
    font-size: 14vw;
    line-height: 0.8;
    font-weight: 900;
    color: #000;
    margin: 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

@media (min-width: 1400px) {
    .hf-big-title {
        font-size: 180px;
    }
}

/* --- IMAGEN COMIDA CAYENDO --- */
.hf-falling-food-wrapper {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    height: 115%;
    pointer-events: none;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hf-falling-img {
    width: 100%;
}

/* --- GRID TEXTOS Y BADGES --- */
.hf-main-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 20;
}

.hf-text-col {
    text-align: left;
    width: 45%;
}

.hf-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.hf-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "IBM Plex Mono", monospace;
    color: rgba(0, 0, 0, 0.6);
}

.hf-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hf-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    font-family: "IBM Plex Mono", monospace;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}


.hf-btn-primary {
    background-color: #000;
    color: #fff !important;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.hf-btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    transition: all 0.3s ease;
}
.hf-btn-primary:hover {
    background-color: #ffffff00;
    color: #000 !important;
    border: 1px solid #000;
}
.hf-btn-secondary:hover {
    background-color: #000;
    color: #fff !important;
    border: 1px solid #000;
}
/* BADGES */
.hf-badges-col {
    width: 40%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hf-badge {
    /* background: url("https://img-va.myshopline.com/image/store/1765920143747/HF-Circle-1.png?w=219&h=220");
    background-repeat: no-repeat;
    background-size: contain; */
    color: #fff;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(0.5rem, 1vw, 1rem);
    font-weight: 600;
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    padding: 10px;
    position: relative;
}

.hf-badge::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img-va.myshopline.com/image/store/1765920143747/HF-Circle-1.png?w=219&h=220');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.hf-badge:nth-child(2)::before {
    transform: rotate(154deg);
}

.hf-badge:nth-child(3)::before {
    transform: rotate(262deg);
}

/* --- IMAGEN PLATO --- */
.hf-bowl-wrapper {
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hf-bowl-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .hf-hero-container {
        min-height: auto;
        gap: 65px;
        padding-top: 40px;
    }

    .hf-hand-wrapper {
        width: 100%;
    }

    .hf-big-title {
        font-size: 18vw;
        margin-top: 60px;
    }

    .hf-main-grid {
        flex-direction: column;
        align-items: center;
    }

    .hf-text-col {
        width: 100%;
        text-align: center;
    }

    .hf-buttons-wrapper {
        justify-content: center;
    }

    .hf-badges-col {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
    .hf-badge{
        font-size: 0.6rem;
    }

    .hf-bowl-wrapper {
        bottom: -20px;
        max-width: 100%;
    }

    .hf-falling-food-wrapper {
        opacity: 1;
        height: unset;
    }
    .hf-content-wrapper {
        padding: 0 7%;
    }
}