@font-face {
    font-family: 'Orbitron';
    /* Apenas o nome, sem sans-serif aqui */
    src: url('../src/fonts/orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

/* Importação correta para Oxanium */
@font-face {
    font-family: 'Oxanium';
    src: url('../src/fonts/Oxanium/Oxanium-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
}

:root {
    --bg-color: #1A0B2E;
    --bg-color2: #280557;
    --accent-color: #2E5BFF;
    --new-color: #666363ab;
    --neon-color: #39FF14;
    --neon-color2: #041602;
    --text-color: #F0F0F0;

}

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



html, body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #1A0B2E; /* fundo */
}

body::-webkit-scrollbar-thumb {
  background: #39FF14; /* cor do scroll */
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #2E5BFF;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Orbitron';
}

/* Header Profissional (Navbar) */
.navbar-pro {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(26, 11, 46, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-pro {
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 700;
}

.logo-pro .verde {
    color: var(--neon-color);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--neon-color);
}

.nav-link:hover {
    color: var(--neon-color);
}

.nav-link:hover::after {
    width: 100%;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.header-desc{
    color: rgba(240, 240, 240, 0.6);
    font-size: 11px;
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 1px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neon-color);
    box-shadow: 0 0 10px var(--neon-color), 0 0 20px var(--neon-color);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.system-status p {
    color: var(--neon-color);
    font-family: 'Oxanium', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Mobile View */
.menu-checkbox {
    display: none;
}
.menu-icon {
    display: none;
    color: var(--neon-color);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section Profissional */
.hero-pro {
    min-height: calc(100vh - 80px); /* Ocupa o resto da tela excluindo a navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-pro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57,255,20,0.05) 0%, rgba(26,11,46,0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-content-pro {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.sys-init-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: var(--neon-color);
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.typing-text {
    border-right: 2px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: typing 3s steps(40, end), blink-cursor-type 0.75s step-end infinite;
}

.cursor {
    animation: blink-cursor-type 1s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-cursor-type {
    from, to { opacity: 1 }
    50% { opacity: 0 }
}

.glitch-title {
    font-size: 90px;
    line-height: 1;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.glitch-title.verde {
    color: var(--neon-color);
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.3),
        0 0 20px rgba(57, 255, 20, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(240, 240, 240, 0.8);
    font-family: 'Oxanium', sans-serif;
    margin: 30px 0 40px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.botoes-pro {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-pro {
    background: var(--neon-color);
    color: var(--bg-color);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.btn-primary-pro::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-primary-pro:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.7);
    transform: translateY(-2px);
}

.btn-primary-pro:hover::after {
    opacity: 1;
    top: -100%;
    left: -100%;
    transition: all 0.8s ease;
}

.btn-secondary-pro {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-secondary-pro:hover {
    border-color: var(--neon-color);
    color: var(--neon-color);
    box-shadow: inset 0 0 15px rgba(57, 255, 20, 0.2);
}

.down-text-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    background: rgba(0, 0, 0, 0.2);
    font-family: 'Oxanium', sans-serif;
}

.binary-decor {
    color: rgba(57, 255, 20, 0.4);
    font-size: 14px;
    letter-spacing: 2px;
}

.skills-ticker {
    display: flex;
    gap: 15px;
    color: rgba(240, 240, 240, 0.6);
    font-size: 14px;
    align-items: center;
}

.divider-dot {
    color: var(--neon-color);
}

/* Habilidades Profissionais */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-header-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-icon-img {
    width: 45px;
    height: 45px;
    background: var(--bg-color);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.4);
}

.skill-icon-txt {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.4);
    background: var(--bg-color);
}

.js-color { color: #F7DF1E; border-color: #F7DF1E; }
.git-color { color: #F05032; border-color: #F05032; }

.skill-card h3 {
    color: var(--neon-color);
    font-size: 20px;
    letter-spacing: 1px;
}

.skill-card p {
    color: rgba(240, 240, 240, 0.8);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Oxanium', sans-serif;
    flex-grow: 1;
}

.skill-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar {
    height: 100%;
    background: var(--neon-color);
    box-shadow: 0 0 10px var(--neon-color);
    border-radius: 5px;
}

.rn-color { background: #61DAFB; box-shadow: 0 0 10px #61DAFB; }
.html-color { background: #E34F26; box-shadow: 0 0 10px #E34F26; }
.css-color { background: #1572B6; box-shadow: 0 0 10px #1572B6; }


/* Projetos Profissionais */
.projects {
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    padding-top: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.project-card-pro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-header-pro {
    margin-bottom: 20px;
}

.project-header-pro h3 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    font-size: 11px;
    font-family: 'Oxanium', sans-serif;
    padding: 3px 10px;
    border-radius: 10px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-color);
    border: 1px solid var(--neon-color);
    text-transform: uppercase;
}

.pulse {
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.project-desc {
    color: rgba(240, 240, 240, 0.7);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Oxanium', sans-serif;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-tag {
    font-size: 12px;
    color: var(--bg-color);
    background: rgba(240, 240, 240, 0.8);
    padding: 4px 10px;
    border-radius: 12px;
    font-family: 'Oxanium', sans-serif;
    font-weight: bold;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
    padding-top: 20px;
}

.btn-link-pro {
    color: var(--neon-color);
    border: 1px solid var(--neon-color);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Oxanium', sans-serif;
    transition: all 0.3s ease;
}

.btn-link-pro:hover {
    background: var(--neon-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--neon-color);
}

div.mini-cards {
    display: flex;
    gap: 10px;
}

div.mini-cards img {
    background-color: var(--bg-color);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    padding: 5px;
    transition: transform 0.3s ease;
}

div.mini-cards img:hover {
    transform: translateY(-3px);
    border-color: var(--neon-color);
}

section.contatos {
    margin-top: 20px;
}

div.contatos-wraper {
    display: inline-block;
    background-color: var(--bg-color2);

}

/* Contatos e Perfil Profissional */
section.contatos {
    display: none;
    margin-top: 40px;
    padding: 0 15px;
    animation: fadeIn 0.4s ease-out;
}

.contatos-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.contatos-wraper {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.perfil-header {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    padding-bottom: 30px;
}

.perfil-img-container {
    position: relative;
    flex-shrink: 0;
}

.perfil-img-pro {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    object-fit: cover;
    border: 3px solid var(--neon-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    transition: transform 0.4s ease;
}

.perfil-img-container:hover .perfil-img-pro {
    transform: scale(1.02) rotate(2deg);
}

.status-badge-online {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-color);
    color: var(--neon-color2);
    font-size: 12px;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.5);
    font-family: 'Oxanium', sans-serif;
}

.perfil-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glitch-name {
    font-size: 45px;
    color: var(--text-color);
    margin: 0;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.2);
    letter-spacing: 1px;
}

.role-title {
    color: var(--neon-color);
    font-family: 'Oxanium', sans-serif;
    font-size: 20px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.perfil-body {
    padding: 10px 0;
}

.perfil-text-pro {
    color: rgba(240, 240, 240, 0.8);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Oxanium', sans-serif;
    text-align: justify;
}

.highlight-text {
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
}

.stack-resume {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--neon-color);
    color: rgba(240, 240, 240, 0.9);
    font-family: 'Oxanium', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

.contatos-social-pro {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 240, 240, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Oxanium', sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.social-icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-color);
    color: var(--neon-color);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.2);
    transform: translateY(-3px);
}

.social-btn:hover .social-icon-wrapper img {
    transform: scale(1.1);
}

.email-btn {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-color);
    color: var(--neon-color);
}

.email-btn:hover {
    background: var(--neon-color);
    color: var(--bg-color);
    box-shadow: 0 5px 25px rgba(57, 255, 20, 0.5);
}

.email-btn:hover .social-icon-wrapper img {
    filter: brightness(0); /* Deixa icon preto no hover verde */
}

@media screen and (max-width: 768px) {
    .navbar-pro {
        padding: 0 20px;
        height: 70px;
    }

    .menu-icon {
        display: block;
        order: 2;
        z-index: 1001;
    }

    .system-status {
        display: none; /* Ocultar no mobile para economizar espaço */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 11, 46, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-left: 1px solid rgba(57, 255, 20, 0.2);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-link {
        font-size: 20px;
    }

    #menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    .hero-pro {
        min-height: calc(100vh - 70px);
        padding: 20px 10px;
    }

    .glitch-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .sys-init-box {
        font-size: 11px;
    }

    .botoes-pro {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-pro, .btn-secondary-pro {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .down-text-pro {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .skills-ticker {
        flex-wrap: wrap;
        justify-content: center;
    }



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

    .perfil-text-pro {
        text-align: center;
        font-size: 14px;
    }

    .contatos-wraper {
        width: 90%;
        padding: 20px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .perfil-img-pro {
        width: 150px;
        height: 150px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

section.contatos {
    display: none;
}

/* App Store Section Professional */
section.aplicacoes {
    display: none;
    margin-top: 20px;
    padding: 0 15px;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 38px;
    letter-spacing: 2px;
}

.section-title .verde {
    text-shadow: 0 0 5px #39FF14, 0 0 15px #39FF14;
}

.app-store-wraper {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.premium-glass {
    background: linear-gradient(135deg, rgba(40, 5, 87, 0.4), rgba(26, 11, 46, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-top: 1px solid rgba(57, 255, 20, 0.4);
    border-left: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 30px;
    padding: 35px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(57, 255, 20, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-glass:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.4);
}

.app-header-advanced {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.app-icon-container {
    position: relative;
}

.app-icon-pro {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    object-fit: contain;
    background: var(--bg-color);
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 0 2px rgba(57, 255, 20, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-icon-container:hover .app-icon-pro {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 15px rgba(57, 255, 20, 0.6);
}

.app-info-pro {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 130px;
}

.app-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-title-row h3 {
    font-size: 32px;
    color: var(--text-color);
    letter-spacing: 1px;
}

.badge-pro {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-color);
    border: 1px solid var(--neon-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oxanium';
}

.app-developer {
    color: var(--neon-color);
    font-size: 16px;
    margin-top: 5px;
    opacity: 0.9;
    font-family: 'Oxanium';
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: var(--neon-color);
    text-shadow: 0 0 5px var(--neon-color);
}

.stat-label {
    color: rgba(240, 240, 240, 0.5);
    font-size: 12px;
    font-family: 'Oxanium';
    margin-top: 2px;
}

.stat-divider {
    height: 30px;
    width: 1px;
    background: rgba(240, 240, 240, 0.2);
}

.app-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
    border-bottom: 1px solid rgba(240, 240, 240, 0.1);
    margin-bottom: 25px;
}

.app-short-desc {
    color: rgba(240, 240, 240, 0.8);
    font-size: 15px;
    max-width: 65%;
    line-height: 1.5;
}

.btn-download-pro {
    background: var(--neon-color);
    color: var(--bg-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.btn-download-pro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-download-pro:hover::before {
    width: 200px;
    height: 200px;
}

.btn-download-pro:hover {
    background: transparent;
    color: var(--neon-color);
    border: 2px solid var(--neon-color);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
}

.btn-download-pro:active {
    transform: scale(0.95);
}

.download-size {
    font-size: 10px;
    font-family: 'Oxanium';
    margin-top: 2px;
    opacity: 0.8;
}

.btn-download-pro:hover .download-size {
    opacity: 1;
}

.app-whats-new {
    margin-bottom: 25px;
    background: rgba(0,0,0,0.2);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 3px solid var(--neon-color);
}

.app-whats-new h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}

.app-whats-new p {
    color: rgba(240, 240, 240, 0.7);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Oxanium';
}

.app-screenshots-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.app-screenshots-carousel::-webkit-scrollbar {
    height: 6px;
}

.app-screenshots-carousel::-webkit-scrollbar-thumb {
    background: rgba(57, 255, 20, 0.4);
    border-radius: 10px;
}

.app-screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 255, 20, 0.8);
}

.app-screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.screenshot-wrapper {
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(240, 240, 240, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 15px rgba(57, 255, 20, 0.2);
}

.screenshot-pro {
    height: 450px;
    width: auto;
    display: block;
    object-fit: cover;
    background-color: #000;
}

/* Responsividade App Store */
@media screen and (max-width: 768px) {
    .app-header-advanced {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .app-icon-pro {
        width: 100px;
        height: 100px;
    }
    .app-info-pro {
        height: auto;
        align-items: center;
    }
    .app-title-row {
        flex-direction: column;
        gap: 5px;
    }
    .app-action-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .app-short-desc {
        max-width: 100%;
    }
    .btn-download-pro {
        width: 100%;
    }
    .app-stats {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    .screenshot-pro {
        height: 350px;
    }
}