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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    position: relative;
}

#btn-imprimir {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#btn-imprimir:hover {
    background-color: #45a049;
}

header {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #666;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    max-height: 100%;
}

.day-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 18%;
    min-width: 180px;
    text-align: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
}

.day-card h2 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.day-card p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.day-card:hover {
    transform: translateY(-10px);
}

/* Destaque para o dia atual */
.day-card.highlight {
    border: 2px solid #4CAF50;
    background-color: #eaf7e4;
}

footer {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

footer h3 {
    font-size: 1.5rem;
    color: #4CAF50;
}

footer p {
    font-size: 1.2rem;
    color: #666;
}

/* Correção para impressão */
@media print {
    .day-card.highlight {
        background-color: #fff !important;
        border: 1px solid #ccc !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        padding: 20px !important;
    }

    #btn-imprimir {
        display: none !important;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .menu-container {
        flex-direction: column;
        gap: 15px;
    }

    .day-card {
        width: 90%;
        min-width: 100%;
        padding: 15px;
    }

    footer h3 {
        font-size: 1.2rem;
    }

    footer p {
        font-size: 1rem;
    }
}
