body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffeef5;
    background-image: url('img/fundo.png?v=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #4b2c34;
    text-align: center;
    padding: 30px;
    margin: 0;
    height: 100vh;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: #fddde6;
    border-radius: 12px;
    margin: 0 5px;
    cursor: pointer;
}

.tab-button.active {
    background-color: #f8b3c6;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fade 0.5s ease;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.calendar-header h2 {
    margin: 0;
    font-size: 22px;
    color: #4b2c34;
    font-weight: bold;
}


.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.calendar-grid div {
    padding: 10px;
    background: #fff0f5;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.calendar-grid div:hover {
    background: #fbcad9;
}

.mensagem {
    position: relative;
    margin-top: 40px;
    background: linear-gradient(90deg, #ff8bc2, #e3219c, );
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 0 12px rgba(240, 145, 199, 0.439);
    backdrop-filter: blur(8px);
    animation: slideUp 1s ease-in-out;
}

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




input[type="text"] {
    padding: 8px;
    border: none;
    border-radius: 10px;
    margin: 10px 5px;
}

button {
    background-color: #fbb1c4;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 300px;
    margin: 10px auto;
}

li {
    background: #ffe4ec;
    padding: 8px;
    margin: 5px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-conteudo {
    background-color: #fff;
    padding: 20px;
    margin: 10% auto;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
}

#fecharModal {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.botao-excluir {
    margin-left: 10px;
    background-color: #f8c6d2;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.botao-excluir:hover {
    background-color: #f5aabf;
}

.hoje {
    border: 2px solid #d6336c;
    font-weight: bold;
    background-color: #ffe0ec;
}

.com-evento {
    background-color: #f9c6d0 !important;
}

.com-evento::after {
    content: "•";
    color: #b30059;
    font-weight: bold;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.calendar-grid div {
    position: relative;
}

#listaTodosEventos ul li {
    padding: 10px;
    margin: 8px 0;
    background-color: #ffe2ec;
    border-left: 5px solid #f88da3;
    font-weight: 500;
}

.botao-excluir-tarefa {
    margin-left: 10px;
    background-color: #f8c6d2;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.botao-excluir-tarefa:hover {
    background-color: #f5aabf;
}

.com-evento {
    background-color: #ffdbb5;
    /* cor suave para destacar */
    border-radius: 50%;
    border: 2px;
}

.inicio-container {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: #efffee00;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cards-inicio {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    background-color: #ffffff4d;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 120px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 80px;
    margin-bottom: 10px;
}

.tab-button {
    color: #4b2c34 !important;
    text-decoration: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 600px) {
    .cards-inicio {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 15px;
    }

    .fundo-inicio {
        object-fit: cover;
        object-position: center;
    }
}

.seta-bonita {
    background: linear-gradient(135deg, #f5aabf, #f88da3);
    border: none;
    border-radius: 16px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seta-bonita:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 140, 255, 0.5);
}

