* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;

    top: 0;
    left: 0;

    z-index: -1;

    background: #0a0a14;
}



/* ========= NAVBAR ========= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;

    background: linear-gradient(90deg,
            rgba(10, 10, 20, 0.85),
            rgba(20, 20, 40, 0.85));

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.4s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(20px);
    padding: 10px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* LOGO */
.logo a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;

    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.08);
}

.logo a:hover {
    background: linear-gradient(90deg, #00e5ff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}

/* zoom suave */
.logo a:hover {
    transform: scale(1.08);
    font-weight: 1000;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu li {
    position: relative;
}

/* LINKS */
.menu a {
    color: #eaeaea;
    text-decoration: none;
    position: relative;
    padding: 5px 2px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #00e5ff, #7c4dff);
    transition: 0.4s ease;
    border-radius: 2px;
}

.menu a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.menu a:hover::after {
    width: 100%;
}

.menu i {
    margin-right: 8px;
    transition: 0.3s ease;
}

.menu a:hover i {
    transform: scale(1.2);
    color: #00e5ff;
}

/* ========= DROPDOWN ========= */
.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(8px);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;

    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu a {
    font-size: 14px;
}

.dropdown-menu li:hover {
    transform: translateX(5px);
}

/* ========= HAMBURGER ========= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========= MOBILE ========= */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        background: linear-gradient(180deg,
                rgba(15, 15, 25, 0.95),
                rgba(25, 25, 45, 0.95));

        backdrop-filter: blur(20px);

        padding: 30px 25px;
        gap: 10px;

        transition: 0.4s ease;
        opacity: 0;
    }

    .menu.active {
        left: 0;
        opacity: 1;
    }

    .menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .menu.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .menu a {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        display: block;
    }

    .menu a:hover {
        transform: translateX(5px);
        color: #00e5ff;
    }

    /* DROPDOWN MOBILE */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding-left: 15px;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #00e5ff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 180px;
    text-align: center;
    font-size: 36px;
}

.hero {
    text-align: center;
    margin-bottom: 56px
}

.hero p {
    font-size: 15px;
    color: #637082;
    font-weight: 300
}

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto
}

@media(max-width:680px) {
    .layout {
        grid-template-columns: 1fr
    }
}

.list-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.review-card {
    background: #161c27;
    border: 1px solid #1e2d42;
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: border-color .18s, background .18s;
    display: flex;
    align-items: center;
    gap: 14px
}

.review-card:hover {
    border-color: #2a3f5f;
    background: #1a2236
}

.review-card.active {
    border-color: #4da6ff;
    background: #111e30
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid
}

.a1 {
    background: #2a1810;
    color: #f97316;
    border-color: #4d2e18
}

.a2 {
    background: #071e24;
    color: #22d3ee;
    border-color: #0e3a42
}

.a3 {
    background: #1a1230;
    color: #a78bfa;
    border-color: #3b2e5f
}

.a4 {
    background: #0d2b1a;
    color: #4ade80;
    border-color: #1a4d2a
}

.card-info {
    flex: 1;
    min-width: 0
}

.card-name {
    font-size: 14px;
    font-weight: 500;
    color: #c9d4e0;
    margin-bottom: 3px
}

.card-role {
    font-size: 12px;
    color: #637082;
    margin-bottom: 6px
}

.card-preview {
    font-size: 12px;
    color: #637082;
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.detail-col {
    position: sticky;
    top: 0
}

.detail-panel {
    background: #161c27;
    border: 1px solid #1e2d42;
    border-radius: 16px;
    overflow: hidden
}

.detail-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    color: #637082;
    font-size: 14px;
    text-align: center;
    padding: 24px
}

.video-area {
    background: #0d1117
}

.video-area video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9
}

.detail-top {
    padding: 20px 22px 16px;
    border-bottom: 1px solid #1a2436
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.detail-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0;
    border: 2px solid
}

.detail-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 3px
}

.detail-role {
    font-size: 12px;
    color: #637082
}

.detail-quote {
    font-size: 13px;
    color: #9baabb;
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid #1e3a5f;
    padding-left: 12px
}

.detail-body {
    padding: 16px 22px 20px
}

.detail-label {
    font-size: 10px;
    color: #637082;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.detail-tag {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    background: #0d1e33;
    color: #4da6ff;
    border: 1px solid #1e3a5f;
    margin-right: 5px;
    margin-bottom: 5px
}

.footer {
    position: relative;
    background: rgba(10,10,20,0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 80px 20px 30px;
    margin-top: 120px;
    overflow: hidden;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, #00e5ff, #7c4dff, #00e5ff);
    background-size: 200%;

    animation: moveGradient 4s linear infinite;
}

@keyframes moveGradient {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

/* layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 50px;
}

/* LOGO */
.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;

    background: linear-gradient(90deg, #00e5ff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #aaa;
    max-width: 300px;
}

/* LINKS */
.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00e5ff;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0,229,255,0.6);
}

/* SOCIAL */
.social-icons a {
    margin-right: 15px;
    font-size: 22px;
    color: #aaa;
    transition: 0.3s;
}

/* glow nos ícones */
.social-icons a:hover {
    color: #7c4dff;
    transform: scale(1.3);
    text-shadow: 0 0 15px #7c4dff;
}

/* bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
    font-size: 14px;
    color: #777;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    margin-top: 40px;
    margin-bottom: 20px;
}

/* logos */
.footer-logos img {
    height: 50px;
    opacity: 0.7;
    transition: 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;

    margin-top: 50px;
    padding: 20px;

    background: rgba(255,255,255,0.02);
    border-radius: 12px;
}

/* ================= RESPONSIVO EXTRA ================= */
@media (max-width: 1024px) {

    .navbar {
        padding: 15px 25px;
    }

    .menu {
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .welcome {
        font-size: 55px;
    }

    .grafico-card {
        padding: 25px;
    }

    canvas {
        height: 300px !important;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .welcome {
        font-size: 42px;
    }

    /* INTRO */
    .intro {
        padding: 80px 15px;
    }

    .intro h2 {
        font-size: 28px;
    }

    .intro p {
        font-size: 16px;
    }

    /* GRAFICO */
    .grafico {
        padding: 80px 15px;
    }

    .grafico-card {
        padding: 20px;
    }

    canvas {
        height: 250px !important;
    }

    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item::before {
        left: 20px;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logos {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logos img {
        height: 40px;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 22px;
    }

    .hero .welcome {
        font-size: 34px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .navbar {
        padding: 10px 15px;
    }
}