
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.perfil-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.perfil-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.perfil-header {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.perfil-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.perfil-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.perfil-image {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #2563eb, #eb2525) 1;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.perfil-badge-top {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #1900ff, #eb25eb);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.perfil-info {
    flex: 1;
}

.perfil-nome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: white;
    margin: 0 0 10px 0;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #2563eb, #eb2525);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perfil-cargo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.perfil-especialidade {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
}

.perfil-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #eb2525);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon-link:hover {
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.social-icon-link:hover::before {
    opacity: 1;
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-icon-link:hover svg {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.social-icon-link:active {
    transform: translateY(-3px) scale(1.02);
}


.perfil-stats-container {
    margin-top: 60px;
}

.stats-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.stats-cards.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 191, 0.5);
    box-shadow: 0 20px 60px rgba(0, 255, 242, 0.2);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    background: linear-gradient(135deg, #2563eb, #eb2525);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-sublabel {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.stats-table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Wrapper específico para tabela da liga com scroll */
.stats-table-wrapper.league-table {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    max-width: calc(100% - 40px);
}

.stats-table-wrapper.league-table::-webkit-scrollbar {
    height: 8px;
}

.stats-table-wrapper.league-table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stats-table-wrapper.league-table::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.5);
    border-radius: 10px;
}

.stats-table-wrapper.league-table::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.7);
}

.stats-table-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.table-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 2px;
    padding: 0 15px;
}

.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: fixed;
}

.stats-table thead tr {
    background: transparent;
}

.stats-table th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    padding: 12px 8px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    white-space: nowrap;
    word-wrap: normal;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats-table th:first-child {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 0 0 10px;
    text-align: center;
    width: 9%;
}

.stats-table th:nth-child(2) {
    width: 14%;
}

.stats-table th:nth-child(3),
.stats-table th:nth-child(4),
.stats-table th:nth-child(5),
.stats-table th:nth-child(6),
.stats-table th:nth-child(7),
.stats-table th:nth-child(8),
.stats-table th:nth-child(9) {
    width: 11%;
}

.stats-table th:last-child {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 10px 10px 0;
}

.stats-table td {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 8px;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.stats-table .table-data {
    text-align: center;
}

.stats-table .position {
    font-weight: 700;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    line-height: 1;
}

.stats-table .position.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.stats-table .position.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
}

.stats-table .position.bronze {
    background: linear-gradient(135deg, #cd7f32, #e8a87c);
    color: #000;
}

.stats-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.stats-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}


.perfil-bio {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out 0.7s, transform 1s ease-out 0.7s;
}

.perfil-bio.visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.bio-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 968px) {
    .perfil-section {
        padding: 100px 30px 50px;
    }

    .perfil-header {
        gap: 40px;
        padding: 35px;
    }

    .perfil-image {
        width: 280px;
        height: 380px;
    }

    .perfil-nome {
        font-size: 60px;
    }

    .perfil-cargo {
        font-size: 20px;
    }

    .perfil-especialidade {
        font-size: 16px;
    }

    .perfil-social {
        justify-content: center;
    }

    .stats-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-table-wrapper {
        padding: 20px 10px;
    }

    .stats-title {
        font-size: 40px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    .table-title {
        font-size: 28px;
        padding: 0 10px;
    }

    .stats-table th {
        font-size: 12px;
        padding: 12px 6px;
    }

    .stats-table td {
        font-size: 13px;
        padding: 12px 6px;
    }

    .perfil-bio {
        padding: 35px;
    }

    .bio-title {
        font-size: 32px;
    }

    .bio-text {
        font-size: 16px;
    }
}

body[data-theme="light"] {
    background: rgba(0, 0, 0, 0.03);
}

body[data-theme="light"] .perfil-header {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .perfil-nome {
    color: #1a1a1a;
}

body[data-theme="light"] .perfil-cargo {
    color: #333;
}

body[data-theme="light"] .perfil-especialidade {
    color: #666;
}

body[data-theme="light"] .stat-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .stat-card:hover {
    background: rgba(37, 99, 235, 0.05);
}

body[data-theme="light"] .stat-label {
    color: #666;
}

body[data-theme="light"] .stat-sublabel {
    color: rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .stats-table-wrapper {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .table-title {
    color: #1a1a1a;
}

body[data-theme="light"] .stats-table th {
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .stats-table td {
    color: #333;
}

body[data-theme="light"] .stats-table tbody tr {
    background: rgba(0, 0, 0, 0.01);
}

body[data-theme="light"] .stats-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

body[data-theme="light"] .perfil-bio {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .bio-title {
    color: #1a1a1a;
}

body[data-theme="light"] .bio-text {
    color: #333;
}

body[data-theme="light"] .social-icon-link {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .social-icon-link svg {
    color: rgba(0, 0, 0, 0.8);
}

body[data-theme="light"] .social-icon-link:hover {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

body[data-theme="light"] .social-icon-link:hover svg {
    color: white;
}

body[data-theme="light"] .perfil-stats-container {
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.3) 0%, rgba(225, 190, 231, 0.3) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

body[data-theme="light"] .stats-title {
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .perfil-section {
        padding: 90px 15px 40px;
    }

    .perfil-header {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
        text-align: center;
    }

    .perfil-image-wrapper {
        align-self: center;
    }

    .perfil-image {
        width: 200px;
        height: 280px;
    }

    .perfil-badge-top {
        top: 10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .perfil-nome {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .perfil-cargo {
        font-size: 16px;
    }

    .perfil-especialidade {
        font-size: 13px;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-card .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-table-wrapper {
        padding: 15px 10px;
        overflow-x: auto;
        margin: 0 auto 60px;
        border-radius: 10px;
    }

    .table-title {
        font-size: 24px;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .stats-table {
        font-size: 11px;
    }

    .stats-table th {
        font-size: 10px;
        padding: 10px 5px;
        letter-spacing: 0;
        line-height: 1.1;
        white-space: nowrap;
    }

    .stats-table td {
        font-size: 11px;
        padding: 10px 5px;
        white-space: nowrap;
    }

    .stats-table .position {
        font-size: 14px;
        padding: 6px 10px;
        min-width: 35px;
    }

    .perfil-bio {
        padding: 20px;
    }

    .bio-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .bio-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

@media (max-width: 1024px) {
    .perfil-section {
        padding: 100px 30px 50px;
    }

    .perfil-header {
        gap: 40px;
        padding: 35px;
    }

    .perfil-image {
        width: 280px;
        height: 380px;
    }

    .perfil-nome {
        font-size: 60px;
    }

    .perfil-cargo {
        font-size: 20px;
    }

    .perfil-especialidade {
        font-size: 16px;
    }

    .stats-title {
        font-size: 40px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    .table-title {
        font-size: 32px;
    }

    .stats-table th {
        font-size: 14px;
        padding: 16px;
    }

    .stats-table td {
        font-size: 14px;
        padding: 16px;
    }

    .perfil-bio {
        padding: 35px;
    }

    .bio-title {
        font-size: 32px;
    }

    .bio-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .perfil-section {
        padding: 80px 20px 40px;
    }

    .perfil-header {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
        text-align: center;
    }

    .perfil-image-wrapper {
        align-self: center;
    }

    .perfil-image {
        width: 220px;
        height: 300px;
        border-width: 2px;
    }

    .perfil-badge-top {
        top: 15px;
        right: -15px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .perfil-nome {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .perfil-cargo {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .perfil-especialidade {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .perfil-social {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        flex-direction: row;
    }

    .perfil-stats-container {
        margin-top: 40px;
    }

    .stats-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .stat-card .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-table-wrapper {
        display: none !important;
    }

    .perfil-bio {
        padding: 25px;
    }

    .bio-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .bio-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .perfil-section {
        padding: 80px 15px 40px;
    }

    .perfil-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .perfil-image {
        width: 180px;
        height: 250px;
    }

    .perfil-badge-top {
        top: 10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .perfil-nome {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .perfil-cargo {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .perfil-especialidade {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .perfil-social {
        flex-direction: row;
        width: 100%;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .perfil-stats-container {
        margin-top: 30px;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-card .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-table-wrapper {
        padding: 12px 8px;
        overflow-x: auto;
        margin: 0 auto 60px;
        border-radius: 8px;
    }

    .table-title {
        font-size: 22px;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .stats-table {
        font-size: 10px;
    }

    .stats-table th {
        font-size: 9px;
        padding: 8px 4px;
        letter-spacing: 0;
        line-height: 1.1;
        white-space: nowrap;
    }

    .stats-table th:first-child {
        width: 11%;
    }

    .stats-table th:nth-child(2) {
        width: 18%;
    }

    .stats-table th:nth-child(3),
    .stats-table th:nth-child(4),
    .stats-table th:nth-child(5),
    .stats-table th:nth-child(6),
    .stats-table th:nth-child(7),
    .stats-table th:nth-child(8) {
        width: 11.5%;
    }

    .stats-table td {
        font-size: 10px;
        padding: 8px 4px;
        white-space: nowrap;
    }

    .stats-table .position {
        font-size: 13px;
        padding: 5px 8px;
        min-width: 30px;
    }

    .perfil-bio {
        padding: 20px;
    }

    .bio-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .bio-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

@media (max-width: 360px) {
    .perfil-nome {
        font-size: 28px;
    }

    .perfil-cargo {
        font-size: 14px;
    }

    .perfil-especialidade {
        font-size: 12px;
    }

    .perfil-image {
        width: 160px;
        height: 220px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stat-card .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .table-title {
        font-size: 20px;
    }

    .stats-table-wrapper {
        padding: 10px 5px;
        margin: 0 auto 60px;
    }

    .stats-table {
        font-size: 9px;
    }

    .stats-table th {
        font-size: 8px;
        padding: 8px 3px;
        white-space: nowrap;
    }

    .stats-table td {
        font-size: 9px;
        padding: 8px 3px;
        white-space: nowrap;
    }

    .stats-table .position {
        font-size: 12px;
        padding: 4px 6px;
        min-width: 28px;
    }

    .bio-title {
        font-size: 20px;
    }

    .bio-text {
        font-size: 12px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .perfil-section {
        padding: 60px 20px 30px;
    }

    .perfil-header {
        flex-direction: row;
        gap: 20px;
        padding: 15px;
        margin-bottom: 30px;
    }

    .perfil-image {
        width: 140px;
        height: 180px;
    }

    .perfil-badge-top {
        top: 10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .perfil-nome {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .perfil-cargo {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .perfil-especialidade {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .perfil-social {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .perfil-stats-container {
        margin-top: 30px;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .stats-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .stat-card .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .perfil-bio {
        padding: 20px;
    }

    .bio-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .bio-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}
