/* ==================================================
   INDEX.CSS
   Página Inicial do Portfólio
================================================== */


/* Reset global */

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


/* Corpo da página */

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at left, rgba(37, 99, 235, 0.20), transparent 35%), radial-gradient(circle at right bottom, rgba(56, 189, 248, 0.18), transparent 35%), #020617;
    color: #f8fafc;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}


/* Rodapé, caso seja usado */

footer {
    text-align: center;
    padding: 30px;
    color: #64748b;
}


/* Elementos decorativos de fundo */

.background {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}


/* Glow azul superior esquerdo */

.bg1 {
    top: -100px;
    left: -100px;
    background: rgba(37, 99, 235, 0.35);
}


/* Glow azul inferior direito */

.bg2 {
    bottom: -100px;
    right: -100px;
    background: rgba(56, 189, 248, 0.25);
}


/* Container principal */

.container {
    text-align: center;
    padding: 40px 24px;
}


/* Imagem antiga de perfil, caso volte a ser usada */

.profile-img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(56, 189, 248, 0.75);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.8), 0 0 60px rgba(37, 99, 235, 0.45);
    margin-bottom: 24px;
    transition: 0.3s ease;
}


/* Hover da imagem antiga */

.profile-img:hover {
    transform: scale(1.05);
}


/* Nome principal */

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.18);
}


/* Textos introdutórios */

p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}


/* Área dos botões antigos de navegação */

.home-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}


/* Botões antigos de navegação */

.home-btn {
    min-width: 140px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.45);
    background: rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: 0 0 14px rgba(37, 99, 235, 0.12);
}


/* Hover dos botões antigos */

.home-btn:hover {
    transform: translateY(-3px);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.4), 0 0 35px rgba(37, 99, 235, 0.25);
}


/* Botão principal de entrada */

.status-btn {
    width: min(540px, 90%);
    margin: 36px auto 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.7);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.28));
    color: #f8fafc;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35), inset 0 0 18px rgba(56, 189, 248, 0.08);
    transition: 0.3s ease;
}


/* Hover do botão principal */

.status-btn:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.65), 0 0 50px rgba(37, 99, 235, 0.35), inset 0 0 24px rgba(56, 189, 248, 0.12);
}


/* Ponto verde de estado */

.dot {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border-radius: 50%;
    background: #15fa15;
    box-shadow: 0 0 10px #15fa20, 0 0 24px rgba(21, 250, 71, 0.95);
    animation: dotPulse 2s infinite;
}


/* Seta do botão */

.arrow {
    font-size: 1.5rem;
    color: #38bdf8;
    transition: 0.3s ease;
}


/* Movimento da seta no hover */

.status-btn:hover .arrow {
    transform: translateX(6px);
}


/* Container das imagens de avatar */

.avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 35px;
}


/* Estilo base dos avatares */

.avatar {
    position: absolute;
    inset: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #38bdf8;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
}


/* Imagem alternativa escondida inicialmente */

.avatar-hover {
    opacity: 0;
}


/* Esconde avatar principal no hover */

.avatar-wrapper:hover .avatar-main {
    opacity: 0;
    transform: scale(0.95);
}


/* Mostra avatar alternativo no hover */

.avatar-wrapper:hover .avatar-hover {
    opacity: 1;
    transform: scale(1.05);
}


/* Animação do ponto verde */

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ==================================================
   MOBILE - INDEX
================================================== */

@media (max-width: 768px) {
    /* Usa altura dinâmica em mobile */
    body {
        min-height: 100dvh;
        overflow: hidden;
    }
    /* Centraliza o conteúdo no ecrã */
    .container {
        width: 100%;
        min-height: 100dvh;
        padding: 0 22px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateY(-25px);
    }
    /* Reduz avatar em mobile */
    .avatar {
        width: 115px;
        height: 115px;
        margin-bottom: 28px;
    }
    /* Título responsivo */
    h1 {
        font-size: clamp(2.7rem, 11vw, 4rem);
        line-height: 1.05;
        margin-bottom: 24px;
        white-space: nowrap;
    }
    /* Subtítulo, caso uses esta classe */
    .subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }
    /* Descrição, caso uses esta classe */
    .description {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 36px;
    }
    /* Botão principal maior em mobile */
    .enter-btn,
    .status-btn {
        width: 100%;
        max-width: 590px;
        min-height: 78px;
        font-size: 1.05rem;
        border-radius: 40px;
    }
}


/* ==================================================
   NOTA
==================================================

No teu ficheiro original havia duas chavetas finais extra:

}

}

Foram removidas nesta versão comentada.
================================================== */