* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ========================= */
/* BACKGROUND */
/* ========================= */

body {
    min-height: 100vh;
    background:
        linear-gradient(rgba(20, 10, 5, 0.65), rgba(20, 10, 5, 0.75)),
        url("images/fundo-combos4.jpeg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #301C15;
    /* fallback */
    color: #fff;
}

/* ========================= */
/* HEADER */
/* ========================= */

.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

/* LOGO TOPO */
.logo-topo {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
}

/* TÍTULO */
.hero h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* SUBTÍTULO */
.hero-subtitle {
    margin-top: 8px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.6;
    color: #E6D8CF;
    opacity: 0.9;
}

/* CTA DESTACADO */
.hero-cta {
    margin-top: 26px;
    font-size: 20px;
    font-weight: 700;
    color: #E6D8CF;
    letter-spacing: 0.5px;
    animation: destaqueCTA 2.4s ease-in-out infinite;
    display: inline-block;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
}

/* ========================= */
/* MENU PRINCIPAL */
/* ========================= */

.menu-image {
    position: relative;
    margin-top: 28px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #A7968C;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    transition: 0.3s ease;
}

.menu-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.menu-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: 0.3s ease;
}

.menu-image span {
    position: absolute;
    bottom: 18px;
    left: 20px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

/* ========================= */
/* SUBMENUS */
/* ========================= */

.submenu {
    display: none;
    margin-top: 24px;
    animation: fadeIn 0.35s ease;
}

.submenu-image {
    position: relative;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #A7968C;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.submenu-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.submenu-image img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: 0.3s ease;
}

.submenu-image span {
    position: absolute;
    bottom: 24px;
    left: 22px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
}

/* ========================= */
/* RESUMO */
/* ========================= */

.resumo-box {
    display: none;
    margin-top: 32px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(27, 9, 2, 0.95);
    border: 2px solid #E6D8CF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* BOTÃO WHATS */

.whats-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.whats-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* BOTÃO LIMPAR PEDIDO */

.limpar-btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.limpar-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
}

/* CAMPO DATA MODERNO */

.agendamento {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agendamento label {
    font-size: 14px;
    opacity: 0.9;
}

.agendamento input[type="date"] {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid #958d8d;
    background: rgb(84, 55, 55);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.agendamento input[type="date"]:focus {
    border-color: #E6D8CF;
    box-shadow: 0 0 12px rgba(230, 216, 207, 0.4);
}


/* ========================= */
/* BOTÃO FLUTUANTE */
/* ========================= */

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: 0.25s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ========================= */
/* ANIMAÇÕES */
/* ========================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes destaqueCTA {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================= */
/* MOBILE OTIMIZADO */
/* ========================= */

@media (max-width: 480px) {
    body {
        background:
            linear-gradient(rgba(20, 10, 5, 0.65), rgba(20, 10, 5, 0.75)),
            url("images/fundo-combos4.jpeg") no-repeat top center;

        background-size: contain;
        /* mostra a imagem inteira */
        background-attachment: scroll;
        background-color: #301C15;
        /* fundo caso sobre espaço */
    }
}