/* css/style.css */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card {
    transition: transform 0.3s;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.calendario-header {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.dia-disponivel:hover {
    background-color: #e3f2fd;
    font-weight: bold;
}

.table td {
    height: 60px;
    vertical-align: middle;
}

.horario-btn {
    transition: all 0.2s;
}

.horario-btn:hover {
    transform: scale(1.05);
}

.progress {
    height: 20px;
}

.badge {
    font-size: 0.9em;
}

.sticky-top {
    top: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}