/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050509;
    color: #f5f5f5;
    line-height: 1.6;
}

/* =========================
   TOPO / HEADER
========================= */
.topo {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7vw;
    background: rgba(5, 5, 9, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #00ff99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.logo-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.menu {
    display: flex;
    gap: 1.5rem;
}

.menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #00ff99;
    transition: width 0.2s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */
main {
    padding: 2rem 7vw 3rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    min-height: calc(100vh - 70px);
}

.hero-texto h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-texto p {
    max-width: 480px;
    color: #c7c7c7;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.hero-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primario {
    background: #00ff99;
    color: #050509;
    font-weight: 600;
}

.btn.primario:hover {
    filter: brightness(1.1);
}

.btn.secundario {
    border-color: #00ff99;
    color: #00ff99;
}

.btn.secundario:hover {
    background: rgba(0, 255, 153, 0.08);
}

/* FOTO HERO */
.hero-foto {
    display: flex;
    justify-content: center;
}

.foto-perfil {
    width: 220px;
    height: 220px;
    border-radius: 30px;
    border: 2px solid #00ff99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #101525, #050509);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9f9f9f;
}

/* =========================
   SEÇÕES GENÉRICAS
========================= */
.bloco {
    margin-top: 3rem;
}

.bloco h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.bloco p {
    color: #d0d0d0;
}

/* SKILLS */
.grid-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.card-skill {
    border-radius: 999px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
}

/* PROJETOS */
.grid-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.card-projeto {
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.card-projeto h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-projeto p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #cfcfcf;
}

.link-projeto {
    font-size: 0.85rem;
    text-decoration: none;
    color: #00ff99;
}

/* CONTATO */
.lista-contato {
    list-style: none;
    margin-top: 0.8rem;
}

.lista-contato li+li {
    margin-top: 0.3rem;
}

/* RODAPÉ */
.rodape {
    padding: 1.2rem 7vw;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.8rem;
    color: #a0a0a0;
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 768px) {
    .topo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .menu {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-foto {
        order: -1;
        margin-bottom: 1rem;
    }

    main {
        padding: 1.5rem 5vw 2.5rem;
    }
}

/* =========================
   MENU HAMBÚRGUER (BASE)
========================= */
.topo {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7vw;
    background: rgba(5, 5, 9, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* menu desktop padrão */
.menu {
    display: flex;
    gap: 1.5rem;
}

.menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    position: relative;
}

/* BOTÃO HAMBÚRGUER - some no desktop */
.menu-toggle {
    display: none;
    width: 36px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #f5f5f5;
    transition: 0.25s ease;
}

/* animação X */
.menu-toggle.aberto span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.aberto span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.aberto span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.foto-perfil {
    width: 220px;
    height: 220px;
    border-radius: 30px;
    border: 2px solid #00ff99;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* IMPORTANTE para imagem ficar dentro do quadrado */
    background: radial-gradient(circle at top, #101525, #050509);
}

.foto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* preenche sem distorcer */
}

/* Barra de progresso do scroll */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    /* espessura da barra */
    width: 0;
    /* começa em 0, o JS aumenta */
    background: #00ff99;
    /* cor da barra */
    z-index: 9999;
    /* fica por cima de tudo */
    box-shadow: 0 0 12px rgba(0, 255, 153, 0.7);
    transition: width 0.12s linear;
}

/* BOTÃO FLUTUANTE (pequeno e fixo) */
.floating-btn {
    position: fixed;
    bottom: 22px;
    /* distância do rodapé */
    right: 22px;
    /* distância da lateral */
    width: 55px;
    /* tamanho pequeno */
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    border: 2px solid #00ff99;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: pointer;
    transition: 0.25s ease;
}

.floating-btn img {
    width: 60%;
    /* mantém pequeno */
    height: 60%;
    object-fit: cover;
    border-radius: 50%;
}

/* animação ao passar o mouse (desktop) */
.floating-btn:hover {
    transform: scale(1.10);
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
}

/* Esconde blocos com .hidden (já deve existir por causa dos certificados, mas garanto) */
.hidden {
    display: none;
}

/* Botão de toggle (Design Gráfico, Certificados etc.) */
.toggle-btn {
    margin-top: 1.2rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 9, 0.9);
    color: #f5f5f5;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Seta do botão */
.toggle-btn .arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Classe usada no JS para girar a seta quando abrir */
.toggle-btn .arrow.rot {
    transform: rotate(180deg);
}

/* Grade de artes (galeria) */
.artes-grid {
    margin-top: 1.2rem;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.arte {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arte img {
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* LISTA DE CERTIFICADOS */
.certificados-lista {
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.certificados-lista li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(4px);
}

/* BOTÃO DE DOWNLOAD */
.cert-btn {
    background: #00ff99;
    color: #000;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.25s ease;
    white-space: nowrap;
}

.cert-btn:hover {
    background: #00ffaa;
    transform: scale(1.05);
}

/* CONTAINER DAS BARRAS */
#progresso {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* CARD DE CADA BARRA */
.progress {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.9rem;
}

/* TÍTULO / LABEL DA BARRA */
.progress label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: #f3f3f3;
}

/* BARRA BASE */
.progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

/* PREENCHIMENTO DA BARRA */
.progress-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    width: inherit;
    /* o width inline controla o tamanho */
    background: linear-gradient(90deg, #00ff99, #00f7ff);
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.6);
}

/* PORCENTAGEM: se quiser mostrar */
.progress-bar::after {
    content: attr(data-pct);
    position: absolute;
    right: 8px;
    top: -18px;
    font-size: 0.75rem;
    color: #bfffe7;
}

/* ================================
   HERO — SOBRE MIM
================================ */
#hero {
    text-align: center;
    padding: 4rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.3s ease;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #00ff99;
    box-shadow: 0 0 12px rgba(0, 255, 153, 0.4);
    margin-bottom: 1.2rem;
    transition: .3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.7);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: .3rem;
}

.hero-description {
    font-size: 1.1rem;
    opacity: .9;
}

#hero ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

#hero ul li {
    margin-bottom: .3rem;
    opacity: .8;
}

.hero-button {
    background: linear-gradient(90deg, #00ff99, #00e0ff);
    padding: .8rem 2.3rem;
    border-radius: 30px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: .2s ease;
    box-shadow: 0 0 12px rgba(0, 255, 153, 0.5);
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 255, 153, 0.8);
}

/* ================================
   SOBRE — FORMAÇÃO / CURRÍCULOS
================================ */
#sobre {
    padding: 2rem 1.3rem 4rem;
}

#sobre .container {
    max-width: 850px;
    margin: auto;
}

#sobre p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .9;
}

.section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.section ul li {
    margin-bottom: .6rem;
}

.section .button {
    padding: .6rem 1.3rem;
    background: #00ff99;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: .2s ease;
    display: inline-block;
}

.section .button:hover {
    transform: scale(1.05);
    background: #00ffaa;
}

/* ===============================
   HABILIDADES (HARD SKILLS)
   =============================== */

.hard-skills {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    background: var(--card-bg, rgba(255,255,255,0.05));
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
}

.hard-skills h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.hard-skills h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    color: var(--accent, #ff3c6a);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hard-skills ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.hard-skills ul li {
    background: rgba(255,255,255,0.05);
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent, #ff3c6a);
    font-size: 1.05rem;
    color: var(--text-color, #f1f1f1);
    transition: 0.3s ease;
}

.hard-skills ul li:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(6px);
}

/* Título principal da página */
.pagina-unica h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hard-skills {
        padding: 20px;
    }

    .hard-skills h2 {
        font-size: 1.7rem;
    }

    .hard-skills h3 {
        font-size: 1.2rem;
    }

    .hard-skills ul li {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

/* ===============================
   ÁRVORE DE HABILIDADES
   =============================== */

.skills-tree {
    max-width: 950px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(0,255,153,0.12), transparent 55%);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(7px);
}

.skills-tree h2 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 2rem;
}

.tree-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* nó principal */
.tree-node {
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(0,255,153,0.6);
    box-shadow: 0 0 16px rgba(0,255,153,0.4);
    position: relative;
    z-index: 2;
}

.tree-node-main {
    font-size: 1.3rem;
    margin-bottom: 2.2rem;
}

/* linha vertical que desce do nó principal */
.tree-root::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 55px;
    background: linear-gradient(to bottom, #00ff99, transparent);
    top: 2.8rem; /* logo abaixo do main */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

/* container dos 3 ramos */
.tree-branches {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.8rem;
    position: relative;
    padding: 1rem 0 0;
}

/* linha horizontal conectando as colunas */
.tree-branches::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00ff99, transparent);
    opacity: 0.5;
}

/* cada coluna da árvore */
.tree-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* nó de cada ramo (Front-End, Back-End, etc.) */
.tree-column .tree-node {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

/* listas de cada ramo */
.tree-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    width: 100%;
}

.tree-column ul li {
    font-size: 0.95rem;
    padding: 0.45rem 0.6rem;
    margin: 0.2rem 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: 0.25s ease;
}

.tree-column ul li:hover {
    transform: translateY(-3px);
    background: rgba(0,255,153,0.12);
    border-color: #00ff99;
}

/* cores levemente diferentes pra cada ramo (opcional) */
.tree-node-front {
    border-color: #00ff99;
}

.tree-node-back {
    border-color: #00e0ff;
}

.tree-node-tools {
    border-color: #ff3c6a;
}

/* Responsivo da árvore */
@media (max-width: 900px) {
    .tree-branches {
        flex-direction: column;
        align-items: stretch;
    }

    .tree-branches::before {
        display: none;
    }

    .tree-root::after {
        height: 35px;
    }

    .tree-column {
        margin-bottom: 1.5rem;
    }

    .tree-column ul li {
        font-size: 0.9rem;
    }
}


/* ================================
   SOFTwares
================================ */
#softwares {
    margin-top: 1.5rem;
}

#softwares .container {
    max-width: 1000px;
    margin: 0 auto;
}

.software-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.software-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
    transition: 0.25s ease;
}

.software-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.software-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.software-item a {
    align-self: flex-start;
    font-size: 0.9rem;
    text-decoration: none;
    color: #00ff99;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(0, 255, 153, 0.5);
    background: rgba(0, 0, 0, 0.5);
    transition: 0.25s ease;
}

.software-item:hover {
    transform: translateY(-4px);
    border-color: #00ff99;
    box-shadow: 0 0 18px rgba(0, 255, 153, 0.25);
}

.software-item a:hover {
    background: #00ff99;
    color: #000;
    box-shadow: 0 0 14px rgba(0, 255, 153, 0.6);
}

/* ================================
   PANDORA
================================ */
#pandora {
    margin-top: 1.8rem;
}

.pandora-container {
    max-width: 900px;
    margin: 0 auto;
}

.pandora-container h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.pandora-container p {
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.9;
}

.pandora-wrapper {
    margin: 1.2rem 0;
    display: flex;
    justify-content: center;
}

.pandora-wrapper img {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 22px rgba(0, 255, 153, 0.18);
}

/* lista de features (Pandora e BabyCare compartilham) */
.features {
    list-style: none;
    padding-left: 0;
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.4rem 1.2rem;
}

.features li {
    font-size: 0.95rem;
    opacity: 0.95;
    position: relative;
    padding-left: 1.3rem;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff99;
}

/* ================================
   BABYCARE
================================ */
#app-para-pais-separados {
    margin-top: 2rem;
}

#app-para-pais-separados .container {
    max-width: 900px;
    margin: 0 auto;
}

#app-para-pais-separados h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

#app-para-pais-separados p {
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* vídeo responsivo */
.video-wrapper {
    margin-top: 1.1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 22px rgba(0, 255, 153, 0.18);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.software-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
    transition: 0.25s ease;
}

.software-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

#softwares {
    margin-top: 1.5rem;
}

#softwares .container {
    max-width: 1000px;
    margin: 0 auto;
}

.software-item:hover {
    transform: translateY(-4px);
    border-color: #00ff99;
    box-shadow: 0 0 18px rgba(0, 255, 153, 0.25);
}

/* ===== CONTATO ===== */
#contato {
    width: 100%;
    padding: 50px 20px;
    text-align: center;
}

#contato h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#contato p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contato-container {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 400px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg, #f2f2f2);
    padding: 15px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.07);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent, #ff3c6a);
    min-width: 35px;
}

.contact-item a {
    text-decoration: none;
    color: var(--text-color, #222);
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: var(--hover-bg, #ffffff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:hover a {
    color: var(--accent, #ff3c6a);
}

/* Botão flutuante */
.floating-btn img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    #contato h1 {
        font-size: 2rem;
    }

    .contact-item {
        padding: 12px 15px;
    }

    .contact-item i {
        font-size: 1.6rem;
    }

    .contact-item a {
        font-size: 1rem;
    }
}



/* ===============================
   LINHA DO TEMPO — CERTIFICADOS
   =============================== */

.timeline {
    position: relative;
    margin-top: 2rem;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(255,255,255,0.12);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.2rem 0 0.6rem;
    color: #00ff99;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -0.95rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff99;
    box-shadow: 0 0 10px rgba(0,255,153,0.7);
}

.timeline-content {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.8rem 1rem;
    backdrop-filter: blur(4px);
}

.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}

.timeline-content small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* BADGES */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.badge-curso {
    background: rgba(0,255,153,0.18);
    color: #00ff99;
}

.badge-evento {
    background: rgba(0,224,255,0.18);
    color: #00e0ff;
}

.badge-estagio {
    background: rgba(255,60,106,0.18);
    color: #ff3c6a;
}

/* Responsivo */
@media (max-width: 700px) {
    .timeline {
        padding-left: 1.7rem;
    }

    .timeline-item {
        padding-left: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 0.95rem;
    }

    .timeline-content p,
    .timeline-content small {
        font-size: 0.8rem;
    }
}

.intranet-btn {
    background: #1e293b;
    color: #fff;
    border: 2px solid #22c55e;
    transition: .3s;
}

.intranet-btn:hover {
    background: #22c55e;
    color: #0f172a;
    border-color: #22c55e;
}
