@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background-color: #000000;
    color: #F6F6F6;
    font-family: "Montserrat", sans-serif;
}

/* ===== CABEÇALHO ===== */
.cabecalho {
    padding: 20px 15%;
    background-color: #000000;
}

.cabecalho__menu {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cabecalho__menu__link {
    text-decoration: none;
    color: #F6F6F6;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.cabecalho__menu__link:hover {
    background-color: #22D4FD;
    color: #000000;
}

/* Botão do Currículo destacado */
.cabecalho__menu__link.destaque {
    background-color: #22D4FD;
    color: #FFFFFF;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 12px;
}

.cabecalho__menu__link.destaque:hover {
    background-color: #22D4FD;
    color: #000000;
}

/* ===== APRESENTAÇÃO / HOME ===== */
.apresentacao {
    padding: 5% 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.apresentacao__conteudo {
    width: 100%;
    max-width: 615px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apresentacao__conteudo__titulo {
    font-size: 36px;
    font-family: "Krona One", sans-serif;
}

.titulo-destaque {
    color: #22D4FD;
}

.apresentacao__conteudo__texto {
    font-size: 24px;
}

.apresentacao__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.apresentacao__links__subtitulo {
    font-family: "Krona One", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.apresentacao__links__link {
    display: flex;
    justify-content: center;
    gap: 16px;
    border: 2px solid #22D4FD;
    width: 100%;
    max-width: 378px;
    text-align: center;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    padding: 21.5px 0;
    text-decoration: none;
    color: #F6F6F6;
    transition: 0.3s;
}

.apresentacao__links__link:hover {
    background-color: #22D4FD;
    color: #000000;
}

/* ===== PÁGINA SOBRE / CURRÍCULO ===== */
.sobre-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    gap: 20px;
}

.sobre-foto {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #22D4FD;
    box-shadow: 0 0 20px #22D4FD;
}

.sobre-nome {
    font-family: "Krona One", sans-serif;
    font-size: 32px;
    color: #22D4FD;
}

.sobre-titulo {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #22D4FD;
    margin-bottom: 40px;
}

.sobre-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.sobre-card {
    background-color: #111;
    border: 1px solid #22D4FD;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(34, 212, 253, 0.3);
    text-align: left;
}

.sobre-card h3 {
    font-size: 20px;
    color: #22D4FD;
    margin-bottom: 10px;
}

.sobre-card ul {
    list-style: none;
    padding: 0;
}

.sobre-card ul li {
    margin: 8px 0;
    font-size: 16px;
    color: #F6F6F6;
}

/* ===== RODAPÉ ===== */
.rodape {
    padding: 24px;
    color: #000000;
    background-color: #22D4FD;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .apresentacao {
        flex-direction: column-reverse;
        margin: 5%;
        text-align: center;
    }

    .apresentacao__conteudo {
        width: 100%;
    }

    .apresentacao__links__link {
        width: 100%;
    }

    img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .cabecalho__menu {
        flex-direction: column;
        text-align: center;
    }

    .sobre-cards {
        flex-direction: column;
        gap: 20px;
    }
}






