.hero {
    text-align: center;
    padding: 100px 20px;
    background: #6b0400;
    position: relative;
    height: 700px;
}

.hero-bar {
    display: flex;
    height: 12px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bar {
    flex: 1;
}

.red1 {
    background-color: #c62828;
}

.red2 {
    background-color: #e53935;
}

.red3 {
    background-color: #ef5350;
}

.red4 {
    background-color: #ffcdd2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    gap: 40px;
}

.hero-left,
.hero-right {
    flex: 1 1 50%;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-bottom: 12px;
}

.hero-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    margin: 0;
}

.frase-eatnow {
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
}

.frase-bloco {
    font-size: 2.4rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    display: inline-block;
    width: fit-content;
}

.destaque {
    background-color: #e53935;
}

.borda {
    border: 2px solid #e53935;
}

.frase-final {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 600px;
}

.frase-icone {
    font-size: 2rem;
    background-color: #e53935;
    padding: 6px 10px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left p {
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: left;
}

.btn-primary {
    background-color: #e53935;
    color: #ffffff;
    max-width: 340px;
    padding: 16px 36px;
    border: none;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


/* Responsivo */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-right h2 {
        font-size: 2rem;
    }


    .hero-img {
        display: none;
    }

}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-left p {
        font-size: 1.2rem;
        text-align: center;
        margin: 20px 0;
    }

    .hero-img {
        display: none;
    }

    .frase-eatnow {
        gap: 12px;
        align-items: center;
    }

    .frase-bloco {
        font-size: 1.7rem;
        text-align: center;
        padding: 6px 14px;
    }

    .frase-final {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        text-align: center;
    }

    .frase-icone {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .btn-primary {
        font-size: 1.2rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
        border-radius: 14px;
        margin-top: 20px;
    }

    .hero-bar {
        height: 10px;
    }
}