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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07110d;
    color: #f4fff9;
    line-height: 1.6;
}

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================
   TOPBAR
========================= */

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 15, 11, 0.88);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(110, 255, 171, 0.10);
}

.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    font-weight: 800;
    letter-spacing: 1px;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #55ff9a,
        #00c86b
    );

    color: #04130b;

    font-size: 23px;

    box-shadow:
        0 0 25px rgba(50, 255, 139, .22);
}

.logo-text {
    font-size: 20px;
}


/* MENU */

.menu {
    display: flex;
    align-items: center;
    gap: 7px;
}

.menu a {
    padding: 10px 13px;

    color: #a8bdb1;

    font-size: 14px;

    border-radius: 9px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.menu a:hover {
    color: #ffffff;
    background: rgba(85, 255, 154, .08);
    transform: translateY(-1px);
}

.menu a.active {
    color: #67ff9e;
}

.menu-highlight {
    border: 1px solid rgba(103, 255, 158, .25);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 255, 120, .08),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(0, 200, 120, .07),
            transparent 35%
        );
}

.hero-content {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    align-items: center;

    gap: 60px;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #65ff9c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.hero h1 strong {
    display: block;

    background: linear-gradient(
        90deg,
        #ffffff,
        #58ff98
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 650px;

    margin-top: 25px;

    color: #a8bdb1;

    font-size: 19px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 35px;

    flex-wrap: wrap;
}


/* BUTTONS */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 12px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #62ff9c,
        #00c86b
    );

    color: #04130b;

    box-shadow:
        0 10px 35px rgba(0, 220, 100, .16);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.12);

    color: #d9e8df;

    background: rgba(255,255,255,.03);
}


/* ORB */

.hero-orb {
    display: grid;
    place-items: center;

    position: relative;
}

.orb {
    width: 280px;
    height: 280px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(110,255,170,.30),
            rgba(0,180,90,.04) 55%,
            transparent 70%
        );

    border: 1px solid rgba(90,255,160,.20);

    box-shadow:
        0 0 70px rgba(0,255,120,.08);

    animation: float 5s ease-in-out infinite;
}

.orb-inner {
    width: 130px;
    height: 130px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 70px;
    font-weight: 900;

    color: #06150d;

    background: linear-gradient(
        135deg,
        #73ffa7,
        #00bc65
    );

    box-shadow:
        0 0 60px rgba(50,255,140,.22);
}

.orb-label {
    margin-top: 20px;

    color: #7d998a;

    letter-spacing: 5px;
    font-size: 11px;
}


@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


/* =========================
   AREAS
========================= */

.areas {
    padding: 110px 0;
}

.section-title {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
}

.section-title span {
    color: #63ff9b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 10px;

    font-size: clamp(32px, 5vw, 48px);
}

.section-title p {
    margin-top: 14px;

    color: #8da99a;
}


/* CARDS */

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.area-card {
    position: relative;

    min-height: 250px;

    padding: 28px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.area-card::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -60px;
    top: -60px;

    border-radius: 50%;

    background: rgba(80,255,150,.07);

    transition: transform .4s ease;
}

.area-card:hover {
    transform: translateY(-8px);

    border-color: rgba(90,255,155,.25);

    background:
        linear-gradient(
            145deg,
            rgba(80,255,150,.08),
            rgba(255,255,255,.02)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.22);
}

.area-card:hover::before {
    transform: scale(2.2);
}

.card-icon {
    font-size: 40px;

    margin-bottom: 22px;

    transition: transform .35s ease;
}

.area-card:hover .card-icon {
    transform:
        translateY(-5px)
        scale(1.12)
        rotate(-3deg);
}

.card-content span {
    color: #527162;

    font-size: 11px;

    letter-spacing: 2px;
}

.card-content h3 {
    margin-top: 5px;

    font-size: 25px;
}

.card-content p {
    margin-top: 8px;

    color: #8fa79a;

    font-size: 14px;
}

.card-arrow {
    position: absolute;

    right: 25px;
    bottom: 22px;

    color: #65ff9b;

    font-size: 25px;

    transition:
        transform .25s ease;
}

.area-card:hover .card-arrow {
    transform: translateX(7px);
}


/* =========================
   FEATURED
========================= */

.featured {
    padding: 20px 0 110px;
}

.featured-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px;

    border-radius: 22px;

    border: 1px solid rgba(95,255,155,.13);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(70,255,140,.08),
            transparent 35%
        ),
        rgba(255,255,255,.025);
}

.featured h2 {
    max-width: 700px;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.15;
}

.featured p {
    max-width: 650px;

    margin-top: 12px;

    color: #8fa79a;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid rgba(255,255,255,.07);

    background: #040b07;
}

.footer-content {
    min-height: 160px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    font-weight: 900;

    font-size: 22px;

    letter-spacing: 2px;

    color: #65ff9b;
}

.footer-content p {
    color: #71867a;

    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 20px;
}

.footer-links a {
    color: #83998d;

    font-size: 13px;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #65ff9b;
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.05);

    color: #53665c;

    font-size: 12px;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1000px) {

    .menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-orb {
        display: none;
    }

    .cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .hero {
        min-height: 580px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .featured-box {
        padding: 30px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-content {
        padding: 35px 0;

        flex-direction: column;

        align-items: flex-start;
    }

}
/* =========================================================
   LANCEDRO - PAGINAS INTERNAS
   FASE 8I - SISTEMA VISUAL UNIFICADO
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(3, 12, 9, 0.92);
    border-bottom: 1px solid rgba(62, 255, 158, 0.10);
    backdrop-filter: blur(16px);
}

.site-header .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    color: #f4fff9;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .04em;
}

.site-header .brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #39ff9a, #0bdc76);
    color: #03130b;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(57,255,154,.20);
}

.site-header .brand-text {
    font-size: 17px;
}

.site-header .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
}

.site-header .nav a {
    color: #a9bdb3;
    text-decoration: none;
    padding: 8px 11px;
    border-radius: 9px;
    font-size: 14px;
    transition: .2s ease;
}

.site-header .nav a:hover,
.site-header .nav a.active {
    color: #39ff9a;
    background: rgba(57,255,154,.07);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 24px 65px;
    background:
        radial-gradient(circle at 80% 20%, rgba(35,255,145,.12), transparent 32%),
        radial-gradient(circle at 20% 80%, rgba(0,190,120,.08), transparent 35%),
        #07110d;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.inner-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.inner-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.inner-hero p {
    max-width: 720px;
    color: #a9bdb3;
    font-size: 18px;
}

.section {
    padding: 70px 24px;
    background: #07110d;
}

.section .container {
    max-width: 1180px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #39ff9a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
}

.section > .container > p {
    max-width: 760px;
    color: #9db1a7;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.portal-card {
    position: relative;
    min-height: 210px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.portal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57,255,154,.28);
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
}

.portal-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(57,255,154,.09);
    font-size: 25px;
}

.portal-card h3 {
    margin-bottom: 8px;
    color: #f4fff9;
    font-size: 21px;
}

.portal-card p {
    color: #94a99e;
    font-size: 14px;
    line-height: 1.7;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #39ff9a;
    text-decoration: none;
    font-weight: 700;
}

.portal-link:hover {
    text-decoration: underline;
}

.portal-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    color: #8fa79a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.portal-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39ff9a;
    box-shadow: 0 0 12px rgba(57,255,154,.7);
}

.portal-status.development::before {
    background: #ffc857;
    box-shadow: 0 0 12px rgba(255,200,87,.55);
}

.portal-status.lab::before {
    background: #61a8ff;
    box-shadow: 0 0 12px rgba(97,168,255,.55);
}

.portal-status.online::before {
    background: #39ff9a;
}

.clickable-card {
    cursor: pointer;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #9db1a7;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: #39ff9a;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px;
}

.footer-copy {
    color: #75897f;
    font-size: 13px;
}

.menu-toggle {
    display: none;
}

@media (max-width: 900px) {

    .portal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {

    .site-header .container {
        padding: 0 16px;
    }

    .site-header .nav {
        gap: 4px;
    }

    .site-header .nav a {
        font-size: 13px;
        padding: 7px 8px;
    }

    .inner-hero {
        padding: 65px 18px 50px;
    }

    .section {
        padding: 55px 18px;
    }

    .portal-grid {
        grid-template-columns: 1fr;
    }

}
