﻿.postit {
    background: #fffec8;
    border: 2px solid #e0d000;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 700px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}

    .postit .title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

.list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.list-item {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}
.social-icons a i {
    color: #343a40 !important;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #495057; /* tom mais claro ao passar o mouse */
}

/* ============================
   CALENDÁRIO MODERNO ELEVE
   ============================ */

/* Container */
#calendar {
    background: #f8faff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Cabeçalho */
.fc-toolbar-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #2d3e50 !important;
    letter-spacing: -0.5px;
}

/* Botões */
.fc-button {
    background: linear-gradient(135deg, #4a6cf7, #6a8bff) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 7px 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    box-shadow: 0 3px 8px rgba(74,108,247,0.3);
}

    .fc-button:hover {
        background: linear-gradient(135deg, #3a56c9, #5877e0) !important;
    }

/* Dias */
.fc-daygrid-day {
    border-radius: 10px !important;
    background: #ffffff;
    transition: background 0.2s ease-in-out;
}

    .fc-daygrid-day:hover {
        background: #eef3ff !important;
    }

/* Números dos dias */
.fc-daygrid-day-number {
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* Eventos */
.fc-event {
    border-radius: 8px !important;
    padding: 5px 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

    /* Evento padrão (verde) */
    .fc-event:not(.noticia-evento) {
        background: linear-gradient(135deg, #28a745, #3ecf5a) !important;
    }

    /* Evento com notícia (azul) */
    .fc-event.noticia-evento {
        background: linear-gradient(135deg, #007bff, #4da3ff) !important;
    }

    /* Hover */
    .fc-event:hover {
        transform: scale(1.05);
        transition: 0.15s ease-in-out;
    }

/* Fonte geral */
.fc {
    font-family: "Poppins", "Segoe UI", sans-serif !important;
}

#modalEvento .modal-content {
    border-radius: 14px;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

#modalEvento .modal-header {
    background: linear-gradient(135deg, #4a6cf7, #6a8bff);
}

#modalEvento .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
}

#modalEvento .modal-body {
    font-size: 1.05rem;
    color: #333;
}

.social-icons a.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: 0.3s;
}

    .social-icons a.btn-outline-light:hover {
        background: white;
        color: #333;
    }

/* Botão "Encontre uma Célula" ao lado dos ícones sociais */
.link-celulas {
    color: #555 !important; /* cinza escuro quando normal */
    border: 2px solid #555 !important;
    background: transparent;
    transition: 0.3s ease;
}

    .link-celulas:hover {
        color: #000 !important; /* preto no hover */
        border-color: #000 !important;
        background: #f2f2f2; /* leve fundo cinza claro */
    }