/* UBICACIÓN: E:\xamp\htdocs\camape-productora\talentos\modelos\modelos.css */

/* Header de la categoría */
.cat-header {
    background-color: #111;
    padding: 100px 0 60px 0;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9), #000), url('../../assets/img/fondos/modelos-bg.jpg');
    background-size: cover;
    background-position: top;
}

.cat-header h1 {
    font-size: 3.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cat-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Barra de filtros */
.filters-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Grid de Talentos */
.talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Tarjeta de Talento */
.talent-card {
    background: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #222;
}

.talent-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.talent-img-box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.talent-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.talent-card:hover .talent-img-box img {
    transform: scale(1.1);
    filter: grayscale(100%); /* Efecto artístico al hover */
}

.talent-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6); /* Capa roja semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.talent-card:hover .talent-overlay {
    opacity: 1;
}

.talent-info {
    padding: 20px;
    text-align: center;
}

.talent-info h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.talent-info span {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.talent-stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-around;
    color: #888;
    font-size: 0.8rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}