@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

body {
    background: #f8fafc; /* Fundo claro */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff; /* Fundo branco do card */
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

header { 
    text-align: center; 
    margin-bottom: 0px; 
}

/* Frame do Logo */
.logo-container {
    width: 300px;
    height: 200px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Garante que caiba no frame sem cortar */
}

h1 { 
    color: #1e293b; 
    font-size: 22px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    margin-bottom: 8px;
}

.status-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    padding: 6px 14px; 
    border-radius: 100px; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
}

.status-badge.open { 
    background: #dcfce7; 
    color: #166534; 
}

.status-badge.closed { 
    background: #fee2e2; 
    color: #991b1b; 
}

.pulse { 
    width: 6px; 
    height: 6px; 
    background: currentColor; 
    border-radius: 50%; 
    animation: blink 1.5s infinite; 
}

@keyframes blink { 
    0% { opacity: 1; } 
    50% { opacity: 0.3; } 
    100% { opacity: 1; } 
}

.info { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.item { 
    background: #f1f5f9; 
    padding: 15px; 
    border-radius: 20px; 
}

.item small { 
    color: #64748b; 
    font-size: 10px; 
    font-weight: 800; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 6px; 
}

.item p { 
    color: #334155; 
    font-size: 14px; 
    line-height: 1.5; 
}

.schedule-list { 
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.row { 
    display: flex; 
    justify-content: space-between; 
    font-size: 12px; 
    color: #64748b; 
    padding: 2px 0; 
}

.row.active { 
    color: #0f172a; 
    font-weight: 700; 
}

footer { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 20px; 
}

.btn-main { 
    background: #FF0000; 
    color: white; 
    text-decoration: none; 
    padding: 18px; 
    border-radius: 18px; 
    text-align: center; 
    font-weight: 700; 
    font-size: 15px; 
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3); 
}

.btn-group { 
    display: flex; 
    gap: 10px; 
}

.btn-wa { 
    background: #f0fdf4; 
    border: 1px solid #dcfce7; 
    color: #166534; 
    flex: 1; 
    text-decoration: none; 
    padding: 14px; 
    border-radius: 18px; 
    text-align: center; 
    font-weight: 700; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
}

.btn-share { 
    background: #f8fafc; 
    color: #64748b; 
    border: 1px solid #e2e8f0; 
    width: 56px; 
    border-radius: 18px; 
    cursor: pointer; 
}