/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1e9e57, #ffffff, #e53935);
}

/* =========================
   TOPO / BANNER
========================= */
.topo {
    width: 100%;
    background: #c62828;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

/* =========================
   CONTAINER CENTRAL
========================= */
.container {
    max-width: 520px;
    width: 92%;
    margin: 30px auto;
    background: #fff;
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* =========================
   TÍTULOS
========================= */
.titulo {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.subtitulo {
    font-size: 22px;
    margin: 20px 0 10px;
}

/* =========================
   LOGO
========================= */
.logo {
    display: block;
    margin: 15px auto;
    max-width: 160px;
}

/* =========================
   BOTÕES
========================= */
.btn,
.btn-profissional {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a8f3c;
    color: white;
    padding: 14px;
    margin: 10px 0;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: 0.25s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn:hover,
.btn-profissional:hover {
    background: #146c2e;
    transform: translateY(-2px);
}

.btn-profissional img {
    width: 20px;
    height: 20px;
}

/* =========================
   CARDÁPIO GRID
========================= */
.cardapio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ITEM DO SABOR */
.sabor {
    background: #fff3d6;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #f2c94c;
    text-align: left;
}

.sabor label {
    cursor: pointer;
}

.sabor strong {
    font-size: 16px;
    display: block;
}

.sabor span {
    font-size: 13px;
    color: #555;
}

/* =========================
   TAMANHOS E BEBIDAS
========================= */
.tamanhos,
.bebidas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
}

/* =========================
   TEXTAREA
========================= */
textarea {
    width: 100%;
    min-height: 80px;
    font-size: 15px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* =========================
   REDES SOCIAIS
========================= */
.redes {
    margin-top: 20px;
}

.redes a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    margin: 5px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.redes a:hover {
    transform: scale(1.05);
}

.icon {
    width: 18px;
    height: 18px;
}

/* =========================
   MENSAGEM DE ERRO
========================= */
.erro-msg {
    background: #ffe0e0;
    color: #b30000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: center;
}

/* =========================
   📱 RESPONSIVIDADE
========================= */

/* Tablets */
@media (max-width: 768px) {
    .cardapio {
        grid-template-columns: 1fr;
    }

    .titulo {
        font-size: 24px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .container {
        padding: 18px 15px;
    }

    .btn {
        font-size: 15px;
        padding: 12px;
    }

    .logo {
        max-width: 130px;
    }
}
/* =========================
   ANIMAÇÃO ZOOM AO ENTRAR
========================= */
@keyframes zoomEntrada {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* aplica o efeito */
.zoom-entrada {
    animation: zoomEntrada 0.4s ease-out;
}