/* Surdos Inconnection - Accessibility Styles */

/* Otimização do avatar João no banner */
.right-image img[src*="joao_avatar"] {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    border-radius: 15px;
    animation: gentle-bounce 4s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Efeito hover para o avatar */
.right-image img[src*="joao_avatar"]:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Otimização da imagem de entrevista na seção About */
.left-image img[src*="entrevista_site_surdos"] {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    transition: all 0.3s ease;
}

.left-image img[src*="entrevista_site_surdos"]:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

/* Efeito de foco para imagens importantes */
.about-us .left-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-us .left-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 164, 237, 0.1), rgba(51, 204, 197, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 12px;
}

.about-us .left-image:hover::before {
    opacity: 1;
}

/* Barra de acessibilidade */
.accessibility-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Botão de LIBRAS flutuante */
.libras-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #03a4ed;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(3, 164, 237, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.libras-button:hover {
    background-color: #0288cc;
    transform: scale(1.1);
}

/* Indicador visual para conteúdo em LIBRAS */
.libras-content {
    border-left: 4px solid #03a4ed;
    padding-left: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 10px 0;
}

.libras-content::before {
    content: "🤟 ";
    font-size: 1.2em;
    margin-right: 5px;
}

/* Destaque para informações importantes */
.highlight-deaf {
    background: linear-gradient(45deg, #03a4ed, #0288cc);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

/* Formulário acessível */
.accessible-form input:focus,
.accessible-form textarea:focus {
    border: 3px solid #03a4ed !important;
    box-shadow: 0 0 10px rgba(3, 164, 237, 0.3) !important;
}

/* Badge de sucesso profissional */
.success-badge {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    display: inline-block;
    margin: 5px 0;
}

/* Estatísticas visuais */
.stat-counter {
    font-size: 2.5em;
    font-weight: bold;
    color: #03a4ed;
    display: block;
}

/* Melhorias de contraste */
.high-contrast {
    background-color: #000;
    color: #fff;
}

.high-contrast a {
    color: #03a4ed;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .libras-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .accessibility-bar {
        font-size: 0.9em;
        padding: 8px 0;
    }
}

/* Animações para feedback visual */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Indicadores de status de emprego */
.employment-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.status-employed {
    background-color: #28a745;
    color: white;
}

.status-seeking {
    background-color: #ffc107;
    color: #212529;
}

.status-training {
    background-color: #17a2b8;
    color: white;
}
