.hero{
    background-color: var(--cor-hero);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-container{
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;
}

.hero-text h1{
    font-family: var(--fonte-titulo);
    font-size: 150px;
    letter-spacing: 2px;
    color: var(--texto-branco);
    line-height: 1.1;
}

.hero-text h1 span{
    color: #2b1a14 !important;
}

.hero-text p{
    margin: 20px 0;
    color: var(--texto-destaque);
    font-size: 50px;
}

.btn-pedir{
    display: inline-block;

    background-color: var(--cor-header);
    color: var(--texto-branco);

    padding: 25px 120px;
    border-radius: var(--radius-full);

    font-weight: 1000;
    font-size: 24px;
    transition: 0.3s;
}

.btn-pedir:hover{
    background-color: var(--botao-hover);
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image img {
    width: 650px;
    animation: float 3.5s ease-in-out infinite;
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Sombra elíptica */
.hero-image::after {
    content: '';
    display: block;
    width: 70%;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 70%);
    border-radius: 50%;
    margin-top: -20px;
    animation: shadow-pulse 3.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(var(--scroll-scale, 1)); }
    50%       { transform: translateY(-18px) scale(var(--scroll-scale, 1)); }
}

@keyframes shadow-pulse {
    0%, 100% { transform: scaleX(1);   opacity: 0.7; }
    50%       { transform: scaleX(0.9); opacity: 0.4; }
}

/* ===== TABLET GRANDE (até 1100px) ===== */
@media (max-width: 1100px) {
    .hero-text h1 {
        font-size: 110px;
    }

    .hero-text p {
        font-size: 38px;
    }

    .hero-image img {
        width: 480px;
    }

    .btn-pedir {
        padding: 22px 80px;
        font-size: 22px;
    }
}

/* ===== TABLET (até 900px) ===== */
@media (max-width: 900px) {
    .hero {
        padding: 48px 0;
    }

    .hero-text h1 {
        font-size: 86px;
    }

    .hero-text p {
        font-size: 28px;
        margin: 14px 0;
    }

    .hero-image img {
        width: 360px;
    }

    .btn-pedir {
        padding: 18px 56px;
        font-size: 18px;
    }
}

/* ===== MOBILE (até 640px) ===== */
@media (max-width: 640px) {
    .hero {
        padding: 40px 0 32px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 72px;
        letter-spacing: 1px;
    }

    .hero-text p {
        font-size: 22px;
        margin: 10px 0 20px;
    }

    .btn-pedir {
        padding: 16px 48px;
        font-size: 17px;
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        width: 280px;
        max-width: 85vw;
    }
}

/* ===== MOBILE PEQUENO (até 380px) ===== */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 58px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-image img {
        width: 220px;
    }
}