@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

/* ===== BODY (GLOBAL) ===== */
body {
    font-family: "Montserrat", sans-serif;
    background-color: #000102;
    color: #ffffff;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('imagens/1.jpeg');
    background-size: cover;
    background-position: center;
}

/* ===== CONTAINER (CARD PRINCIPAL) ===== */
.container {
    background-color: rgba(18, 18, 18, 0.95);
    border-radius: 20px;
    padding: 28px 22px;
    width: 720px;
    max-width: 92%;
    text-align: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* ===== FOTO (INDEX) ===== */
.profile {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

/* ===== TÍTULOS ===== */
h1 {
    margin: 10px 0 6px;
    font-size: 1.4em;
    font-weight: 700;
}

h2 {
    margin: 0;
    font-size: 0.95em;
    font-weight: 600;
}

.subtitle {
    margin: 18px 0 25px;
    font-size: 0.85em;
    font-weight: 400;
    line-height: 1.4;
}

/* ===== BOTÕES / LINKS (PADRÃO LINKTREE) ===== */
.link,
.project-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    background-color: #1e1e1e;
    padding: 14px 18px;
    border-radius: 14px;
    margin: 14px 0;

    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.25s ease;
}

.link img {
    width: 28px;
    height: 28px;
}

/* ===== HOVER ===== */
.link:hover,
.project-card a:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

/* ===== DESABILITADO ===== */
.link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.link.disabled:hover {
    background-color: #1e1e1e;
    transform: none;
}

/* ===== PROJETOS ===== */
.project-card {
    margin-top: 10px;
}

.project-card h3 {
    font-size: 1.05em;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.85em;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* ===== VOLTAR ===== */
.back {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8em;
    opacity: 0.85;
    text-decoration: none;
}

/* ===== RESET FINAL DE LINKS ===== */
a,
a:visited,
a:active,
a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ===== GRID DE PROJETOS ===== */
.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
