/* Reset Padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    text-align: center;
    color: #777;
}

/* Cabeçalho */
header {
    background: linear-gradient(to right, #000, #666);
    color: white;
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid #ffcc00;
}

/* Seção da Agenda */
.agenda {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 40px auto;
    max-width: 80%;
    transition: transform 0.3s ease-in-out;
}

.agenda:hover {
    transform: scale(1.02);
}

.agenda-text {
    text-align: left;
    max-width: 55%;
}

.agenda-text h2 {
    font-size: 34px;
    color: #222;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 3px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.agenda-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/* Ícone da Agenda */
.agenda-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    margin-left: 20px;
}

.calendar-gif {
    width: 100%;
    max-width: 110px;
    height: auto;
    animation: pulse 1.5s infinite alternate ease-in-out;
}

/* Efeito de Pulsação no Ícone */
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Container do Calendário */
.calendar-container {
    margin: 30px auto;
    max-width: 85%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.calendar-container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.calendar-container iframe {
    width: 100%;
    border-radius: 8px;
    border: none;
}

/* Rodapé */
footer {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-media h2 {
    width: 100%;
    font-size: 22px;
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    transition: transform 0.3s ease-in-out;
}

.social-media a img {
    width: 50px;
    height: 50px;
    filter: grayscale(50%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 768px) {
    .agenda {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .agenda-text {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .agenda-icon {
        margin-left: 0;
        margin-top: 15px;
    }

    .calendar-container {
        padding: 15px;
    }

    .social-media img {
        width: 40px;
        height: 40px;
    }
}
