body {
    background: linear-gradient(120deg, #0072ff 0%, #00c6ff 100%);
    min-height: 100vh;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-horario {
    max-width: 420px;
    margin: 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    padding: 36px 28px 28px 28px;
    text-align: center;
    animation: fadeIn 1.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

h1 {
    color: #0072ff;
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-clock {
    font-size: 1.5em;
    vertical-align: middle;
}

.horario-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.horario-lista li {
    font-size: 1.13rem;
    margin-bottom: 14px;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f7fa;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.06);
}

.dia {
    font-weight: 600;
    color: #0072ff;
}

.hora {
    font-weight: 500;
    color: #222;
}

.hora.especial {
    color: #00c6ff;
    font-weight: 700;
}

.fechado {
    color: #e74c3c;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-extra {
    color: #555;
    font-size: 1rem;
    margin-top: 18px;
}

.info-extra a {
    color: #00c6ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.info-extra a:hover {
    color: #0072ff;
}


/* Adicione ao style4.css */
.btn-voltar {
    display: inline-block;
    margin-top: 22px;
    padding: 10px 26px;
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 12px 0 rgba(44,62,80,0.10);
    transition: background 0.2s, transform 0.2s;
}
.btn-voltar:hover {
    background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
    transform: scale(1.05);
}