/* =========================================
   ION TI
   ESTILO PRINCIPAL
========================================= */

:root {

    --background: #050914;
    --background-light: #0b1224;

    --primary: #1677ff;
    --primary-light: #00a8ff;
    --purple: #6845ff;

    --white: #ffffff;
    --text: #e8edf7;
    --text-muted: #9aa7bd;

    --border: rgba(255, 255, 255, 0.10);

    --container: 1180px;

    --radius: 18px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(5, 9, 20, 0.85);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;
}

.nav {

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    height: auto;
    overflow: visible;
}
.logo img {
    width: 140px;
    height: auto;
    display: block;
}



/* MENU */

.menu {

    display: flex;

    align-items: center;

    gap: 38px;
}

.menu a {

    color: #b6c0d2;

    font-size: 14px;

    transition: 0.3s;
}

.menu a:hover,
.menu a.active {

    color: white;
}


/* MOBILE MENU */

.menu-mobile {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 26px;

    cursor: pointer;
}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 23px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

    cursor: pointer;
}

.btn-primary {

    color: white;

    background:
        linear-gradient(
            110deg,
            var(--purple),
            var(--primary-light)
        );

    box-shadow:
        0 10px 30px rgba(0, 119, 255, 0.20);
}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 15px 40px rgba(0, 119, 255, 0.35);
}

.btn-outline {

    border: 1px solid rgba(255,255,255,0.25);

    color: white;

    background: rgba(255,255,255,0.03);
}

.btn-outline:hover {

    border-color: var(--primary);

    background: rgba(22,119,255,0.08);
}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 760px;

    padding-top: 76px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


/* background glow */

.hero::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(0, 110, 255, 0.25),
            transparent 70%
        );

    pointer-events: none;
}

.hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(104, 69, 255, 0.20),
            transparent 70%
        );
}


/* HERO CONTENT */

.hero-content {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;
}


.badge {

    display: inline-flex;

    padding: 6px 13px;

    border: 1px solid rgba(55, 130, 255, 0.6);

    border-radius: 30px;

    color: #79b2ff;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 600;

    margin-bottom: 20px;
}


.hero h1 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -3px;

    max-width: 700px;

    margin-bottom: 25px;
}

.hero h1 span {

    background:
        linear-gradient(
            100deg,
            #7d50ff,
            #159dff
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}


.hero-text > p {

    color: var(--text-muted);

    max-width: 620px;

    font-size: 16px;

    margin-bottom: 30px;
}


.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    display: flex;

    justify-content: center;

    perspective: 1000px;
}

.tech-card {

    width: 480px;

    height: 330px;

    padding: 12px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #172b58,
            #080d1a
        );

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        0 0 70px rgba(0,100,255,0.15);

    transform: rotateY(-8deg) rotateX(3deg);
}

.screen {

    height: 100%;

    border-radius: 14px;

    background: #070d1a;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);
}

.screen-top {

    height: 30px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding-left: 15px;

    background: #0d1525;
}

.screen-top span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #65718a;
}

.dashboard {

    padding: 25px;
}

.dashboard-title {

    display: flex;

    justify-content: space-between;

    margin-bottom: 30px;

    font-weight: 700;
}

.dashboard-title small {

    color: #68758d;

    font-weight: 400;
}

.dashboard-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;
}

.dash-item {

    padding: 20px;

    background: #0c1527;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 12px;
}

.dash-item strong {

    display: block;

    font-size: 24px;

    color: #48a2ff;

    margin-bottom: 3px;
}

.dash-item small {

    color: #76839a;
}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding: 110px 0;
}

.services {

    background: #f3f6fb;

    color: #111b31;
}

.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
}

.badge-light {

    color: #286be7;

    border-color: #bcd4ff;

    background: #eaf2ff;
}

.section-heading h2 {

    font-size: 40px;

    line-height: 1.2;

    letter-spacing: -1.5px;

    margin-bottom: 15px;
}

.section-heading p {

    color: #647086;
}


/* =========================================
   SERVICE CARDS
========================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {

    position: relative;

    display: flex;

    gap: 17px;

    padding: 25px;

    min-height: 190px;

    background: white;

    border-radius: var(--radius);

    border: 1px solid #e5eaf2;

    box-shadow: 0 10px 30px rgba(19, 42, 75, 0.05);

    transition: 0.3s;
}

.service-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(19,42,75,0.10);
}

.service-icon {

    flex-shrink: 0;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #1677ff,
            #344eea
        );

    color: white;

    font-size: 22px;
}

.service-card h3 {

    font-size: 15px;

    margin-bottom: 8px;
}

.service-card p {

    color: #718096;

    font-size: 12px;

    line-height: 1.6;
}

.card-arrow {

    position: absolute;

    right: 20px;

    bottom: 15px;

    color: #345eff;

    font-size: 20px;
}


/* =========================================
   DIFFERENTIALS
========================================= */

.differentials {

    padding: 90px 0;

    background: #080f20;
}

.differential-content {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.differential-title h2 {

    font-size: 43px;

    line-height: 1.15;

    margin-bottom: 18px;

    letter-spacing: -2px;
}

.differential-title p {

    color: #8d9ab0;

    max-width: 420px;
}

.differential-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

.differential-item {

    display: flex;

    gap: 15px;
}

.round-icon {

    flex-shrink: 0;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #3158ff,
            #5428d9
        );

    font-size: 19px;
}

.differential-item h3 {

    font-size: 14px;

    margin-bottom: 5px;
}

.differential-item p {

    color: #7d899e;

    font-size: 12px;
}


/* =========================
   CARTÃO ION - SOBRE
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    column-gap: 100px;
    align-items: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}

.business-card {
    width: 100%;
    max-width: 550px;

    border-radius: 24px;
    overflow: hidden;

    background: #050505;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16),
        0 0 40px rgba(0, 102, 255, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.business-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.business-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.20),
        0 0 45px rgba(0, 102, 255, 0.14);
}


/* =========================
   FORMATAÇÃO TEXTO - SOBRE
========================= */

.about-text h2 {
    margin-bottom: 28px;
    line-height: 1.15;
}

.about-text p {
    margin: 0 0 22px 0;
    line-height: 1.75;
    font-size: 16px;
    letter-spacing: 0.1px;
}

.about-text p:first-of-type {
    font-size: 17px;
    font-weight: 500;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-text .quote {
    margin-top: 32px;
}

.quote {
    margin-top: 28px;
    padding: 22px 24px;

    background: #ffffff;
    color: #07152f;

    border-left: 5px solid #2864ff;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .about-image {
        margin-right: 0;
    }

    .about-text {
        margin-left: 0;
    }
}
/* =========================================
   CTA
========================================= */

.cta {

    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #09142a,
            #101a3c
        );
}

.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta h2 {

    font-size: 36px;

    line-height: 1.2;

    max-width: 650px;

    margin-bottom: 10px;
}

.cta p {

    color: #8795ab;
}


/* =========================================
   FOOTER
========================================= */

.footer {

    background: #040812;

    border-top: 1px solid var(--border);

    padding-top: 60px;
}

.footer-grid {

    display: grid;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 50px;
}

.footer-brand p {

    color: #738097;

    font-size: 13px;

    margin-top: 12px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {

    font-size: 13px;

    margin-bottom: 7px;
}

.footer-column a,
.footer-column span {

    color: #77849b;

    font-size: 12px;

    transition: 0.2s;
}

.footer-column a:hover {

    color: #3c8fff;
}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    color: #59667b;

    font-size: 11px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp {

    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background-color: #20bd5a;
    color: #fff !important;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    z-index: 1000;
}

.whatsapp i {
    color: #fff;
}

.whatsapp:hover {
    background-color: #20bd5a;
    color: #fff;
}

.whatsapp:hover i {
    color: #fff;
}


.whatsapp:hover {

    transform: scale(1.1);
}


/* =========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 900px) {

    .menu {

        display: none;

        position: absolute;

        top: 76px;

        left: 0;

        width: 100%;

        padding: 25px;

        flex-direction: column;

        background: #070d1b;

        border-bottom: 1px solid var(--border);
    }

    .menu.open {
        display: flex;
    }

    .menu-mobile {
        display: block;
    }

    .nav > .btn {
        display: none;
    }

    .hero {

        padding-top: 130px;

        padding-bottom: 80px;
    }

    .hero-content {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero h1 {

        font-size: 48px;
    }

    .hero-visual {

        display: none;
    }

    .services-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .differential-content {

        grid-template-columns: 1fr;
    }

    .about-grid {

        grid-template-columns: 1fr;

    }

    .cta-content {

        flex-direction: column;

        text-align: center;
    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .hero h1 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .hero-text > p {

        font-size: 14px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .btn {

        width: 100%;
    }

    .services-grid {

        grid-template-columns: 1fr;
    }

    .section {

        padding: 75px 0;
    }

    .section-heading h2,
    .about-text h2 {

        font-size: 31px;
    }

    .differential-list {

        grid-template-columns: 1fr;
    }

    .differential-title h2 {

        font-size: 34px;
    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;
    }

    .about-image {

        min-height: 300px;
    }

    .cta h2 {

        font-size: 29px;
    }

}