* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #020B1F;
    color: white;
}


/* =========================
   MENU
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(2, 11, 31, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: 90%;
    max-width: 1200px;

    height: 85px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo img {
    width: 145px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

nav a:hover {
    color: #FF8A00;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 120px 20px 80px;

    background:
        radial-gradient(
            circle at center,
            #08316E 0%,
            #020B1F 55%
        );
}

.hero-content {
    max-width: 900px;
}

.tag {
    color: #FF8A00;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 4px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);

    line-height: 1.05;

    margin: 30px 0;
}

.hero h1 span {
    color: #FF8A00;
}

.hero p {
    max-width: 700px;

    margin: auto;

    color: #AAB6CA;

    font-size: 19px;

    line-height: 1.7;
}


/* =========================
   BOTÕES
========================= */

.buttons {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 15px 28px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    transition: 0.3s;
}

.btn-primary {
    background: #FF8A00;

    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(255,138,0,0.30);
}

.btn-secondary {
    border: 1px solid #31527F;

    color: white;
}

.btn-secondary:hover {
    border-color: #FF8A00;

    color: #FF8A00;
}


/* =========================
   APLICATIVOS
========================= */

.applications {
    padding: 120px 8%;
}

.section-title {
    text-align: center;

    margin-bottom: 60px;
}

.section-title span {
    color: #FF8A00;

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: bold;
}

.section-title h2 {
    font-size: 45px;

    margin: 15px 0;
}

.section-title p {
    color: #8795AA;
}


.cards {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(250px, 1fr)
        );

    gap: 25px;
}


.card {
    background:
        linear-gradient(
            145deg,
            #091B3A,
            #061329
        );

    border: 1px solid #14325E;

    border-radius: 15px;

    padding: 35px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);

    border-color: #FF8A00;
}

.card-icon {
    font-size: 38px;

    margin-bottom: 25px;
}

.card h3 {
    font-size: 21px;

    margin-bottom: 15px;
}

.card p {
    color: #8F9DB1;

    line-height: 1.6;
}

.card-button {
    display: inline-block;

    margin-top: 25px;

    color: #FF8A00;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;
}

.card-button:hover {
    text-decoration: underline;
}


/* =========================
   SOBRE
========================= */

.about {
    padding: 130px 20px;

    background: #040F25;

    text-align: center;
}

.about-content {
    max-width: 800px;

    margin: auto;
}

.about span,
.contact span {
    color: #FF8A00;

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: bold;
}

.about h2 {
    font-size: clamp(35px, 5vw, 55px);

    margin: 20px 0;
}

.about p {
    color: #929FB3;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================
   CONTATO
========================= */

.contact {
    padding: 120px 20px;

    text-align: center;
}

.contact h2 {
    font-size: 50px;

    margin: 20px 0;
}

.contact p {
    color: #8F9DB1;

    margin-bottom: 30px;
}


/* =========================
   RODAPÉ
========================= */

footer {
    border-top: 1px solid #122B51;

    padding: 50px 20px;

    text-align: center;
}

footer img {
    width: 130px;

    margin-bottom: 20px;
}

footer p {
    color: #66758C;

    font-size: 12px;

    margin: 5px;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 700px) {

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .contact h2 {
        font-size: 40px;
    }
}

/* =========================
   ÁREA EM CONSTRUÇÃO
========================= */

.construction {
    min-height: calc(100vh - 180px);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px 80px;

    background:
        radial-gradient(
            circle at center,
            #08316E 0%,
            #020B1F 55%
        );
}

.construction-content {
    max-width: 700px;
}

.construction-icon {
    font-size: 70px;
    margin-bottom: 30px;
}

.construction-content span {
    color: #FF8A00;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 4px;
}

.construction-content h1 {
    font-size: clamp(40px, 6vw, 65px);

    margin: 25px 0;

    line-height: 1.1;
}

.construction-content h1 strong {
    color: #FF8A00;
}

.construction-content p {
    color: #AAB6CA;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 35px;
}
```
