/* --- Seção Geral --- */
/* Container e Introdução */
.atividades {
    background-color: #8B0000; /* Tom de vermelho escuro do fundo */
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.atividades-subtitulo-principal {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.atividades-descricao-principal {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.atividades-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Os Cartões Brancos */
.atividade-item {
    background-color: #FFFDF9; /* Fundo off-white do card */
    color: #4A1515;            /* Texto interno vinho escuro */
    border-radius: 20px;
    padding: 35px 25px;
    width: 100%;
    max-width: 320px;          /* Largura ideal para desktop */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icone-circulo {
    background-color: #FFEAEA; /* Fundo rosado claro do círculo */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icone-circulo img {
    width: 80px;
    height: 70px;
}

.atividade-item-titulo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.atividade-item-texto {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Garante que o botão fique alinhado na base */
}

/* Botão Saiba Mais */
.btn-saiba-mais {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #4A1515;
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
    align-self: flex-start; /* Alinha à esquerda como na imagem */
    margin-top: auto;
}

.seta-icone {
    background-color: #8B0000; /* Círculo vermelho da seta */
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-saiba-mais:hover {
    transform: translateX(5px);
}

/* Efeito sutil de elevação ao passar o mouse (substituindo o flip antigo) */
@media (hover: hover) {
    .atividade-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
}

/* --- Responsividade Mobile --- */
@media (max-width: 768px) {
    .atividades-container {
        gap: 20px;             /* Ajusta o espaçamento entre os cards no mobile */
        padding: 0 15px;
    }
    .atividades-subtitulo-principal {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.atividades-descricao-principal {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

    .atividade-item {
        max-width: 290px;      /* Garante uma boa leitura do texto nos celulares */
        padding: 25px 20px;    /* Reduz um pouco o padding interno no mobile */
    }

    .icone-circulo {
        width: 100px;          /* Tamanho do círculo adaptado para telas menores */
        height: 100px;
    }
    
    .icone-circulo img {
        width: 50px;           /* Ícone interno proporcional */
        height: 50px;
    }
}