/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


body {

    min-height:100vh;

    background:#080808;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

}



/* =========================
   APP
========================= */

.app {

    width:100%;

    max-width:420px;

    padding:25px;

}



h1 {

    text-align:center;

    margin-bottom:35px;

    font-size:2rem;

    letter-spacing:2px;

}



/* =========================
   BUSCA
========================= */

.buscar {

    background:#151515;

    border:1px solid #292929;

    border-radius:18px;

    padding:20px;

}



.buscar input {

    width:100%;

    height:55px;

    background:#0d0d0d;

    border:1px solid #333;

    border-radius:12px;

    padding:0 15px;

    color:#fff;

    font-size:1.2rem;

    outline:none;

    margin-bottom:15px;

}



.buscar input::placeholder {

    color:#777;

}



.buscar button {

    width:100%;

    height:55px;

    border:none;

    border-radius:12px;

    background:#12b5d6;

    color:#000;

    font-size:1.1rem;

    font-weight:bold;

    cursor:pointer;

}





/* =========================
   PEDIDO
========================= */

.pedido {

    margin-top:25px;
    margin-bottom:20px;

    background:#151515;

    border:1px solid #292929;

    border-radius:18px;

    padding:25px;

    text-align:center;

}



.pedido h2 {

    font-size:1rem;

    color:#aaa;

    margin-bottom:15px;

}


.pedido p{
    color:#444;
}
.numero {

    font-size:4rem;

    font-weight:bold;

    color:#12b5d6;

}



.status {

    margin-top:15px;

    font-size:1.2rem;

    font-weight:bold;

}



.preparo {

    color:#facc15;

}



.pronto {

    color:#22c55e;

}



.retirado {

    color:#888;

}





/* =========================
   BOTÃO CONFIRMAR
========================= */

.confirmar {

    margin-top:20px;

    width:100%;

    height:55px;

    border:none;

    border-radius:12px;

    background:#22c55e;

    color:#000;

    font-size:1rem;

    font-weight:bold;

    cursor:pointer;

}



/* remove setas do input number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {

    -webkit-appearance:none;

    margin:0;

}


input[type=number] {

    -moz-appearance:textfield;

}

.modal-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/*FooterSociais*/
loja-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 30px 20px 110px 20px; /* Espaço para não cobrir a barra de navegação */
    margin-top: 50px;
    color: #888;
}

.footer-container {
    max-width: 1200px;
  margin-bottom:70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    
}

.footer-logo {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    
}

.footer-logo .gold {
    color: #FFD700;
}

#footer-nome-loja {
    font-size: 0.8rem;
    color: #555;
    margin-top: 4px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    margin-bottom:10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-suporte-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
    
}

.btn-suporte-footer:hover {
    background: #1a1a1a;
    border-color: #FFD700;
}

.copyright {
    font-size: 0.65rem;
    color: #555;
    
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.brand-logo {
    width: 50px; /* Ajuste conforme necessário */
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    
}

.brand-logo:hover {
    opacity: 1;
}

/* Garante que o conteúdo do footer fique centralizado */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
