﻿/* Estilizações específicas para Atividades */
.atividades {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

    .atividades h3 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #00264d;
        margin-bottom: 40px;
    }

    .atividades .card {
        border-radius: 15px;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        background: #fff;
        padding: 20px;
        border: none;
    }

        .atividades .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }

    .atividades .card-title {
        font-size: 1.25rem;
        color: #00264d;
        font-weight: bold;
        margin-top: 15px;
    }

    .atividades .card-text {
        color: #555;
        font-size: 1rem;
        hyphens: auto;
        word-spacing: -1px;
    }

    .atividades .btn {
        background-color: #d4a253;
        padding: 12px 25px;
        font-size: 1.1rem;
        border-radius: 8px;
        font-weight: bold;
        transition: background-color 0.3s ease-in-out;
    }

        .atividades .btn:hover {
            background-color: #b5883b;
            color: #fff;
        }

    .atividades p {
        text-align: left;
    }

#button-atividades {
    background-color: #00264d;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

    #button-atividades:hover {
        background-color: #b5883b;
        transform: scale(1.05);
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .atividades h3 {
        font-size: 2rem;
    }

    .atividades .card {
        margin-bottom: 20px;
    }

    .atividades .btn {
        width: 100%;
        padding: 12px;
    }
}



.card {
    position: relative;
}

.watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/logo-sem-nome.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* Apenas a imagem tem opacidade */
    z-index: 0;
}