/* area-docente.css - Página Área Docente - Mobile First */

/* ============================================
   HERO - ESPAÇAMENTO ADICIONAL DESKTOP
   ============================================ */

/* Aumenta espaçamento entre header e hero apenas em desktop/laptop */
@media (min-width: 769px) {
    .jogos-hero {
        padding-top: calc(var(--header-height) + var(--spacing-3xl) + var(--spacing-xl));
    }
}

/* ============================================
   CARDS DE RECURSOS
   ============================================ */

.area-docente-cards {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-black);
}

.docente-card-section {
    margin-bottom: var(--spacing-3xl);
}

.docente-card {
    background: rgba(255, 255, 255, 0.1); /* Clareado de 0.03 para 0.1 para melhor legibilidade */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    transition: all var(--transition-base);
}

.docente-card:hover {
    background: rgba(255, 255, 255, 0.12); /* Hover mais claro */
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Card Image/Icon */
.docente-card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

.docente-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.docente-icon {
    color: white;
    width: 64px;
    height: 64px;
}

/* Card Content */
.docente-card-content {
    text-align: center;
}

.docente-card-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docente-card-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.docente-card-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Actions */
.docente-card-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 768px) {
    .docente-card-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-docente-primary,
.btn-docente-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-docente-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-docente-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-docente-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-docente-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

/* Carrossel Container */
.docente-carousel-container {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* Cards de Biografias no carrossel - clareados para consistência */
.docente-carousel-container .bio-card-horizontal {
    background: rgba(255, 255, 255, 0.1); /* Clareado para consistência */
}

.docente-carousel-container .bio-card-horizontal:hover {
    background: rgba(255, 255, 255, 0.12); /* Hover mais claro */
}

/* Game Card Horizontal (para carrossel) */
.game-card-horizontal {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.1); /* Clareado para consistência */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.game-card-horizontal:hover {
    background: rgba(255, 255, 255, 0.12); /* Hover mais claro */
    border-color: var(--border-glow);
    transform: scale(1.03);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.game-card-horizontal .game-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: var(--bg-darker);
    overflow: hidden;
}

.game-card-horizontal .game-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card-horizontal:hover .game-thumbnail img {
    transform: scale(1.1);
}

.game-card-horizontal .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.game-card-horizontal:hover .game-overlay {
    opacity: 1;
}

.game-card-horizontal .play-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.game-card-horizontal .coming-soon {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-card-horizontal .game-info {
    padding: var(--spacing-md);
}

.game-card-horizontal .game-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.game-card-horizontal .game-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-horizontal .game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--spacing-sm);
    font-size: 11px;
}

.game-card-horizontal .game-type {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
}

.game-card-horizontal .game-difficulty {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.game-card-horizontal .game-difficulty.easy {
    background: rgba(0, 255, 0, 0.15);
    color: #00ff00;
}

.game-card-horizontal .game-difficulty.medium {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
}

.game-card-horizontal .game-difficulty.hard {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.btn-play-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

.btn-play-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .area-docente-cards {
        padding: var(--spacing-2xl) 0;
    }
    
    .docente-card {
        padding: var(--spacing-xl);
    }
    
    .docente-card-image {
        width: 100px;
        height: 100px;
    }
    
    .docente-icon {
        width: 48px;
        height: 48px;
    }
    
    .docente-card-actions {
        width: 100%;
    }
    
    .btn-docente-primary,
    .btn-docente-secondary {
        width: 100%;
    }
    
    .game-card-horizontal {
        flex: 0 0 280px;
    }
}

