/* css/category.css */
/* Estilos específicos para la página de categorías */

.back-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.category-header {
    width: 90dvw;
    max-width: 1200px;
    margin-top: 100px;  /* ← AGREGA ESTO */
    margin-bottom: 50px;
    text-align: center;
}

.category-blob-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.blob-wrapper {
    position: relative;
    width: 120px;
    aspect-ratio: 1;
    display: block;
}

.category-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 400;
    color: #f0f8ff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.category-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.agents-count {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

@media (max-width: 768px) {
    .back-btn {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .category-header {
        margin-top: 80px;
    }
}