/* Paleta de Cores */
:root {
    --light-blue: #cce4f6;
    --blue: #0066cc;
    --blue-alt: #005bb5;
    --text-white: #ffffff;
}

/* Cabeçalho */
.bg-light-blue {
    background-color: #00008b; /* Azul escuro */
}

.text-white {
    color: var(--text-white);
}


/* Cards */
.card {
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Suaviza a transição */
}

.card-blue {
    background-color: var(--blue);
}

.card-blue-alt {
    background-color: var(--blue-alt);
}

.card-light-blue {
    background-color: var(--light-blue);
    color: #000;
}
.card i {
        font-size: 2rem;
    }
    .card-link {
        text-decoration: none;
    }
    .card:hover {
    transform: translateY(-10px); /* Faz o card "subir" um pouco */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Adiciona uma sombra para destaque */
}
/* Rodapé */
footer {
    background-color: var(--blue-alt);
}
.styled-link {
        color: #fff; /* Branco */
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0 0.5px;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        background-color: #6495ED; /* Azul vibrante */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
    .styled-link:hover {
        background-color: #0056b2;
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
/* Menu responsivo */
.menu-links {
    display: flex;
    gap: 15px; /* Espaçamento horizontal entre os itens */
}

@media (max-width: 992px) {
    .menu-links {
        justify-content: center; /* Centraliza os links */
        flex-wrap: wrap; /* Permite quebra de linha se necessário */
        margin-top: 10px; /* Adiciona espaçamento acima dos links */
    }

    .styled-link {
        color: white;
        text-decoration: none;
        padding: 5px 10px; /* Espaçamento interno dos links */
    }

    .styled-link:hover {
        background-color: #005bb5;
        border-radius: 5px; /* Botões arredondados ao passar o mouse */
    }
}
@media (max-width: 768px) {
    .filter-buttons button {
        width: 100%; /* Botões ocupam 100% da largura */
        max-width: 250px; /* Largura máxima para evitar botões exageradamente largos */
        margin: 5px 0; /* Espaçamento vertical entre os botões */
    }
}
/* Estilo da seção dos cards */
       /* .row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
*/
        /* Animações e transições */
        .col-md-6 {
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .hidden {
            transform: scale(0.8);
            opacity: 0;
            pointer-events: none;
            position: absolute; /* Remove do fluxo visual */
        }

        .show {
            transform: scale(1);
            opacity: 1;
            pointer-events: all;
            position: static; /* Mantém no fluxo visual */
        }

        /* Botões de filtro */
        .filter-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            gap: 10px;
        }

        .filter-buttons button {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        }

        .filter-buttons button:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }

        .filter-buttons button.active {
            background-color: #004b9e;
            transform: scale(1.15);
        }

        .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permite quebrar linha em telas menores */
    gap: 10px; /* Espaçamento entre botões */
}

.filter-buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 120px; /* Largura mínima para alinhamento */
    text-align: center;
}
.card {
    overflow: hidden; /* Garante que o conteúdo adicional fique oculto */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05); /* Destaca o card ao passar o mouse */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-options {
    position: absolute;
    bottom: -100%; /* Começa fora da vista */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center; /* Alinha as opções horizontalmente */
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.card:hover .card-options {
    bottom: 0; /* Menu desliza para cima, ficando visível */
    opacity: 1; /* Aparece suavemente */
}

.option-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-width: 100px; /* Garante que cada opção tenha largura mínima */
    text-align: center;
}

.option-link:hover {
    background-color: #007bff;
    color: #fff;
}


@media (max-width: 1500px) {
    .card-options {
        display: flex;
        flex-direction: row; /* Mantém as opções em linha */
        overflow-x: auto; /* Permite rolagem horizontal */
        padding: 10px; /* Padding ao redor das opções */
        gap: 10px; /* Espaço entre as opções */
        -webkit-overflow-scrolling: touch; /* Melhora a rolagem em dispositivos móveis */
        justify-content: flex-start; /* Garante que as opções comecem do início */
    }

    .option-link {
        flex-shrink: 0; /* Impede que as opções encolham */
        min-width: 120px; /* Largura mínima das opções */
        text-align: center; /* Alinha os links ao centro */
        padding: 10px 20px; /* Espaçamento nos links */
        border-radius: 5px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .option-link:hover {
        background-color: #0056b3;
        color: #fff;
    }
}

.hidden {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.show {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
    position: static;
}

    /* Fundo escuro para o overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Modal centralizado */
.modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    width: 20cm; /* Largura mantém maior */
    max-width: 90%; /* Responsivo em telas pequenas */
    min-height: 15cm; /* Altura mínima maior */
    max-height: 90%; /* Evita ultrapassar a altura da tela */
    overflow-y: auto; /* Adiciona rolagem se necessário */
}
    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
    }

    .modal-body {
        margin-top: 1rem;
    }

    .modal-footer {
        margin-top: 1rem;
        display: flex;
        justify-content: flex-end;
    }

    .d-none {
        display: none !important;
    }

