/* ============================================================
   RESPONSIVE.CSS - MOBILE
   Até 768px
============================================================ */

:root {
    --font-title: "Alfa Slab One", serif;
    --font-text: "Mozilla Headline", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
}

@media (max-width: 768px) {
    
    /* ===== OCULTA HEADER DESKTOP ===== */
    #container-header {
        display: none !important;
    }

    /* ===== OVERLAY ===== */
    #mobile-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    #mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* ===== BOTÃO HAMBURGER ===== */
    #mobile-menu-button {
        display: flex !important;
        position: fixed;
        top: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        background: #171717 !important;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 99999;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        padding: 0;
        margin: 0;
        border: none;
    }
    
    #mobile-menu-button:hover {
        background: #2a2a2a;
        transform: scale(1.05);
    }
    
    #mobile-menu-button:active {
        transform: scale(0.95);
    }
    
    #mobile-menu-button img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        display: block;
        transition: transform 0.3s ease;
    }
    
    #mobile-menu-button.open img {
        transform: rotate(90deg);
    }

    /* ===== MENU LATERAL ===== */
    #mobile-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-content: start;
        gap: 13px;
        padding: 85px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 220px;
        max-width: 60%;
        height: 100vh;
        background: #171717;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 99998;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    #mobile-menu.open {
        transform: translateX(0);
    }
    

    /* ===== SOMENTE O HOME COM COR DIFERENTE ===== */
    #mobile-menu a[href="index.html"] {
        background: #D4D4D4 !important; /* SÓ O HOME */
    }

    #mobile-menu a[href="index.html"]:hover {
        background: #b0b0b0 !important; /* HOVER DO HOME */
    }

    #mobile-menu img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: brightness(0.9);
        transition: filter 0.2s;
    }

    #mobile-menu a:hover img {
        filter: brightness(1.2);
    }

    /* ===== ÍCONES DO MENU ===== */
    #mobile-menu a {
        width: 55px;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #262626;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }
    
    #mobile-menu a:hover {
        background: #3a3a3a;
        transform: scale(1.1);
    }
    
    #mobile-menu a:active {
        transform: scale(0.95);
    }
    
    #mobile-menu img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: brightness(0.9);
        transition: filter 0.2s;
    }
    
    #mobile-menu a:hover img {
        filter: brightness(1.2);
    }

    /* ===== AJUSTES MOBILE PARA TEXTOS ===== */
    .text-container {
        padding: 0 20px;
    }

    .text_drive {
        max-width: 100%;
        margin-left: 0;
        padding: 0 10px;
    }

    .texto_Drive2 {
        font-size: 1rem;
        margin-top: 40px;
        padding-left: 10px;
        text-align: left;
    }

    .text_drive3 {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 30px;
        padding: 0 10px;
    }

    .texto_Drive3 {
        font-size: 16px;
        text-align: left;
        padding-left: 10px;
    }

    .title-More-About {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        text-align: left;
        padding: 0 10px;
    }

    .title-More-About2 {
        font-size: 1.2rem;
        padding-left: 10px;
    }

    .title-selectorProjects {
        max-width: 100%;
        margin-left: 0;
        margin-top: 40px;
        padding: 0 10px;
    }

    .title-selectorProjects2 {
        font-size: 32px;
        padding-left: 10px;
        text-align: left;
    }
}


/* ===== TEXTO INNOVATION - MOBILE ===== */
@media (max-width: 768px) {
    
    .text_innovation {
        padding: 0 15px;
        margin-top: 30px;
    }

    .texto_innovation {
        max-width: 100%;
        font-size: 1rem;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        padding: 0 10px;
        line-height: 1.6;
    }
}


/* ===== EXPLORE MORE - MOBILE ===== */
@media (max-width: 768px) {
    
    .explorer_more {
        width: 120px;
        height: 28px;
        position: relative;
        left: 0;
        transform: none;
        margin: 40px auto 0;
        border: 2px solid #000000;
        border-radius: 50px;
        cursor: pointer;
    }

    .explorer_more:hover {
        border: 2px solid #b6b6b6;
        transition: 0.3s;
    }

    .explorer_more2 {
        color: #000000;
        font-family: var(--font-text);
        font-weight: 400;
        font-size: 0.9rem;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .explorer_more2:hover {
        color: #b6b6b6;
        transition: 0.3s;
    }

    /* ===== DIREITOS AUTORAIS - MOBILE ===== */
    .direitos {
        color: #000000;
        font-family: var(--font-mono);
        font-weight: 400;
        font-size: 0.7rem;
        text-align: center;
        margin-top: 50px;
        padding: 0 20px;
    }
}


/* ===== PROJECTS - MOBILE ===== */
@media (max-width: 768px) {
    
    .Project1 {
        width: 90%;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        display: block;
    }

    .textProject1 {
        color: #000000;
        font-family: var(--font-text);
        font-weight: 600;
        font-size: 1rem;
        margin-top: 15px;
        margin-left: 0;
        text-align: center;
        line-height: 1.6;
        text-decoration: underline solid black 2px;
    }

    .Project2 {
        width: 90%;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
        position: relative;
        left: 0;
        top: 0;
        display: block;
    }

    .textProject2 {
        color: #000000;
        font-family: var(--font-text);
        font-weight: 600;
        font-size: 1rem;
        margin-top: 15px;
        margin-right: 0;
        text-align: center;
        line-height: 1.6;
        text-decoration: underline solid black 2px;
        position: relative;
        left: 0;
        top: 0;
    }
}

@media (max-width: 768px) {

    .BannerImg {
        border-bottom: 3px solid #000000;
    }

    .AtendimentoDisponivelContainer {
        position: absolute;
        top: 3%;
        left: 55%;
        transform: translate(-50%); /*QUE NAO FICAR BOM, BOTE O 'DISPLAY NONE'*/
    }

    .ttl-criando-fntm {
        font-size: 10px;
        top: 80px;
        left: 7%;
    }
    
    .ttl-criando-fntm span {
        font-size: 40px;
    }

    .txt-joao-tecnologia-inicio {
        font-size: 16px;
        text-align: left !important;
        position: absolute;
        top: 350px;
        left: 5%;
        right: auto;
        max-width: 90%;
        line-height: 1.6;
    }

    .txt-joao-tecnologia {
        margin: 0;
        padding: 0;
    }

    .btn-fale-conosco {
        position: absolute;
        top: 470px;
    }

    .btn-saiba-areas {
        position: absolute;
        top: 470px;
    }


}




































/**************************************************************************/
/*========================== VERSAO DE TABLET SEPARAÇAO ===========================*/
















/* ============================================================
   RESPONSIVE.CSS - TABLET
   769px a 1024px
============================================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    
    /* ===== AJUSTES GERAIS ===== */
    :root {
        --font-title: "Alfa Slab One", serif;
        --font-text: "Mozilla Headline", sans-serif;
        --font-mono: "JetBrains Mono", monospace;
    }

    /* ===== HEADER - TABLET ===== */
    #container-header {
        display: flex !important;
        margin-top: 20px;
        /* Mantém o header visível, mas ajusta padding */
    }

    /* ===== BOTÃO HAMBURGER - OCULTO NO TABLET ===== */
    #mobile-menu-button {
        display: none !important;
    }

    #mobile-menu {
        display: none !important;
    }

    #mobile-overlay {
        display: none !important;
    }

    /* ===== BANNER - TABLET ===== */
    .BannerImg {
        width: 100%;
        height: auto;
        border-bottom: 4px solid #000000;
    }

    .BannerImg-mobile {
        display: none !important;
    }

    .banner-home-mobile {
        display: none !important;
    }

    .banner-home {
        display: block !important;
    }

    /* ===== TÍTULO CRIANDO - TABLET ===== */
    .ttl-criando-fntm {
        font-size: 28px;
        top: 60px;
        left: 5%;
    }

    .ttl-criando-fntm span {
        font-size: 50px;
    }

    /* ===== TEXTO INNOVATION - TABLET ===== */
    .text_innovation {
        padding: 0 30px;
        margin-top: 40px;
    }

    .texto_innovation {
        max-width: 90%;
        font-size: 1.1rem;
        margin: 0 auto;
        text-align: center;
        line-height: 1.8;
    }

    /* ===== TEXTOS DRIVE - TABLET ===== */
    .text_drive {
        max-width: 90%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .texto_Drive2 {
        font-size: 1.1rem;
        margin-top: 50px;
        text-align: left;
        padding: 0 15px;
    }

    .text_drive3 {
        max-width: 90%;
        margin: 30px auto 0;
        padding: 0 20px;
    }

    .texto_Drive3 {
        font-size: 18px;
        text-align: left;
        padding: 0 15px;
    }

    /* ===== TÍTULOS - TABLET ===== */
    .title-More-About {
        max-width: 90%;
        margin: 30px auto 0;
        text-align: left;
        padding: 0 20px;
    }

    .title-More-About2 {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    /*.title-selectorProjects {
        max-width: 90%;
        margin: 50px auto 0;
        padding: 0 20px;
    }

    .title-selectorProjects2 {
        font-size: 42px;
        text-align: center;
        padding: 0 15px;
    }

    .Project1 {
        width: 80%;
        max-width: 500px;
        border-radius: 12px;
        margin: 40px auto 0;
        display: block;
    }

    .textProject1 {
        font-size: 1.1rem;
        margin-top: 20px;
        text-align: center;
        text-decoration: underline solid black 2px;
    }

    .Project2 {
        width: 80%;
        max-width: 500px;
        border-radius: 12px;
        margin: 50px auto 0;
        display: block;
        position: relative;
        left: 0;
        top: 0;
    }

    .textProject2 {
        font-size: 1.1rem;
        margin-top: 20px;
        text-align: center;
        text-decoration: underline solid black 2px;
        position: relative;
        left: 0;
        top: 0;
    }*/

    /* ===== EXPLORE MORE - TABLET ===== */
    .explorer_more {
        width: 160px;
        height: 35px;
        position: relative;
        left: 0;
        transform: none;
        margin: 50px auto 0;
        border: 2px solid #000000;
        border-radius: 50px;
        cursor: pointer;
    }

    .explorer_more:hover {
        border: 2px solid #b6b6b6;
        transition: 0.3s;
    }

    .explorer_more2 {
        color: #000000;
        font-family: var(--font-text);
        font-weight: 400;
        font-size: 1rem;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .explorer_more2:hover {
        color: #b6b6b6;
        transition: 0.3s;
    }

    /* ===== ATENDIMENTO - TABLET ===== */
    .AtendimentoDisponivelContainer {
        position: absolute;
        top: 5%;
        right: 5%;
        /* Ajuste conforme necessário */
    }

    /* ===== DIREITOS AUTORAIS - TABLET ===== */
    .direitos {
        color: #000000;
        font-family: var(--font-mono);
        font-weight: 400;
        font-size: 0.8rem;
        text-align: center;
        margin-top: 60px;
        padding: 0 30px;
    }

    /* ===== TEXT CONTAINER - TABLET ===== */
    .text-container {
        padding: 0 30px;
    }

    .txt-joao-tecnologia-inicio {
        font-size: 18px;
        text-align: left !important;
        position: absolute;
        top: 300px;
        left: 5%;
        right: auto;
        max-width: 80%;
        line-height: 1.6;
    }

    .txt-joao-tecnologia {
        margin: 0;
        padding: 0;
    }

    .btn-fale-conosco {
        position: absolute;
        top: 395px;
        left: 5%;
    }

    .btn-saiba-areas {
        position: absolute;
        top: 395px;
        margin-left: 15px;
    }
}

/* ============================================================
   TABLET GRANDE (1025px a 1200px) - OPCIONAL
   Para telas entre tablet e desktop
============================================================ */
@media (min-width: 1025px) and (max-width: 1200px) {
    .ttl-criando-fntm {
        font-size: 32px;
        top: 100px;
        left: 4%;
    }

    .ttl-criando-fntm span {
        font-size: 55px;
    }

    .texto_innovation {
        font-size: 1.2rem;
        max-width: 80%;
        margin: 0 auto;
    }
}








/* ======================== Aba Projetos  =================*/

/* Celular (todos) 
@media (max-width: 767px) {
    .ttl-welcome {
        width: 280px;
        color: #f1f1f1;
        font-size: 20px;
        font-family: var(--font-text);
        text-align: left;
        margin-left: 20px;
    }
}

/* Tablet 
@media (min-width: 768px) and (max-width: 1024px) {
    .ttl-welcome {
        width: 600px;
        color: #f1f1f1;
        font-size: 30px;
        font-family: var(--font-text);
        position: absolute;
        top: 100px;
        left: 5%;
    }  
}*/



/* MOBILE */
@media (max-width: 767px) {
    .ttl-welcome {
        width: 90%;
        font-size: clamp(22px, 5.5vw, 28px);
        margin-left: 5%;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .ttl-welcome {
        width: 80%;
        font-size: clamp(30px, 4vw, 40px);
        margin: 40px 0 0 5%;
    }
}






/* =============== Projects.html =============== */

/* TABLET - 2 colunas */
@media screen and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 250px 30px 30px 30px; /* AUMENTEI DE 200px PARA 250px */
    }
    
    .txt-pjct-1 {
        font-size: 16px;
    }
}

/* TABLET PEQUENO / MOBILE GRANDE - 2 colunas */
@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 230px 20px 20px 20px; /* AUMENTEI DE 180px PARA 230px */
    }
    
    .txt-pjct-1 {
        font-size: 15px;
        margin-top: 12px;
    }
}

/* MOBILE - 1 coluna */
@media screen and (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 200px 20px 20px 20px; /* AUMENTEI DE 150px PARA 200px */
        max-width: 400px;
    }
    
    .txt-pjct-1 {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .img-pjct-1 {
        border-radius: 15px;
    }
}



/* ===== RESPONSIVO DO BOTÃO ===== */

/* TABLET */
@media screen and (max-width: 1024px) {
    .btn-abrir-projetcs {
        width: 180px;
        height: 30px;
        font-size: 14px;
    }
}

/* TABLET PEQUENO / MOBILE GRANDE */
@media screen and (max-width: 768px) {
    .btn-abrir-projetcs {
        width: 170px;
        height: 30px;
        font-size: 13px;
    }
}

/* MOBILE */
@media screen and (max-width: 480px) {
    .btn-abrir-projetcs {
        width: 150px;
        height: 26px;
        font-size: 12px;
        border-width: 1.5px;
    }
}


/* ================================================ */



/* ============================================================
   AREAS-RESPONSIVE.CSS
   Mobile-first responsive design for Skills Page
============================================================ */

/* ===== MOBILE FIRST (default) ===== */
.areas-page {
    padding: 100px 12px 40px;
}

.areas-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.card-large,
.card-tall,
.card-small,
.card-future {
    grid-column: span 1;
}

.skill-card {
    padding: 20px 16px 18px;
    gap: 12px;
    border-radius: 14px;
}

.icons-grid {
    gap: 8px;
}

.icon-bubble {
    width: 46px;
    height: 46px;
}

.icon-bubble i {
    font-size: 20px;
}

.icon-img-custom {
    width: 22px;
    height: 22px;
}

.card-title {
    font-size: 14px;
}

.card-desc {
    font-size: 12px;
    line-height: 1.5;
}

.progress-bar {
    height: 44px;
}

.progress-label {
    font-size: 16px;
}

.future-label {
    font-size: 13px;
}

/* ===== MOBILE LARGE (481px - 600px) ===== */
@media screen and (min-width: 481px) and (max-width: 600px) {
    .areas-page {
        padding: 105px 16px 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card-large {
        grid-column: span 2;
    }

    .skill-card {
        padding: 22px 18px 20px;
    }

    .icon-bubble {
        width: 50px;
        height: 50px;
    }

    .icon-bubble i {
        font-size: 22px;
    }

    .icon-img-custom {
        width: 24px;
        height: 24px;
    }

    .areas-title {
        font-size: 1.7rem;
    }
}

/* ===== TABLET (601px - 900px) ===== */
@media screen and (min-width: 601px) and (max-width: 900px) {
    .areas-page {
        padding: 120px 20px 50px;
    }

    .areas-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .card-large {
        grid-column: span 2;
    }

    .skill-card {
        padding: 24px 20px 22px;
        gap: 14px;
        border-radius: 16px;
    }

    .icon-bubble {
        width: 54px;
        height: 54px;
    }

    .icon-bubble i {
        font-size: 24px;
    }

    .icon-img-custom {
        width: 26px;
        height: 26px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-desc {
        font-size: 13px;
    }

    .progress-bar {
        height: 48px;
    }

    .progress-label {
        font-size: 19px;
    }
}

/* ===== TABLET LARGE / SMALL NOTEBOOK (901px - 1100px) ===== */
@media screen and (min-width: 901px) and (max-width: 1100px) {
    .areas-page {
        padding: 130px 24px 50px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .card-large {
        grid-column: span 2;
    }

    .skill-card {
        padding: 24px 20px 22px;
    }

    .icon-bubble {
        width: 54px;
        height: 54px;
    }

    .icon-bubble i {
        font-size: 24px;
    }

    .areas-title {
        font-size: 2.5rem;
    }
}

/* ===== NOTEBOOK / DESKTOP (1101px+) ===== */
@media screen and (min-width: 1101px) {
    .areas-page {
        padding: 140px 24px 60px;
    }

    .areas-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
        margin-bottom: 56px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .card-large {
        grid-column: span 1;
    }

    .skill-card {
        padding: 28px 24px 24px;
        gap: 16px;
        border-radius: 18px;
    }

    .icon-bubble {
        width: 56px;
        height: 56px;
    }

    .icon-bubble i {
        font-size: 26px;
    }

    .icon-img-custom {
        width: 28px;
        height: 28px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-desc {
        font-size: 13px;
    }

    .progress-bar {
        height: 52px;
    }

    .progress-label {
        font-size: 22px;
    }

    .future-label {
        font-size: 14px;
    }
}

/* ===== LANDSCAPE MOBILE FIX ===== */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .areas-page {
        padding: 80px 16px 20px;
    }

    .areas-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .card-large {
        grid-column: span 2;
    }

    .skill-card {
        padding: 12px 12px 14px;
        gap: 8px;
        border-radius: 10px;
    }

    .icon-bubble {
        width: 34px;
        height: 34px;
    }

    .icon-bubble i {
        font-size: 16px;
    }

    .icon-img-custom {
        width: 18px;
        height: 18px;
    }

    .icons-grid {
        gap: 6px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-desc {
        font-size: 10px;
        line-height: 1.4;
    }

    .progress-bar {
        height: 32px;
    }

    .progress-label {
        font-size: 13px;
    }

    .future-label {
        font-size: 11px;
    }

    .card-future {
        min-height: 80px;
        gap: 8px;
    }
}

/* ===== EXTRA SMALL SCREENS (min-width: 320px) ===== */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .areas-page {
        padding: 90px 10px 30px;
    }

    .areas-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .areas-grid {
        gap: 10px;
    }

    .skill-card {
        padding: 16px 14px 16px;
        gap: 10px;
        border-radius: 12px;
    }

    .icon-bubble {
        width: 40px;
        height: 40px;
    }

    .icon-bubble i {
        font-size: 18px;
    }

    .icon-img-custom {
        width: 20px;
        height: 20px;
    }

    .icons-grid {
        gap: 6px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-desc {
        font-size: 11px;
        line-height: 1.4;
    }

    .progress-bar {
        height: 38px;
    }

    .progress-label {
        font-size: 14px;
    }

    .future-label {
        font-size: 12px;
    }

    .card-future {
        min-height: 100px;
        gap: 10px;
    }

    .footer-areas {
        padding: 16px 0 24px;
    }

    .footer-direitos {
        font-size: 10px;
    }
}

/* ===== TOUCH DEVICE FIXES ===== */
@media (hover: hover) {
    .skill-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .icon-bubble:hover {
        background: #2a2a2a;
    }
}

@media (hover: none) {
    .skill-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .icon-bubble:active {
        background: #2a2a2a;
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* ===== HIGH DPI / RETINA SCREENS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .skill-card {
        border: 1px solid rgba(255,255,255,0.03);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .skill-card,
    .skill-card:hover,
    .icon-bubble,
    .icon-bubble:hover,
    .icon-bubble:active,
    .skill-card:active {
        transition: none;
        transform: none;
        animation: none;
    }
}

/* ===== DARK MODE COMPATIBILITY ===== */
@media (prefers-color-scheme: light) {
    .skill-card {
        background: #f5f5f5;
        border: 1px solid #e0e0e0;
    }

    .card-title {
        color: #1a1a1a;
    }

    .card-desc {
        color: #555;
    }

    .icon-bubble {
        background: #e8e8e8;
    }

    @media (hover: hover) {
        .icon-bubble:hover {
            background: #d5d5d5;
        }
    }

    .progress-bar {
        background: #d5d5d5;
    }

    .future-label {
        color: #555;
    }
}