:root {
    --primary-color: #8A2387;
    --primary-gradient: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%);
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --green-verified: #22C55E;
    --cta-red: #B80011;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo-icon { width: 28px; height: 28px; object-fit: contain; }
.logo-wordmark { height: 20px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 16px; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--cta-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: #a00010;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    margin-top: 48px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-copyright { color: var(--text-secondary); font-size: 13px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.footer-link:hover { color: var(--primary-color); background: rgba(138, 35, 135, 0.05); }

@media (min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; }
    .footer-copyright { text-align: left; }
    .footer-links { gap: 0; }
}

/* ══════════════════════════════════════════
   INDEX PAGE
   ══════════════════════════════════════════ */
.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 48px;
}

.page-hero { text-align: center; margin-bottom: 32px; }

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   FILTERS TOOLBAR (estilo chips como APP)
   ══════════════════════════════════════════ */
.filters-toolbar {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.toolbar-left { flex-shrink: 1; min-width: 0; }

.toolbar-count {
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.3px;
    white-space: nowrap;
    font-size: 14px;
}

.toolbar-count small { color: #6b7280; font-weight: 600; }

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

/* Chip selects */
.chip-dropdown { position: relative; }

.chip-select {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    color: #374151;
    font-size: 13px;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    transition: border-color 0.2s;
}

.chip-select:hover { background-color: #f9fafb; }
.chip-select:focus { outline: none; border-color: var(--primary-color); }

/* "Todos los filtros" button */
.btn-all-filters {
    background: #111827;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-all-filters:hover { background: #000; }
.btn-all-filters i { font-size: 15px; }

.filter-badge {
    background: var(--cta-red);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

/* Expandable filters panel */
.filters-panel {
    display: none;
    width: 100%;
    margin-top: 10px;
}

.filters-panel.open { display: block; }

.chips-fields {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.chip-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    transition: border-color 0.2s;
}

.chip-field:focus-within { border-color: var(--primary-color); }
.chip-field .ti { color: var(--primary-color); font-size: 16px; flex-shrink: 0; }

.chip-field input[type="text"],
.chip-field input[type="number"],
.chip-field select {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-primary);
    min-width: 120px;
}

.chip-field input::placeholder { color: var(--text-muted); }
.chip-field select { min-width: 120px; cursor: pointer; }

.chip-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.btn-apply-filters {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-apply-filters:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(138, 35, 135, 0.3);
}

.btn-clear-filters {
    background: #fff;
    color: var(--text-secondary);
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-clear-filters:hover { background: #f3f4f6; }

/* ══════════════════════════════════════════
   CREATOR CARDS (idéntico al dashboard APP)
   ══════════════════════════════════════════ */

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.creator-card {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    min-height: 420px;
}

.creator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 35, 135, 0.15);
    border-color: rgba(138, 35, 135, 0.2);
}

/* Media duo */
.card-media-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 12px 0;
    position: relative;
}

.media-thumb {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
}

.media-thumb::before { content: ''; display: block; padding-top: 135%; }

.media-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.media-thumb .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.media-thumb .play-overlay i {
    color: #fff;
    font-size: 40px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

.media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 6px;
}

.media-placeholder i { color: rgba(255,255,255,0.3); font-size: 32px; }

/* Avatar overlay */
.avatar-overlay {
    position: relative;
    display: block;
    width: 112px;
    height: 112px;
    min-width: 112px;
    min-height: 112px;
    max-width: 112px;
    max-height: 112px;
    border-radius: 16px;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    background: #fff;
    z-index: 10;
    margin: -35px 0 0 16px;
    flex-shrink: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
}

.avatar-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.creator-card:hover .avatar-overlay { border-color: rgba(138, 35, 135, 0.25); }

/* Card body */
.creator-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    min-height: 200px;
}

.creator-name {
    color: #374151;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.creator-location {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.creator-location i { font-size: 14px; }

/* Verified shield */
.verified-shield {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-left: 3px;
    vertical-align: middle;
    filter: drop-shadow(0 1px 2px rgba(34,197,94,.35));
    transform: translateY(1px);
}

.verified-shield svg { width: 100%; height: 100%; display: block; }

/* Description */
.description-container {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 6px 0;
}

.description-text {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    line-height: 1.5;
    color: #64748b;
    font-size: 14px;
}

.ver-mas-link {
    color: #8A2387;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
    display: inline-block;
}

.ver-mas-link:hover { color: #9a2996; text-decoration: underline; }

/* Rating — overlay technique (like APP) */
.creator-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.rating-stars {
    position: relative;
    display: inline-flex;
    line-height: 1;
    font-size: 16px;
    white-space: nowrap;
}

.rating-stars .stars-base {
    color: #e5e7eb;
    display: inline-flex;
    gap: 1px;
}

.rating-stars .stars-fill {
    position: absolute;
    inset: 0 auto 0 0;
    white-space: nowrap;
    overflow: hidden;
    color: #fbbf24;
    display: inline-flex;
    gap: 1px;
}

.rating-text { font-size: 12px; color: var(--text-muted); margin-left: 6px; }

/* Card CTA */
.card-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.btn-ver-perfil {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cta-red);
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    padding: 10px 18px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    white-space: nowrap;
    font-size: 13px;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    flex-grow: 1;
    justify-content: center;
}

.btn-ver-perfil:hover {
    background: #a00010;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

.empty-state i { font-size: 56px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { font-size: 18px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ══════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: var(--bg-card);
    transition: all 0.15s;
}

.pagination a:hover { border-color: var(--primary-color); color: var(--primary-color); }
.pagination .current { background: var(--primary-gradient); color: #fff; border-color: transparent; }
.pagination .disabled { opacity: 0.4; pointer-events: none; }

/* ══════════════════════════════════════════
   CREATOR PROFILE PAGE (replica modal APP)
   ══════════════════════════════════════════ */

.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 48px;
}

.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

/* Profile header */
.profile-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.profile-header-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.profile-avatar-wrap {
    position: relative;
    display: block;
    width: 112px;
    height: 112px;
    min-width: 112px;
    min-height: 112px;
    max-width: 112px;
    max-height: 112px;
    border-radius: 16px;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    background: #fff;
    flex-shrink: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
}

.profile-avatar-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.profile-header-info { flex-grow: 1; min-width: 0; }

.profile-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.verified-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-verified);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(34,197,94,.2);
    line-height: 1;
}

.verified-badge-pill .icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.verified-badge-pill .icon svg { width: 100%; height: 100%; display: block; }

.profile-meta-line {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.profile-meta-line .sep { color: var(--text-muted); margin: 0 6px; }

.profile-chips-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}

.chip i { margin-right: 2px; }

/* Profile body */
.profile-body { padding: 24px 28px; }

.profile-section { margin-bottom: 24px; }
.profile-section:last-child { margin-bottom: 0; }

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Portfolio videos */
.portfolio-videos-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.portfolio-videos-container::-webkit-scrollbar { height: 8px; }
.portfolio-videos-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.portfolio-videos-container::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
.portfolio-videos-container::-webkit-scrollbar-thumb:hover { background: #555; }

.portfolio-video-item { flex: 0 0 auto; width: 260px; position: relative; }

.portfolio-video-item .video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.portfolio-video-item .video-container::before { content: ''; display: block; padding-top: 177.78%; }

.portfolio-video-item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 112%;
    top: -6%;
    border: 0;
    border-radius: 12px;
    background: #000;
}

.no-portfolio-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Brand */
.brand-text { font-size: 14px; line-height: 1.5; color: var(--text-primary); }

/* Description */
.profile-description {
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: var(--text-primary);
}

/* Social media badges (sin links ni @) */
.social-publishing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.social-badge i { font-size: 20px; }
.social-badge.instagram i { color: #E4405F; }
.social-badge.tiktok i { color: #000; }
.social-badge.youtube i { color: #FF0000; }
.social-followers-count { color: var(--text-muted); font-size: 13px; font-weight: 500; }

/* Categories in profile */
.profile-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-category-badge {
    background: linear-gradient(135deg, rgba(138,35,135,0.1) 0%, rgba(154,41,150,0.1) 100%);
    color: #8A2387;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reviews carousel */
.reviews-block { margin-top: 10px; }

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 8px;
}

.reviews-header .summary { color: #6b7280; font-size: 13px; display: flex; align-items: center; gap: 6px; }

.reviews-viewport { overflow-x: auto; scroll-behavior: smooth; }

.reviews-track {
    display: flex;
    gap: 12px;
    padding: 4px 0;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.review-card .body { padding: 14px; }

.review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.review-stars i { font-size: 14px; }
.review-stars .filled { color: #fbbf24; }
.review-stars .empty { color: #e5e7eb; }

.review-comment { font-size: 14px; line-height: 1.5; color: var(--text-primary); margin-bottom: 8px; }
.review-author { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.review-date { font-size: 11px; color: var(--text-muted); }

.reviews-viewport::-webkit-scrollbar { height: 8px; }
.reviews-viewport::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.reviews-viewport::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
.reviews-viewport::-webkit-scrollbar-thumb:hover { background: #555; }

/* Sticky CTA footer */
.profile-sticky-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 -6px 18px rgba(0,0,0,.06);
    padding: 12px 28px;
    z-index: 50;
}

.btn-solicitar {
    display: block;
    width: 100%;
    background: var(--cta-red);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    padding: 12px 24px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-solicitar:hover {
    background: #a00010;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 16px; font-size: 13px; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb .sep { color: var(--text-muted); margin: 0 6px; }
.breadcrumb .current { color: var(--text-primary); font-weight: 500; }

/* ══════════════════════════════════════════
   ERROR PAGE
   ══════════════════════════════════════════ */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 48px 24px;
}

.error-content { text-align: center; }

.error-content h1 {
    font-size: 5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.error-content p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 24px; }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 992px) {
    .avatar-overlay {
        width: 112px; height: 112px;
        min-width: 112px; min-height: 112px;
        max-width: 112px; max-height: 112px;
        margin: -35px 0 0 12px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .page-container, .profile-container { padding: 20px 16px 40px; }
    .page-hero h1 { font-size: 1.5rem; }

    .creators-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

    /* Filters toolbar mobile */
    .filters-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px;
    }

    .toolbar-right {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .chip-select, .btn-all-filters { width: 100%; font-size: 12.5px; }

    .chips-fields { gap: 10px; }
    .chip-field { width: 100%; border-radius: 12px; }
    .chip-field input[type="text"],
    .chip-field input[type="number"],
    .chip-field select { min-width: 0; width: 100%; }
    .chip-actions { width: 100%; justify-content: space-between; margin-left: 0; }

    .avatar-overlay {
        width: 112px; height: 112px;
        min-width: 112px; min-height: 112px;
        max-width: 112px; max-height: 112px;
        margin: -40px 0 0 16px;
    }

    .creator-name { font-size: 1.1rem; font-weight: 700; }
    .creator-location { font-size: 13px; }

    .profile-header { padding: 20px 16px 12px; }
    .profile-body { padding: 20px 16px; }
    .profile-sticky-footer { padding: 12px 16px; }

    .profile-header-row { flex-direction: column; align-items: center; text-align: center; }
    .profile-name-row { justify-content: center; }
    .profile-chips-row { justify-content: center; }
    .profile-categories { justify-content: center; }
    .social-publishing-badges { justify-content: center; }

    .portfolio-video-item { width: 200px; }
    .review-card { min-width: 240px; max-width: 280px; }

    .site-header { padding: 12px 16px; }
    .btn-cta { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
    .creators-grid { grid-template-columns: 1fr; gap: 14px; }
    .portfolio-video-item { width: 160px; }
    .toolbar-right { grid-template-columns: 1fr; }
}
