@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #2e1a4d 40%, #1a1a2e 70%, #2e1a4d 100%);
    background-attachment: fixed;
    color: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.logo img { height: 50px; }

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li {
    position: relative;
    padding: 10px 20px;
    font-size: 1.5em;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.nav-links li:hover {
    transform: translateY(-5px);
    color: #ffcc70;
}

.nav-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ffcc70 0%, #cbb4ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links li:hover::after { transform: scaleX(1); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #ffcc70;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
main { margin-top: 90px; }

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(203, 180, 255, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 204, 112, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(203, 180, 255, 0.09) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

@keyframes heroGlow {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

/* Partículas */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFade var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes particleFade {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    30%  { opacity: 0.55; }
    70%  { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(-130px) scale(1.3); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffcc70;
    animation: flutuar 4s ease-in-out infinite;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.btn-curriculo {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffcc70;
    color: #202020;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-curriculo:hover {
    background: #fff;
    color: #2e1a4d;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(203,180,255,0.4);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    box-shadow: 3px 3px 3px black;
    color: inherit;
    transition: all 0.3s ease;
}

.social-buttons a:hover {
    background-color: #ffcc70;
    color: #202020;
    transform: translateY(-3px) scale(1.1);
}

/* ===== SOBRE ===== */
.sobre-section {
    padding: 80px 20px 100px;
    width: 90%;
    margin: auto;
}

.sobre-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    text-align: center;
}

.sobre-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffcc70;
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

strong {
    color: #ffcc70;
    font-weight: 600;
}

.foto-perfil img {
    margin-top: 80px;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    box-shadow: 0 5px 30px rgba(203, 180, 255, 0.2), 0 5px 15px rgba(0,0,0,0.5);
    animation: flutuar 4s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.foto-perfil img:hover {
    box-shadow: 0 8px 40px rgba(255, 204, 112, 0.3), 0 5px 20px rgba(0,0,0,0.5);
}

/* ===== FORMAÇÃO ===== */
.formacao-section {
    padding: 60px 20px;
    text-align: center;
    margin: 50px auto;
}

.formacao-section h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffcc70;
}

.formacao-section .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.formacao-section .card {
    background: rgba(255,255,255,0.07);
    padding: 20px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: glow 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.06);
}

.formacao-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(203, 180, 255, 0.2);
}

.formacao-section .card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: #d4be91;
}

.formacao-section .card p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 300;
}

.btn-certificado {
    margin-top: 10px;
    padding: 8px 15px;
    background: #cbb4ff;
    color: #202020;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-certificado:hover {
    background: #ffcc70;
    transform: translateY(-2px);
}

/* ===== EXPERIÊNCIA ===== */
.experiencia-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.experiencia-section h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffcc70;
}

.timeline {
    position: relative;
    padding-left: 30px;
    text-align: left;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ffcc70 0%, #cbb4ff 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffcc70;
    border: 3px solid #1a1a2e;
    box-shadow: 0 0 10px rgba(255, 204, 112, 0.7);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot { transform: scale(1.3); }

.timeline-content {
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: glow 3s ease-in-out infinite;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(203, 180, 255, 0.2);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.timeline-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffcc70;
}

.timeline-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timeline-badge.atual {
    background: rgba(203, 180, 255, 0.2);
    color: #cbb4ff;
    border: 1px solid #cbb4ff;
}

.empresa {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 6px;
}

.tipo-contrato {
    font-weight: 300;
    color: #aaa;
}

.periodo {
    font-size: 0.88rem;
    color: #aaa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 300;
}

.periodo i {
    color: #ffcc70;
    font-size: 0.85rem;
}

.descricao {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 16px;
    font-weight: 300;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    background: rgba(255, 204, 112, 0.12);
    color: #ffcc70;
    border: 1px solid rgba(255, 204, 112, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== TECNOLOGIAS ===== */
.tecnologias-section {
    padding: 60px 20px;
    text-align: center;
}

.tecnologias-section h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffcc70;
}

.tecnologias-section .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tecnologias-section .card {
    background: rgba(255,255,255,0.07);
    padding: 18px 15px;
    border-radius: 15px;
    width: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: glow 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: default;
}

.tecnologias-section .card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 28px rgba(203, 180, 255, 0.2);
}

.tecnologias-section .card i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s, color 0.3s;
}

.tecnologias-section .card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #ffcc70;
}

.tecnologias-section .card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.card i.fab.fa-html5 { color: #e34c26; }
.card i.fab.fa-css3-alt { color: #264de4; }
.card i.fab.fa-js-square { color: #f0db4f; }
.card i.fab.fa-php { color: #8892be; }
.card i.fab.fa-node-js { color: #68a063; }
.card i.fas.fa-database { color: #f29111; }
.card i.fab.fa-git-alt { color: #f1502f; }

/* ===== PROJETOS ===== */
.projetos-section {
    padding: 60px 20px;
    text-align: center;
}

.projetos-section h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffcc70;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    margin-top: 40px;
}

.project-card {
    background: rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: glow 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.06);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(203, 180, 255, 0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.project-card:hover img { transform: scale(1.07); }

.project-info { padding: 18px; }

.project-info h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffcc70;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.project-info p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 12px;
    font-weight: 300;
}

.tech-icons {
    margin-bottom: 4px;
}

.tech-icons i {
    font-size: 1.5rem;
    margin: 0 8px 8px 0;
    color: #ffcc70;
    transition: transform 0.3s, color 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.project-card:hover .tech-icons i {
    transform: scale(1.3) rotate(10deg);
    color: #cbb4ff;
}

.project-info .tech-icons i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    cursor: pointer;
}

.project-info .tech-icons i.fab.fa-html5 { color: #e34c26; }
.project-info .tech-icons i.fab.fa-css3-alt { color: #264de4; }
.project-info .tech-icons i.fab.fa-js-square { color: #f0db4f; }
.project-info .tech-icons i.fab.fa-node-js { color: #68a063; }
.project-info .tech-icons i.fas.fa-database { color: #f29111; }
.project-info .tech-icons i.fab.fa-git-alt { color: #f1502f; }

.project-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-links a {
    display: inline-block;
    padding: 8px 16px;
    background: #202020;
    color: #ffcc70;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.project-links a:hover {
    background: #ffcc70;
    color: #202020;
    transform: translateY(-3px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
}

/* ===== FOOTER ===== */
.footer {
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-container { max-width: 900px; margin: auto; }
.footer-top h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #ffcc70; }
.footer-top p { font-size: 16px; margin-bottom: 20px; color: #ccc; font-weight: 300; }

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-form .input-group {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.footer-form .input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffcc70;
    font-size: 16px;
}

.footer-form .input-group input,
.footer-form .input-group textarea {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background-color: #1a1a2e;
    color: #d4be91;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s;
}

.footer-form .input-group input:focus,
.footer-form .input-group textarea:focus { border: 2px solid #ffcc70; }

.footer-form textarea { resize: none; }

.footer-form button {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    background: #ffcc70;
    color: #1a1a2e;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-form button:hover {
    background: #fff;
    color: #2e1a4d;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer .socials { margin-top: 10px; }
.footer .socials a {
    margin: 0 12px;
    color: #d4be91;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.footer .socials a:hover { color: #fff; }

/* ===== MODAIS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #2e1a4d;
    margin: 10% auto;
    padding: 40px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    min-height: 250px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: scale(0);
    animation: zoomIn 0.3s forwards;
}

.modal.show .modal-content { animation: zoomIn 0.3s forwards; }
.modal.hide .modal-content { animation: zoomOut 0.3s forwards; }

#close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffcc70;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
#close-modal:hover { color: #fff; }

#modal-certificado .modal-content {
    background-color: #2e1a4d;
    margin: 10% auto;
    padding: 40px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: scale(0);
    animation: zoomIn 0.3s forwards;
}

#modal-certificado.show .modal-content { animation: zoomIn 0.3s forwards; }
#modal-certificado.hide .modal-content { animation: zoomOut 0.3s forwards; }

#close-modal-certificado {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffcc70;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
#close-modal-certificado:hover { color: #fff; }

.progress-bar-container {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    margin: 20px 0;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #ffcc70;
    border-radius: 10px;
    transition: width 2s ease;
}

#progress-text {
    margin-top: 10px;
    font-weight: 600;
    color: #ffcc70;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: black;
    color: #f0db4f;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ===== KEYFRAMES ===== */
@keyframes zoomIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
@keyframes zoomOut {
    from { transform: scale(1); opacity: 1; }
    to   { transform: scale(0); opacity: 0; }
}
@keyframes flutuar {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
    50%       { box-shadow: 0 5px 25px rgba(0,0,0,0.8); }
}
@keyframes particleFade {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    30%  { opacity: 0.55; }
    70%  { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(-130px) scale(1.3); }
}

/* ===== SCROLLBAR ===== */
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: #1a1a2e; }
body::-webkit-scrollbar-thumb {
    background-color: #f0db4f;
    border-radius: 20px;
    border: 3px solid #2e1a4d;
}

/* ===== RESPONSIVIDADE ===== */
@media (min-width: 768px) {
    .sobre-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    .sobre-text { flex: 1; padding-right: 30px; }
    .sobre-image { flex: 1; display: flex; justify-content: center; align-items: center; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .hero h1 { font-size: 2.4rem; }
    .hero h2 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        width: 220px;
        gap: 30px;
        padding: 20px;
        transition: right 0.4s ease;
    }

    .nav-links.active { right: 0; }

    .nav-links li {
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 12px 25px;
    }

    .nav-links li:hover { box-shadow: 0 6px 20px rgba(255, 204, 112, 0.5); }
    .nav-links.active li { transform: translateX(0); opacity: 1; }

    .timeline { padding-left: 20px; }
    .timeline-dot { left: -18px; }
}

@media (min-width: 1200px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
}
