/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --color-bg: #000000;
    --color-white: #ffffff;
    --color-accent: #00E6BC;
    --color-accent-dark: #00CCA7;
    --color-accent-dim: #00997D;
    --color-purple: #3A0077;
    --color-text-muted: #B0B0B0;
    --color-text-light: #E6E6E6;
    --color-text-footer: #C2B0D5;
    --color-border: #595959;
    --color-border-light: #D9FFF8;
    --color-border-nav: #00FFD1;

    --font-family: 'Roboto', sans-serif;

    --max-width: 1440px;
    --page-padding: 64px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-family);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

hr {
    border: none;
}

/* ============================================================
   UTILITIES
============================================================ */
.text-accent {
    color: var(--color-accent);
}

.font-semibold {
    font-weight: 600;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-family);
    transition: opacity 0.2s ease;
}


.btn--outline {
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent);
    font-size: 20px;
    background: transparent;
    cursor: pointer;

    /* TRAVA O TAMANHO: Ajuste esses valores conforme o tamanho do seu texto */
    width: 240px;
    /* Define uma largura fixa */
    height: 50px;
    /* Define uma altura fixa */

    /* Garante que o texto fique centralizado dentro do espaço travado */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove o padding que causava o "pulo" */

    transition: background 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.btn--outline:hover {
    background: var(--color-accent);
    color: #ffffff;
    font-size: 23px;
    /* O texto cresce, mas o botão obedece o width/height fixos */
}

.page-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    padding-top: 120px;
    /* Aumente este valor (ex: de 96px para 120px) para compensar a navbar fixa */
    padding-bottom: 96px;
}

/* ============================================================
   NAVBAR
============================================================ */
/* ============================================================
   NAVBAR (AJUSTADA)
============================================================ */
.navbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    /* Mantém um respiro embaixo da barra branca */
    position: fixed;
    /* Garante que o menu acompanhe a rolagem */
    top: 0;
    left: 0;
    z-index: 1000;

    /* SOLUÇÃO: Fundo preto para esconder o conteúdo que passa por baixo */
    background-color: #000000;

}

.navbar {
    pointer-events: auto;
    display: flex;
    /* Mudamos de inline-flex para flex */
    align-items: center;
    justify-content: space-between;
    /* Isso joga os itens para as extremidades */

    width: 90%;
    /* Ou o valor fixo que você definiu, ex: 1200px */
    max-width: 1440px;
    /* Garante que não estique infinito em telas gigantes */
    height: 63px;
    padding: 0 48px;
    /* Espaçamento interno nas pontas */

    background: var(--color-white);
    border-radius: 999px;
    border-bottom: 2px solid var(--color-border-nav);
}

.navbar__lang {
    font-size: 16px;
    display: flex;
    gap: 4px;
    white-space: nowrap;
}

.lang-pt {
    color: #000;
    font-weight: 400;
}

.lang-en {
    color: var(--color-accent);
    font-weight: 500;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 16px;
}

.nav-link {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: color 0.2s;
}

/* No seu styles.css, verifique se está assim: */
/* Localize estas classes no seu styles.css e deixe-as assim */
/* No seu styles.css */
.nav-link:hover,
.nav-link--active {
    color: var(--color-accent-dim) !important;
    text-decoration: underline !important;
    font-weight: 700;
    /* Para dar aquele peso de UX de 'você está aqui' */
}

.theme-toggle {
    width: 31px;
    height: 31px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    padding: 0;
}

.theme-toggle:hover svg {
    stroke: var(--color-accent);
    transition: stroke 0.2s;
}

.theme-toggle svg {
    width: 22px;
    height: 22px;

}

.theme-toggle svg:hover {
    transition: stroke 0.2s;
}

.lang-pt,
.lang-en {
    cursor: pointer;
    transition: color 0.2s;
}

.lang-pt:hover {
    color: var(--color-accent);
}

.lang-en:hover {
    color: #000;
}

/* ============================================================
   PAGE CONTENT WRAPPER
============================================================ */
.page-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    padding-top: 96px;
    padding-bottom: 96px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding-top: 16px;
    width: var(--max-width);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
}

/* Left: photo column */
.hero__left {
    flex-shrink: 0;
    width: 589px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__photo-wrapper {
    position: relative;
    width: 589px;
}

.hero__photo {
    width: 589px;
    height: 631px;
    object-fit: cover;
}

.hero__role-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background: transparent;
}

.role-text {
    color: var(--color-white);
    font-size: 35px;
    font-weight: 600;
    white-space: nowrap;
}

.hero__cta-photo {
    font-size: 23px;
    padding: 10px 32px;
}

/* Right: text column */
.hero__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero__greeting {
    color: var(--color-bg);
    /* Garante que o fundo da letra seja a cor do fundo do site */
    text-shadow:
        -1px -1px 0 var(--color-accent),
        1px -1px 0 var(--color-accent),
        -1px 1px 0 var(--color-accent),
        1px 1px 0 var(--color-accent);
    font-size: 140px;
    font-weight: 400;
    line-height: 1;
    width: 824px;
}

.hero__name {
    color: var(--color-bg);
    text-shadow:
        -1px -1px 0 var(--color-white),
        1px -1px 0 var(--color-white),
        -1px 1px 0 var(--color-white),
        1px 1px 0 var(--color-white);
    font-size: 173px;
    font-weight: 400;
    line-height: 1;
    width: 824px;
    padding-bottom: 4px;
}

.hero__bio {
    width: 824px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.hero__bio p {
    font-size: 25px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
}

.hero__social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity 0.2s;
}

.social-icon:hover svg {
    stroke: var(--color-accent);
    opacity: 1;
}

.social-icon svg {
    width: 38px;
    height: 38px;
}

/* ============================================================
   DIVIDER
============================================================ */
.section-divider {
    width: var(--max-width);
    height: 1px;
    background: #181818;
}

/* ============================================================
   QUOTE
============================================================ */
.quote-section {
    width: 1298px;
    display: flex;
    justify-content: flex-start;
}

.quote {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote__text {
    color: var(--color-text-light);
    font-size: 39px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.quote__author {
    color: var(--color-accent);
    font-size: 31px;
    font-weight: 400;
    font-style: normal;
}

/* ============================================================
   PORTFOLIO SECTION
============================================================ */
.portfolio-section {
    width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: 33px;
    align-items: flex-start;
}

.section-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--color-white);
}

.portfolio-grid {
    width: var(--max-width);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 48px;
    overflow: hidden;
    background: var(--color-white);
    gap: 0px;
}

.portfolio-grid__item {
    width: 100%;
    height: 404px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-grid__item:hover {
    transform: scale(1.08);
}

.portfolio-grid__cell {
    overflow: hidden;
}

.portfolio-grid__item {
    width: 100%;
    height: 404px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ============================================================
   SOCIAL HIGHLIGHTS
============================================================ */
.social-highlights-section {
    width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.social-highlights {
    width: var(--max-width);
    display: flex;
    align-items: center;
    gap: 57px;
}

/* Quando passa o mouse, fica igual ao ativo */
.highlight-item:hover {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Estado ativo (que o JS já controla) */
.highlight-item--active {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
}

/* Post Card */
.post-card {
    width: 514px;
    height: 830px;
    /* altura fixa — ajuste esse valor se quiser */
    flex-shrink: 0;
    background: #000;
    border-radius: 24px;
    border: 1.5px solid var(--color-border);
    padding: 40px 37px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    /* garante que nada vaze se o texto for longo */
}

.post-card__header {
    display: flex;
    align-items: center;
    gap: 23px;
}

.post-card__avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 0.26px solid var(--color-accent);
    object-fit: cover;
    flex-shrink: 0;
}

.post-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-card__name-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-card__name {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
}

.post-card__check {
    width: 20px;
    height: 16px;
    flex-shrink: 0;
}

.post-card__platform {
    color: var(--color-text-muted);
    font-size: 20px;
    font-weight: 400;
}

.post-card__text {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.5;
}

.post-card__link {
    text-decoration: underline;
    color: var(--color-white);
}

.post-card__image {
    width: 100%;
    flex: 1;
    /* ocupa todo o espaço restante do card */
    min-height: 0;
    /* necessário pro flex funcionar com imagens */
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Highlights List */
.highlights-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.highlights-list__title {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
}

.highlights-list__divider {
    height: 1px;
    background: var(--color-border);
    width: 100%;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-item__label {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
}

.highlight-item__platform {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
}

.highlight-item--active .highlight-item__label,
.highlight-item--active .highlight-item__platform {
    color: var(--color-accent);
}

/* ============================================================
   RESUME SECTION
============================================================ */
.resume-section {
    width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.resume-grid {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.resume-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resume-column__title {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 500;
}

.resume-column__divider--top {
    height: 0.5px;
    background: var(--color-border);
    width: 100%;
}

.resume-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.resume-item:hover .resume-item__role {
    color: var(--color-accent);
    text-decoration: underline;
}

.resume-item:hover .resume-item__description {
    color: var(--color-accent);
}

.resume-item:hover .resume-item__date {
    color: var(--color-accent);
}

.resume-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resume-item__role {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
}

.resume-item__description {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
}

.resume-item__date {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.resume-item__divider {
    height: 1px;
    background: var(--color-border);
    width: 100%;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
    width: 592px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.cta-section__text {
    font-size: 31px;
    font-weight: 400;
    color: #EBE6F1;
    line-height: 1.4;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 88px;
    padding: 14px 48px;
    border: 0.5px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 400;
    transition: background 0.2s ease;
}

.footer__link:hover {
    /* O código #B0FFF1 (do seu print) + 38 (que representa 22%) */
    background: #B0FFF138;
    color: #B0FFF1;
    /* Mantém o texto com 100% de cor para melhor leitura */
}

.footer__link-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.87px solid var(--color-accent);
    flex-shrink: 0;
    padding: 6px;
}

.footer__link-icon svg {
    width: 24px;
    height: 24px;
}

.footer__bottom {
    width: 100%;
    padding: 65px 103px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(102, 102, 102, 0) 57%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer__credits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.footer__name {
    color: var(--color-accent-dark);
    font-size: 25px;
    font-weight: 600;
}

.footer__roles {
    color: var(--color-text-footer);
    font-size: 20px;
    font-weight: 400;
}

.footer__email {
    color: var(--color-accent-dark);
    font-size: 25px;
    font-weight: 400;
}

.footer__copyright {
    color: var(--color-text-footer);
    font-size: 20px;
    font-weight: 400;
}