/*==================================================
            JC CONNECT
            CSS - PARTE 1/3
==================================================*/


/*==========================
RESET
===========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Poppins", sans-serif;

    background: #040712;

    color: #fff;

    overflow-x: hidden;

}

/*==========================
SYSTEM LAYOUT FIX
==========================*/

.container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


section {
    padding: 120px 0;
    position: relative;
}


/*==========================
BACKGROUND
===========================*/

body::before {

    content: "";

    position: fixed;

    inset: 0;

    background:
        radial-gradient(circle at top right, #0c6eff22, transparent 35%),
        radial-gradient(circle at bottom left, #00AFFF15, transparent 30%),
        #040712;

    z-index: -3;

}

body::after {

    content: "";

    position: fixed;

    inset: 0;

    background-image:

        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);

    background-size: 70px 70px;

    opacity: .35;

    z-index: -2;

}


/*==========================
HEADER
===========================*/

.header {

    position: fixed;

    top: 20px;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    z-index: 999;

}

.navbar {

    width: min(1500px, 94%);

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 40px;

    background: rgba(8, 12, 28, .60);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    box-shadow:

        0 20px 60px rgba(0, 0, 0, .45),

        0 0 30px rgba(0, 170, 255, .08);

}

.logo img {

    height: 60px;

    display: block;

}

.menu{
display:flex;
align-items:center;
gap:40px;
}

.menu li {

    list-style: none;

}

.menu a {
    

    color: white;

    text-decoration: none;

    font-size: .95rem;

    font-weight: 500;

    transition: .35s;

    position: relative;

}

.menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #00AFFF;

    transition: .35s;

}

.menu a:hover {

    color: #00AFFF;

}

.menu a:hover::after {

    width: 100%;

}

.header-button {

    padding: 16px 28px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    background: linear-gradient(135deg, #0066ff, #00AFFF);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .35s;

}

.header-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 0 25px rgba(0, 170, 255, .5);

}

.header-button i {

    font-size: 1.4rem;

}


/*==========================
HERO
===========================*/

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 130px 8% 80px;

}


/*==========================
IMAGEM
===========================*/

.hero-image {

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:0;

}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*==========================
OVERLAY
===========================*/
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #040712 0%,
            rgba(4, 7, 18, .75) 25%,
            rgba(4, 7, 18, .35) 45%,
            rgba(4, 7, 18, .10) 65%,
            transparent 100%);
    z-index: 2;
}


/*==========================
CONTEÚDO
===========================*/

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

}


/*==========================
BADGE
===========================*/

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 20px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(0, 170, 255, .25);

    color: #00AFFF;

    font-size: .85rem;

    margin-bottom: 30px;

}

#badge-text::after {
    content: "|";
    margin-left: 5px;
    color: #00AFFF;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



/*==========================
TÍTULO
===========================*/

.hero h1 {

    font-size: 3.1rem;

    line-height: 1.0;

    font-weight: 700;

    margin-bottom: 25px;

}

.hero h1 span {

    background: linear-gradient(45deg,

            #00AFFF,

            #6fdcff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


/*==========================
DESCRIÇÃO
===========================*/

.hero p {

    font-size: 1.05rem;

    line-height: 1.8;

    color: #c7c7c7;

    margin-bottom: 40px;

    max-width: 580px;

}



/*==========================
HERO BUTTONS
==========================*/

.hero-buttons {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 25px;

}

/*==========================
PRIMARY BUTTON
==========================*/

.btn-primary {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: linear-gradient(135deg, #00AFFF, #0077ff);

    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(0, 170, 255, .25);

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 170, 255, .35);

}

/*==========================
SECONDARY BUTTON (WHATSAPP STYLE)
==========================*/

.btn-secondary {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: transparent;

    color: #25D366;

    border: 1px solid rgba(37, 211, 102, .4);

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

    position: relative;

    overflow: hidden;

}

.btn-secondary i {

    font-size: 1.2rem;

}

/* hover glow */
.btn-secondary:hover {

    transform: translateY(-4px);

    background: rgba(37, 211, 102, .08);

    box-shadow: 0 10px 30px rgba(37, 211, 102, .15);

    border-color: #25D366;

}

.btn-secondary::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: .5s;

}

.btn-secondary:hover::before {

    left: 100%;

}

/*==========================
MOBILE
==========================*/

@media(max-width:600px) {

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

    .btn-primary,
    .btn-secondary {

        width: 100%;

        justify-content: center;

    }

}

/*==================================================
            JC CONNECT
            CSS - PARTE 2/3
==================================================*/
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 14px;
    margin-top: 30px;
    justify-items: center;
}

/* CARD MENOR */
.tech-card {
    width: 85px;
    height: 85px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    backdrop-filter: blur(12px);

    position: relative;
    overflow: hidden;

    transition: 0.25s ease;

}

/* brilho */
.tech-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.12), transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.3s;
}

/* ICON MENOR */
.tech-card img {
    width: 28px;
    height: 28px;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 6px rgba(0, 170, 255, 0.25));
}

/* TEXTO MENOR */
.tech-card span {
    margin-top: 5px;
    font-size: 0.7rem;
    color: #cfcfcf;
}

/* HOVER MAIS LEVE */
.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #00AFFF;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.15);
}

.tech-card:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px #00AFFF);
}



/*==========================
TÍTULOS
===========================*/

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    color: #00AFFF;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section-title h2 {

    font-size: 3rem;

    margin-top: 15px;

    font-weight: 700;

}

/*====================================
ABOUT - VEXION PREMIUM
====================================*/

.about {

    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(0, 175, 255, .12),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(0, 110, 255, .10),
            transparent 40%),

        linear-gradient(180deg,
            #06070D,
            #090D15);

}


/* LUZES */

.about::before {

    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    left: -300px;
    top: -300px;

    border-radius: 50%;

    background: #00AFFF;

    opacity: .08;

    filter: blur(170px);

}


.about::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background: #006eff;

    opacity: .08;

    filter: blur(170px);

}



/*====================================
CONTAINER
====================================*/


.about-content {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    padding: 0 30px;

}



/*====================================
4 CARDS PRINCIPAIS
====================================*/


.about-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    margin-bottom: 0;

}



.about-card {

    position: relative;

    overflow: hidden;

    padding: 32px;

    min-height: 300px;

    border-radius: 24px;


    background:

        linear-gradient(180deg,
            rgba(255, 255, 255, .07),
            rgba(255, 255, 255, .03));


    backdrop-filter: blur(18px);


    border:

        1px solid rgba(255, 255, 255, .08);


    transition: .45s ease;

}


.about-card:hover::before {

    transform: translateX(120%);

}

/* linha superior */


.about-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;


    background:

        linear-gradient(90deg,
            #00AFFF,
            #3dc9ff,
            #00AFFF);


    transform: scaleX(0);

    transition: .4s;

}



.about-card:hover::after {

    transform: scaleX(1);

}



.about-card:hover {

    transform: translateY(-10px);

    border-color: #00AFFF;


    box-shadow:

        0 25px 45px rgba(0, 175, 255, .18);

}

/*====================================
ABOUT INFO PREMIUM
====================================*/

.about-info {

    text-align: center;

    max-width: 950px;

    margin: 120px auto 0;

    position: relative;

    z-index: 2;

}


/* TAG QUEM SOMOS */

.about-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 12px 28px;

    border-radius: 50px;


    background:
        linear-gradient(135deg,
            rgba(0, 175, 255, .18),
            rgba(0, 110, 255, .08));


    border: 1px solid rgba(0, 175, 255, .35);


    color: #00AFFF;


    font-size: .85rem;

    font-weight: 700;


    letter-spacing: 1.5px;

    text-transform: uppercase;


    backdrop-filter: blur(15px);


    box-shadow:

        0 0 25px rgba(0, 175, 255, .15);


    position: relative;

    overflow: hidden;

}


.about-tag:hover::before {

    transform: translateX(120%);

}



/* TITULO */

.about-info h3 {

    margin: 35px auto 0;


    max-width: 900px;


    font-size:

        clamp(2.2rem,
            4vw,
            3.4rem);


    line-height: 1.15;


    font-weight: 800;


    letter-spacing: -1px;


    background:

        linear-gradient(90deg,
            #ffffff,
            #00AFFF,
            #6fdcff);


    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;


}



/* PARÁGRAFOS */

.about-info p {

    max-width: 760px;


    margin: 28px auto 0;


    color: #B8C0CF;


    font-size: 17px;


    line-height: 1.9;


}


/* separação antes dos cards */

.about-info+.about-cards {

    margin-top: 70px;

}


/*====================================
ICONES
====================================*/


.card-icon {

    width: 72px;

    height: 72px;


    display: flex;

    align-items: center;

    justify-content: center;


    border-radius: 22px;


    background:

        linear-gradient(135deg,
            #00AFFF,
            #0077ff);


    box-shadow:

        0 15px 30px rgba(0, 175, 255, .35);


    margin-bottom: 25px;


}



.card-icon i {

    color: white;

    font-size: 30px;

}



/*====================================
TEXTOS
====================================*/


.about-card h3 {

    color: #fff;

    font-size: 1.35rem;

    margin-bottom: 15px;

}


.about-card p {

    color: #B8C0CF;

    line-height: 1.8;

    font-size: 15px;

}



/*====================================
STATS 3 CARDS MENORES
====================================*/


.about-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 45px;

}



.stat {

    display: flex;

    align-items: center;

    justify-content: center;


    gap: 18px;


    height: 110px;


    padding: 25px;


    border-radius: 22px;


    background:

        linear-gradient(180deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .02));


    border:

        1px solid rgba(255, 255, 255, .08);


    backdrop-filter: blur(18px);


    transition: .4s;

}



.stat:hover {

    transform: translateY(-8px);

    border-color: #00AFFF;


    box-shadow:

        0 15px 30px rgba(0, 175, 255, .18);

}



.stat i {

    font-size: 28px;

    color: #00AFFF;

}



.stat h4 {

    margin: 0;

    color: #00AFFF;

    font-size: 2rem;

    font-weight: 800;

}



.stat span {

    color: #B8C0CF;

    font-size: .9rem;

}



/*====================================
TABLET
====================================*/


@media(max-width:1100px) {


    .about-cards {

        grid-template-columns: repeat(2, 1fr);

    }


}



/*====================================
CELULAR
====================================*/


@media(max-width:768px) {


    .about {

        padding: 90px 0;

    }


    .about-content {

        padding: 0 20px;

    }


    .about-cards {

        grid-template-columns: 1fr;

    }



    .about-stats {

        grid-template-columns: 1fr;

    }



    .about-card {

        min-height: auto;

        padding: 28px;

    }



}


/*==========================
SERVICES *****************
==========================*/

.services {

    padding: 100px 0;

}

/*==========================
GRID
==========================*/

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 28px;

    margin-top: 60px;

    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

}

/*==========================
CARD
==========================*/

.service-card {

    display: flex;

    flex-direction: column;

    padding: 32px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: all .35s ease;

}

.service-card:hover {

    transform: translateY(-8px);

    border-color: #00AFFF;

    box-shadow: 0 18px 40px rgba(0, 175, 255, .15);

}

/*==========================
FEATURED CARD
==========================*/

.service-card.featured {

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(0, 175, 255, .35);

    background: linear-gradient(180deg,
            rgba(0, 175, 255, .10),
            rgba(255, 255, 255, .03));

}

.service-card.featured::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(0, 175, 255, .08),
            transparent 60%);

    pointer-events: none;

}

.service-card.featured:hover {

    border-color: #00AFFF;

    box-shadow: 0 25px 45px rgba(0, 175, 255, .22);

}

/*==========================
BADGE
==========================*/

.service-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 7px 14px;

    border-radius: 30px;

    background: #00AFFF;

    color: #fff;

    font-size: .75rem;

    font-weight: 600;

    letter-spacing: .4px;

}

/*==========================
ICON
==========================*/

.service-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    border-radius: 18px;

    background: rgba(0, 175, 255, .10);

}

.service-icon i {

    font-size: 30px;

    color: #00AFFF;

}

/*==========================
TEXT
==========================*/

.service-category {

    display: inline-block;

    width: max-content;

    padding: 6px 14px;

    margin-bottom: 18px;

    border-radius: 30px;

    background: rgba(0, 175, 255, .10);

    color: #00AFFF;

    font-size: .82rem;

    font-weight: 600;

    letter-spacing: .5px;

    text-transform: uppercase;

}

.service-card h3 {

    margin-bottom: 16px;

    font-size: 1.45rem;

    color: #fff;

}

.service-card p {

    color: #b8b8b8;

    line-height: 1.8;

    margin-bottom: 24px;

}

/*==========================
LIST
==========================*/

.service-list {

    display: grid;

    gap: 12px;

    margin-top: auto;

    list-style: none;

}

.service-list li {

    position: relative;

    padding-left: 24px;

    color: #d2d2d2;

    font-size: .95rem;

}

.service-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #00AFFF;

    font-weight: 700;

}

/*==========================
TABLET
==========================*/

@media (min-width: 768px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 28px;

    }

}

/*==========================
DESKTOP
==========================*/

@media (min-width: 1200px) {

    .services {

        padding: 120px 0;

    }

    .services-grid {

        grid-template-columns: repeat(3, minmax(300px, 350px));

        justify-content: center;

        gap: 32px;

        max-width: 1150px;

        margin: 60px auto 0;

    }

    .service-card {

        padding: 32px;

    }

}

/*==========================
LARGE DESKTOP
==========================*/

@media (min-width: 1400px) {

    .services-grid {

        max-width: 1200px;

        gap: 36px;

    }

}

/*==========================
PROJECTS - BASE
==========================*/

.projects {

    padding: 100px 0;

}

.projects-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;

    margin-top: 60px;

}

/*==========================
SECTION TITLE
==========================*/

.section-title p {

    color: #a8a8a8;

    max-width: 600px;

    margin: 0 auto;

    line-height: 1.6;

}

/*==========================
FEATURED PROJECT
==========================*/

.featured-project {

    display: grid;

    grid-template-columns: 1fr;

    gap: 30px;

    margin-top: 60px;

    padding: 30px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .3s;

}

.featured-project:hover {

    transform: translateY(-6px);

    border-color: #00AFFF;

    box-shadow: 0 0 35px rgba(0, 170, 255, .15);

}

.featured-image {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

}

.featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.featured-project:hover .featured-image img {

    transform: scale(1.05);

}

.badge {

    position: absolute;

    top: 35px;

    left: 15px;

    background: #00AFFF;

    color: #fff;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: .8rem;

}

/*==========================
FEATURED CONTENT
==========================*/

.featured-content .type {

    color: #00AFFF;

    font-weight: 600;

    font-size: .9rem;

}

.featured-content h3 {

    font-size: 1.8rem;

    margin: 10px 0;

}

.featured-content p {

    color: #bdbdbd;

    line-height: 1.7;

}

/* TAGS */

.tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin: 15px 0;

}

.tags span {

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    padding: 6px 10px;

    border-radius: 999px;

    font-size: .85rem;

    color: #ddd;

}

/* ACTIONS */

.actions {

    margin-top: 15px;

}

.btn-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    background: rgba(0, 170, 255, .10);
    color: #00AFFF;

    border: 1px solid rgba(0, 170, 255, .3);
    border-radius: 10px;

    text-decoration: none;
    font-weight: 500;

    transition: .3s;
}

.btn-project:hover {
    background: #00AFFF;
    color: #fff;
    transform: translateY(-2px);
}

/*==========================
PROJECT GRID CARDS
==========================*/

.project-card {

    border-radius: 18px;

    overflow: hidden;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .3s;

}

.project-card:hover {

    transform: translateY(-6px);

    border-color: #00AFFF;

    box-shadow: 0 0 25px rgba(0, 170, 255, .12);

}

.project-image {

    overflow: hidden;

}

.project-image img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    transition: .4s;

}

.project-card:hover .project-image img {

    transform: scale(1.08);

}

.project-content {

    padding: 18px;

}

.project-content .type {

    color: #00AFFF;

    font-size: .85rem;

    font-weight: 600;

}

.project-content h3 {

    margin-top: 6px;

    font-size: 1.1rem;

}

/*==========================
TABLET
==========================*/

@media(min-width:768px) {

    .projects-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .featured-project {

        grid-template-columns: 1fr 1fr;

        align-items: center;

    }

}

/*==========================
DESKTOP
==========================*/

@media(min-width:1200px) {

    .projects {

        padding: 120px 0;

    }

    .projects-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 28px;

        max-width: 1150px;

        margin: 60px auto 0;

    }

    .featured-project {

        max-width: 1150px;

        margin: 60px auto;

        padding: 40px;

    }

}

/*==========================
LARGE DESKTOP
==========================*/

@media(min-width:1400px) {

    .projects-grid {

        max-width: 1200px;

        gap: 32px;

    }

}

/*==================================================
CONTACT PREMIUM
==================================================*/

.contact {

    padding: 120px 0;
    position: relative;

}

.contact-card {

    position: relative;

    max-width: 1150px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns: 1.4fr .8fr;

    align-items: center;

    gap: 70px;

    padding: 60px;

    border-radius: 30px;

    overflow: hidden;

    background: linear-gradient(145deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35),
        0 0 35px rgba(0, 170, 255, .08);

    transition: .45s;

}

.contact-card::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(0, 175, 255, .08);

    filter: blur(110px);

    top: -200px;
    right: -120px;

}

.contact-card:hover {

    transform: translateY(-8px);

    border-color: #00AFFF;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .45),
        0 0 60px rgba(0, 170, 255, .18);

}

/*======================
INFO
======================*/

.contact-info {

    position: relative;
    z-index: 2;

}

.contact-info h3 {

    font-size: 2.4rem;

    margin-bottom: 18px;

    line-height: 1.2;

}

.contact-info p {

    color: #bdbdbd;

    line-height: 1.9;

    font-size: 1.05rem;

    max-width: 620px;

}

/*======================
LISTA
======================*/

.contact-list {

    margin-top: 40px;

    list-style: none;

    display: grid;

    gap: 18px;

}

.contact-list li {

    display: flex;

    align-items: center;

    gap: 18px;

    color: #fff;

    font-size: 1rem;

}

.contact-list li i {

    width: 52px;

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 16px;

    background: rgba(0, 170, 255, .12);

    color: #00AFFF;

    font-size: 20px;

    transition: .35s;

}

.contact-list li:hover i {

    background: #00AFFF;

    color: #fff;

    transform: scale(1.08) rotate(-8deg);

    box-shadow: 0 0 25px rgba(0, 170, 255, .45);

}

/*======================
ACTION
======================*/

.contact-action {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}

.contact-action h4 {

    font-size: 1.4rem;

    margin-bottom: 12px;

}

.contact-action p {

    color: #aeb7c7;

    line-height: 1.7;

    margin-bottom: 28px;

}

/*======================
BUTTON
======================*/

.btn-whatsapp {

    position: relative;

    width: 100%;

    max-width: 330px;

    height: 68px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    overflow: hidden;

    border-radius: 18px;

    color: #25D366;

    border: 1px solid rgba(37, 211, 102, .4);

    background: transparent;

    text-decoration: none;

    font-weight: 700;

    letter-spacing: .3px;

    transition: .35s;

}

.btn-whatsapp i {

    font-size: 1.4rem;

}

.btn-whatsapp:hover {

    transform: translateY(-5px) scale(1.03);

}

.btn-whatsapp::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 120%;

    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);

    transition: .7s;

}

.btn-whatsapp:hover::before {

    left: 120%;

}

.note {

    margin-top: 20px;

    color: #8d98aa;

    line-height: 1.7;

    font-size: .9rem;

    max-width: 300px;

}

/*======================
RESPONSIVO
======================*/

@media(max-width:992px) {

    .contact-card {

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 40px;

        text-align: center;

    }

    .contact-info {

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .contact-list li {

        justify-content: center;

    }

}


/*==========================
FOOTER
===========================*/
.footer {
    margin-top: 100px;
    padding: 70px 0 20px;

    background: #060b18;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-content {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 50px;

    align-items: flex-start;

}

.footer-brand img {

    width: 180px;

    margin-bottom: 20px;

}

.footer-brand p {

    color: #aaa;

    line-height: 1.8;

}

.footer h4 {

    color: #fff;

    margin-bottom: 20px;

    font-size: 1.1rem;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-links a {

    color: #bdbdbd;

    text-decoration: none;

    transition: .3s;

}

.footer-links a:hover {

    color: #00AFFF;

    transform: translateX(8px);

}

.footer-contact p {

    color: #bdbdbd;

    margin-bottom: 15px;

}

.footer-contact i {

    color: #00AFFF;

    margin-right: 10px;

}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: #7f8c9d;
    font-size: 1.7rem;
    transition: .3s;
}

.footer-social a:hover {
    color: #00AFFF;
    transform: translateY(-5px) scale(1.15);
    text-shadow: 0 0 20px #00AFFF;
}

.footer-bottom {

    margin-top: 50px;

    padding-top: 20px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: #888;

    font-size: .9rem;

}

/*==========================
Menu hamburguer
===========================*/

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle i {
    transition: .35s ease;
}

.menu-toggle.active i {
    transform: rotate(180deg) scale(1.1);
}

/*==========================
RESPONSIVO
==========================*/

@media(max-width:992px) {

    .navbar {
        position: relative;
    }

    /* Esconde menu */
    .menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(6, 10, 25, .98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;

        padding: 30px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: .35s;
    }

    .menu a {

        display: block;
        width: 100%;

        padding: 14px 20px;

        border-radius: 14px;

        text-align: center;

        transition: .3s;
    }

    .menu a:hover {

        background: rgba(0, 170, 255, .10);

        color: #00AFFF;

        transform: translateX(8px);

    }

    /* Menu aberto */
    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mostra hambúrguer */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 15px;
    }

    /* WhatsApp continua aparecendo */
    .header-button {
        padding: 12px 18px;
        font-size: .9rem;
    }

}

.cursor-glow {

    position: fixed;
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #00AFFF;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 99999;

    box-shadow:
        0 0 20px #00AFFF,
        0 0 40px #00AFFF,
        0 0 70px rgba(0, 170, 255, .5);

    transition: transform .2s;
}

/*==================================================
        VEXION MOBILE RESPONSIVE FIX
==================================================*/


/*==========================
TABLET
==========================*/

@media(max-width:992px) {


    .navbar {

        width: 94%;

        padding: 0 25px;

    }


    .logo img {

        height: 50px;

    }


    .menu {

        gap: 20px;

    }


    .hero {

        padding: 140px 30px 80px;

        min-height: 100vh;

    }


    .hero h1 {

        font-size: clamp(2.4rem,
                6vw,
                3.2rem);

    }


    .about-cards {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .projects-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-card {

        grid-template-columns: 1fr;

        padding: 40px;

        gap: 40px;

    }


}



/*==========================
CELULAR
==========================*/


@media(max-width:768px) {


    body {

        overflow-x: hidden;

    }



    .container {

        padding:

            0 20px;

    }



    section {

        padding:

            80px 0;

    }



    /* HEADER */


    .header {

        top: 12px;

    }



    .navbar {

        height: 70px;

        border-radius: 18px;

        padding: 0 18px;

    }



    .logo img {

        height: 45px;

    }



    .menu-toggle {

        display: flex;

    }



    .menu {

        position: absolute;

        top: 80px;

        left: 0;


        width: 100%;


        padding: 25px;


        border-radius: 20px;


        background:

            rgba(4, 7, 18, .97);



        backdrop-filter: blur(20px);



        flex-direction: column;


        opacity: 0;


        visibility: hidden;


        transform:
            translateY(-15px);



        transition: .35s;


    }



    .menu.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }



    .menu a {

        width: 100%;

        text-align: center;

        padding: 15px;

    }



    /* HERO */


    .hero {


        padding:

            120px 20px 60px;


        min-height: auto;


        text-align: center;


    }



    .hero-overlay {


        background:

            linear-gradient(180deg,

                rgba(4, 7, 18, .95),

                rgba(4, 7, 18, .75));


    }



    .hero-content {

        width: 100%;

    }



    .hero-badge {

        font-size: .75rem;

        padding: 8px 15px;

    }



    .hero h1 {

        font-size:

            clamp(2rem,
                9vw,
                2.7rem);


        letter-spacing: -1px;


    }



    .hero p {

        font-size: .95rem;

        line-height: 1.7;

    }



    .hero-buttons {


        flex-direction: column;


        width: 100%;


    }



    .btn-primary,

    .btn-secondary {


        width: 100%;


        justify-content: center;


    }





    /* TECNOLOGIAS */


    .tech-stack {


        grid-template-columns:

            repeat(3, 1fr);


        gap: 12px;


        margin-top: 35px;


    }



    .tech-card {


        width: 75px;

        height: 75px;


    }



    .tech-card img {


        width: 25px;

        height: 25px;


    }



    .tech-card span {


        font-size: .65rem;


    }




    /* ABOUT */


    .about-cards {


        grid-template-columns: 1fr;


    }



    .about-card {


        padding: 25px;

        min-height: auto;


    }




    .about-info h3 {


        font-size:

            2rem;


    }



    .about-info p {


        font-size: .95rem;


    }



    .about-stats {


        grid-template-columns: 1fr;


    }





    /* SERVICES */


    .services-grid {


        grid-template-columns: 1fr;


    }



    .service-card {


        padding: 25px;


    }





    /* PROJECTS */


    .projects-grid {


        grid-template-columns: 1fr;


    }



    .featured-project {


        padding: 20px;


    }





    /* CONTACT */


    .contact-card {


        padding: 25px;


        border-radius: 22px;


    }



    .contact-info h3 {


        font-size: 1.8rem;


    }



    .contact-list li {


        font-size: .9rem;


    }






    /* FOOTER */


    .footer-content {


        grid-template-columns: 1fr;


        text-align: center;


    }



    .footer-social {


        justify-content: center;


    }



}





/*==========================
CELULAR PEQUENO 320px
==========================*/


@media(max-width:380px) {



    .navbar {

        padding: 0 14px;

    }



    .logo img {

        height: 40px;

    }



    .hero {

        padding-left: 15px;

        padding-right: 15px;

    }



    .hero h1 {

        font-size: 1.85rem;

    }



    .tech-stack {

        grid-template-columns:

            repeat(2, 1fr);

    }



    .tech-card {

        width: 70px;

        height: 70px;

    }



    .section-title h2 {

        font-size: 1.8rem;

    }



}

/*==================================================
        IPAD MINI PREMIUM FIX
==================================================*/

@media (min-width:768px) and (max-width:1024px) {

    .navbar {

        width: 94%;
        height: 75px;
        padding: 0 30px;

    }


    .logo img {

        height: 48px;

    }


    .menu {

        gap: 22px;

    }


    .menu a {

        font-size: .85rem;

    }


    .header-button {

        padding: 12px 18px;

        font-size: .85rem;

    }



    /* HERO */

    .hero {

        min-height: 100vh;

        padding:
            130px 50px 70px;

        align-items: center;

    }


    .hero-content {

        max-width: 580px;

    }


    .hero h1 {

        font-size: 3rem;

        line-height: 1.1;

    }


    .hero p {

        font-size: 1rem;

        max-width: 500px;

    }

    section {

        padding: 90px 0;

    }



    /* TECNOLOGIAS */

    .tech-stack {

        grid-template-columns: repeat(4, 85px);

        justify-content: center;

        gap: 18px;

    }



    /* ABOUT */

    .about {

        padding: 100px 0;

    }


    .about-cards {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }


    .about-card {

        min-height: 260px;

        padding: 28px;

    }



    /* SERVICES */

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px;

    }



    /* PROJECTS */

    .projects-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    /* CONTACT */

    .contact-card {

        padding: 45px;

        gap: 35px;

    }



    /* FOOTER */

    .footer-content {

        grid-template-columns: repeat(2, 1fr);

    }

}