﻿/* ============================================================
   RESET
============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #05050b;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font-family: inherit;
}



/* ============================================================
   VARIÁVEIS
============================================================ */

:root {

    --purple: #8b3dff;
    --purple-light: #a855f7;
    --purple-dark: #601bd1;

    --bg: #05050b;
    --bg-secondary: #090914;

    --text: #ffffff;
    --text-muted: #a7a7b5;

    --border: rgba(255,255,255,.10);

}



/* ============================================================
   HEADER
============================================================ */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    z-index: 9999;

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        border-color .35s ease,
        height .35s ease;

    border-bottom: 1px solid transparent;

}


/* Header depois do scroll */

.main-header.scrolled {

    height: 72px;

    background: rgba(5,5,11,.82);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom-color: rgba(255,255,255,.08);

}



/* ============================================================
   CONTAINER
============================================================ */

.header-container {

    width: min(1180px, calc(100% - 60px));

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



/* ============================================================
   LOGO
============================================================ */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.logo-icon {

    width: 38px;
    height: 38px;

    border-radius: 10px;

    display: flex;

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

    color: white;

    background:
        linear-gradient(
            135deg,
            #a855f7,
            #5b21b6
        );

    box-shadow:
        0 0 25px rgba(139,61,255,.35);

    font-size: 17px;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: -.3px;

}


.logo-text span {

    margin-top: 5px;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: .8px;

    color: #a9a9b7;

}

.logo img {
    width:130px;
}



/* ============================================================
   MENU DESKTOP
============================================================ */

.desktop-menu {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-left: auto;

    margin-right: 40px;

}


.desktop-menu a {

    position: relative;

    font-size: 10px;

    font-weight: 600;

    color: #d4d4dc;

    transition: color .25s ease;

}


.desktop-menu a:hover {

    color: #ffffff;

}


.desktop-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 5px;

    background: var(--purple);

    transition: width .25s ease;

}


.desktop-menu a:hover::after,
.desktop-menu a.active::after {

    width: 100%;

}


.desktop-menu a.active {

    color: #a855f7;

}



/* ============================================================
   BOTÃO HEADER
============================================================ */

.header-button {

    display: inline-flex;

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

    gap: 9px;

    min-width: 118px;

    height: 38px;

    padding: 0 18px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #9b45ff,
            #7131d8
        );

    color: white;

    font-size: 9px;

    font-weight: 700;

    box-shadow:
        0 8px 30px rgba(124,58,237,.25);

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

}


.header-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(124,58,237,.45);

}


.header-button i {

    font-size: 13px;

}



/* ============================================================
   MOBILE BUTTON
============================================================ */

.mobile-menu-button {

    display: none;

    width: 42px;
    height: 42px;

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

    border-radius: 10px;

    background: rgba(255,255,255,.04);

    cursor: pointer;

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

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-button span {

    width: 19px;
    height: 2px;

    background: white;

    border-radius: 10px;

    transition: .3s ease;

}


/* Hamburger vira X */

.mobile-menu-button.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}

.mobile-menu-button.active span:nth-child(2) {

    opacity: 0;

}

.mobile-menu-button.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}



/* ============================================================
   MENU MOBILE
============================================================ */

.mobile-menu {

    display: none;

}



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

.hero {

    position: relative;

    min-height: 650px;

    height: 100vh;

    max-height: 850px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 76% 45%,
            rgba(103,39,190,.22),
            transparent 32%
        ),

        radial-gradient(
            circle at 20% 70%,
            rgba(80,20,160,.08),
            transparent 35%
        ),

        #05050b;

}



/* ============================================================
   GLOWS
============================================================ */

.hero-glow {

    position: absolute;

    pointer-events: none;

    filter: blur(70px);

    border-radius: 50%;

}


.hero-glow-1 {

    width: 420px;
    height: 420px;

    right: -100px;
    top: 80px;

    background: rgba(91,33,182,.18);

}


.hero-glow-2 {

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -100px;

    background: rgba(124,58,237,.08);

}



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

.hero-container {

    position: relative;

    width: min(1180px, calc(100% - 60px));

    height: 100%;

    margin: auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

}



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

.hero-content {

    position: relative;

    z-index: 5;

    padding-top: 55px;

}



/* LABEL */

.hero-label {

    display: inline-flex;

    align-items: center;

    margin-bottom: 20px;

    color: #a855f7;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}



/* TÍTULO */

.hero h1 {

    font-size: clamp(42px, 4.2vw, 62px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 700;

}


.hero h1 span {

    color: #9b45ff;

    text-shadow:
        0 0 35px rgba(139,61,255,.18);

}



/* DESCRIÇÃO */

.hero-description {

    max-width: 510px;

    margin-top: 25px;

    color: #a7a7b5;

    font-size: 14px;

    line-height: 1.7;

}



/* ============================================================
   BOTÕES HERO
============================================================ */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

}


.btn-primary,
.btn-secondary {

    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 20px;

    border-radius: 11px;

    font-size: 10px;

    font-weight: 700;

    transition: .3s ease;

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            #a044ff,
            #7131d8
        );

    box-shadow:
        0 10px 35px rgba(124,58,237,.28);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(124,58,237,.45);

}


.btn-secondary {

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

    color: white;

    background: rgba(255,255,255,.015);

}


.btn-secondary:hover {

    background: rgba(139,61,255,.12);

    transform: translateY(-3px);

}


.btn-primary i {

    font-size: 12px;

}


.btn-secondary i {

    font-size: 10px;

}



/* ============================================================
   STATS
============================================================ */

.hero-stats {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 38px;

    padding-top: 22px;

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

}


.hero-stat {

    display: flex;

    align-items: center;

    gap: 9px;

}


.stat-icon {

    color: #a855f7;

    font-size: 14px;

}


.hero-stat div:last-child {

    display: flex;

    flex-direction: column;

}


.hero-stat strong {

    font-size: 15px;

    line-height: 1.1;

    font-weight: 700;

}


.hero-stat span {

    margin-top: 5px;

    color: #858593;

    font-size: 9px;

    white-space: nowrap;

}



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

.hero-visual {

    position: relative;

    height: 100%;

    min-height: 650px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

}



/* ============================================================
   IMAGEM
============================================================ */

.hero-image-wrapper {

    position: absolute;

    right: -90px;

    bottom: 0;

    width: 620px;

    height: 90%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

}


.hero-image {

    width: 90%;

    height: 100%;

    /* object-fit: contain; */

    object-position: center top;

    filter:
        drop-shadow(
            0 0 50px rgba(88,28,135,.20)
        );

}



/* ============================================================
   CARD ESPECIALISTA
============================================================ */

.expert-card {

    position: absolute;

    z-index: 10;

    right: -20px;

    bottom: 80px;

    width: 205px;

    padding: 19px;

    border-radius: 13px;

    background:
        rgba(16,15,30,.78);

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

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);

}


.expert-title {

    margin-bottom: 13px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

}


.expert-item {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    color: #c9c9d3;

    font-size: 9px;

}


.expert-item i {

    color: #a855f7;

    font-size: 11px;

    text-shadow:
        0 0 8px rgba(168,85,247,.7);

}



/* ============================================================
   PLACEHOLDER PRÓXIMA SEÇÃO
============================================================ */

.next-section-placeholder {

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #080810;

}


.next-section-placeholder span {

    color: #9145ed;

    font-size: 10px;

    letter-spacing: 2px;

}


.next-section-placeholder h2 {

    margin-top: 10px;

    font-size: 40px;

}



/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .header-container,
    .hero-container {

        width: min(100% - 40px, 900px);

    }


    .desktop-menu {

        gap: 22px;

        margin-right: 20px;

    }


    .hero-container {

        grid-template-columns: 52% 48%;

    }


    .hero h1 {

        font-size: 47px;

    }


    .hero-image-wrapper {

        right: -130px;

        width: 560px;

    }


    .expert-card {

        right: -10px;

    }


    .hero-stats {

        gap: 16px;

    }

}



/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {


    /* HEADER */

    .main-header {

        height: 70px;

    }


    .main-header.scrolled {

        height: 65px;

    }


    .header-container {

        width: calc(100% - 30px);

    }


    .desktop-menu,
    .header-button {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    /* MENU MOBILE */

    .mobile-menu {

        position: fixed;

        display: flex;

        flex-direction: column;

        gap: 5px;

        top: 70px;

        left: 0;

        width: 100%;

        height: calc(100vh - 70px);

        padding: 30px 25px;

        background:
            rgba(5,5,11,.97);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);

        transform: translateX(100%);

        transition: transform .35s ease;

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

    }


    .mobile-menu.active {

        transform: translateX(0);

    }


    .mobile-menu a {

        padding: 16px 5px;

        border-bottom: 1px solid rgba(255,255,255,.07);

        color: #ddd;

        font-size: 13px;

        font-weight: 600;

    }


    .mobile-menu-button-cta {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 10px;

        margin-top: 20px;

        border: 0 !important;

        border-radius: 10px;

        background:
            linear-gradient(
                135deg,
                #9b45ff,
                #7131d8
            );

    }


    /* HERO */

    .hero {

        min-height: 900px;

        height: auto;

        max-height: none;

    }


    .hero-container {

        width: calc(100% - 35px);

        min-height: 900px;

        padding-top: 110px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

    }


    .hero-content {

        padding-top: 20px;

        text-align: center;

    }


    .hero-label {

        justify-content: center;

        font-size: 9px;

    }


    .hero h1 {

        font-size: clamp(34px, 9vw, 48px);

        line-height: 1.1;

        letter-spacing: -1.5px;

    }


    .hero-description {

        margin: 22px auto 0;

        max-width: 430px;

        font-size: 13px;

    }


    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }


    .btn-primary,
    .btn-secondary {

        min-height: 44px;

        padding: 0 17px;

    }


    /* STATS */

    .hero-stats {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

        text-align: left;

        margin-top: 30px;

    }


    .hero-stat {

        justify-content: flex-start;

    }


    .hero-stat span {

        white-space: normal;

    }


    /* VISUAL */

    .hero-visual {

        height: 430px;

        min-height: 430px;

        margin-top: 20px;

    }


    .hero-image-wrapper {

        right: 50%;

        transform: translateX(50%);

        width: 470px;

        height: 430px;

    }


    .expert-card {

        right: 0;

        bottom: 20px;

        width: 190px;

        padding: 16px;

    }


    .next-section-placeholder {

        min-height: 400px;

    }

}



/* ============================================================
   MOBILE PEQUENO
============================================================ */

@media (max-width: 480px) {


    .logo-text strong {

        font-size: 11px;

    }


    .logo-text span {

        font-size: 6px;

    }


    .logo-icon {

        width: 34px;
        height: 34px;

    }


    .hero {

        min-height: 930px;

    }


    .hero-container {

        min-height: 930px;

    }


    .hero h1 {

        font-size: 35px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn-primary,
    .btn-secondary {

        width: 100%;

    }


    .hero-stats {

        gap: 15px 10px;

    }


    .hero-stat strong {

        font-size: 13px;

    }


    .hero-stat span {

        font-size: 8px;

    }


    .hero-visual {

        height: 400px;

        min-height: 400px;

    }


    .hero-image-wrapper {

        width: 390px;

        height: 390px;

    }


    .expert-card {

        right: -5px;

        bottom: 10px;

        width: 175px;

    }

}

/* ============================================================
   SECTION GLOBAL
============================================================ */

.section-container {

    width: min(1180px, calc(100% - 60px));

    margin: auto;

}


.section-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-label {

    margin-bottom: 13px;

    color: #a855f7;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.section-heading h2 {

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color: #9845ff;

}


.section-heading p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #9292a3;

    font-size: 13px;

    line-height: 1.7;

}



/* ============================================================
   SERVIÇOS
============================================================ */

.services-section {

    position: relative;

    padding: 110px 0;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(103,39,190,.08),
            transparent 35%
        ),

        #08080f;

}


.services-grid {

    display: grid;

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

    gap: 18px;

}


.service-card {

    position: relative;

    overflow: hidden;

    min-height: 270px;

    padding: 30px 27px;

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

    border-radius: 14px;

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

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(139,61,255,.10);

    filter: blur(30px);

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(139,61,255,.55);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35);

}


.service-number {

    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(255,255,255,.12);

    font-size: 12px;

    font-weight: 700;

}


.service-icon {

    position: relative;

    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 25px;

    border-radius: 12px;

    color: #a855f7;

    background: rgba(139,61,255,.11);

    border: 1px solid rgba(139,61,255,.18);

    font-size: 20px;

    box-shadow:
        0 0 30px rgba(139,61,255,.08);

}


.service-card h3 {

    position: relative;

    font-size: 17px;

    margin-bottom: 12px;

}


.service-card p {

    position: relative;

    color: #888897;

    font-size: 11px;

    line-height: 1.7;

}


.service-link {

    position: absolute;

    left: 27px;
    bottom: 24px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #a855f7;

    font-size: 10px;

    font-weight: 700;

}


.service-link i {

    transition: transform .25s ease;

}


.service-card:hover .service-link i {

    transform: translateX(5px);

}



/* ============================================================
   PORTFÓLIO
============================================================ */

.portfolio-section {

    padding: 120px 0;

    background: #05050b;

}


.portfolio-filters {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 38px;

}


.portfolio-filter {

    padding: 9px 17px;

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

    border-radius: 30px;

    background: rgba(255,255,255,.025);

    color: #9999a8;

    font-family: inherit;

    font-size: 10px;

    font-weight: 600;

    cursor: pointer;

    transition: .25s ease;

}


.portfolio-filter:hover {

    color: white;

    border-color: rgba(139,61,255,.4);

}


.portfolio-filter.active {

    color: white;

    border-color: transparent;

    background:
        linear-gradient(
            135deg,
            #9b45ff,
            #7131d8
        );

    box-shadow:
        0 8px 25px rgba(124,58,237,.2);

}


.portfolio-grid {

    display: grid;

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

    gap: 18px;

}


.portfolio-item {

    overflow: hidden;

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

    border-radius: 13px;

    background: #0b0b14;

    transition:
        transform .35s ease,
        opacity .35s ease;

}


.portfolio-item:hover {

    transform: translateY(-7px);

}


.portfolio-item.hidden {

    display: none;

}


.portfolio-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b14;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}


.portfolio-item:hover .portfolio-image img {

    transform: scale(1.06);

}


.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

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

    background:
        rgba(68,22,130,.45);

    opacity: 0;

    transition: opacity .3s ease;

}


.portfolio-item:hover .portfolio-overlay {

    opacity: 1;

}


.portfolio-view {

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: rgba(0,0,0,.35);

    color: white;

    cursor: pointer;

    backdrop-filter: blur(8px);

}


.portfolio-info {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 17px;

}


.portfolio-info span {

    display: block;

    margin-bottom: 5px;

    color: #a855f7;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;

}


.portfolio-info h3 {

    font-size: 12px;

}


.portfolio-info > i {

    color: #777786;

    font-size: 12px;

}


.portfolio-more {

    display: flex;

    justify-content: center;

    margin-top: 45px;

}



/* ============================================================
   PORTFÓLIO MODAL
============================================================ */

.portfolio-modal {

    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

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

    padding: 30px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.portfolio-modal.active {

    visibility: visible;

    opacity: 1;

}


.portfolio-modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.82);

    backdrop-filter: blur(12px);

}


.portfolio-modal-content {

    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow: auto;

    display: grid;

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

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

    border-radius: 18px;

    background: #0b0b14;

    box-shadow:
        0 40px 120px rgba(0,0,0,.7);

}


.portfolio-modal-close {

    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: rgba(0,0,0,.45);

    color: white;

    cursor: pointer;

}


.modal-image {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #05050b;
}

.modal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


.modal-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px;

}


.modal-info > span {

    margin-bottom: 12px;

    color: #a855f7;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.modal-info h2 {

    margin-bottom: 15px;

    font-size: 28px;

}


.modal-info p {

    margin-bottom: 25px;

    color: #9494a4;

    font-size: 12px;

    line-height: 1.8;

}



/* ============================================================
   PROCESSO
============================================================ */

.process-section {

    padding: 110px 0;

    background: #08080f;

}


.process-grid {

    position: relative;

    display: grid;

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

    gap: 20px;

}


.process-grid::before {

    content: "";

    position: absolute;

    top: 32px;

    left: 10%;

    right: 10%;

    border-top: 1px dashed rgba(139,61,255,.35);

}


.process-item {

    position: relative;

    z-index: 2;

    text-align: center;

}


.process-icon {

    width: 64px;
    height: 64px;

    display: flex;

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

    margin: 0 auto 15px;

    border: 1px solid rgba(139,61,255,.35);

    border-radius: 50%;

    background: #08080f;

    color: #a855f7;

    box-shadow:
        0 0 25px rgba(139,61,255,.08);

}


.process-number {

    margin-bottom: 8px;

    color: #a855f7;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


.process-item h3 {

    margin-bottom: 9px;

    font-size: 13px;

}


.process-item p {

    color: #7e7e8d;

    font-size: 10px;

    line-height: 1.6;

}



/* ============================================================
   SOBRE
============================================================ */

.about-section {

    padding: 120px 0;

    background: #05050b;

}


.about-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 90px;

}


.about-visual {

    position: relative;

    min-height: 500px;

}


.about-glow {

    position: absolute;

    width: 350px;
    height: 350px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(124,58,237,.18);

    filter: blur(70px);

}


.about-photo {

    position: relative;

    width: 85%;

    height: 500px;

    margin: auto;

    overflow: hidden;

    border-radius: 20px;

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

    background: #10101a;

}


.about-photo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.about-floating-card {

    position: absolute;

    right: 0;

    bottom: 35px;

    width: 180px;

    padding: 18px;

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

    border-radius: 14px;

    background: rgba(15,14,27,.85);

    backdrop-filter: blur(15px);

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

}


.about-floating-card strong {

    display: block;

    color: #a855f7;

    font-size: 32px;

}


.about-floating-card span {

    display: block;

    margin-top: 5px;

    color: #aaaab8;

    font-size: 9px;

    line-height: 1.5;

}


.about-content .section-label {

    margin-bottom: 15px;

}


.about-content h2 {

    max-width: 600px;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.about-content h2 span {

    color: #a855f7;

}


.about-content p {

    max-width: 600px;

    margin-top: 20px;

    color: #91919f;

    font-size: 13px;

    line-height: 1.8;

}


.about-skills {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: 30px 0;

}


.about-skills div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #c6c6d0;

    font-size: 11px;

}


.about-skills i {

    color: #a855f7;

}



/* ============================================================
   DEPOIMENTOS
============================================================ */

.testimonials-section {

    padding: 110px 0;

    background: #08080f;

}


.testimonials-grid {

    display: grid;

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

    gap: 20px;

}


.testimonial-card {

    padding: 30px;

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

    border-radius: 15px;

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

}


.testimonial-stars {

    margin-bottom: 20px;

    color: #a855f7;

    font-size: 13px;

    letter-spacing: 3px;

}


.testimonial-card > p {

    min-height: 100px;

    color: #b4b4c0;

    font-size: 12px;

    line-height: 1.8;

}


.testimonial-author {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 18px;

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

}


.testimonial-avatar {

    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b3dff,
            #45158f
        );

    color: white;

    font-size: 9px;

    font-weight: 700;

}


.testimonial-author strong {

    display: block;

    font-size: 10px;

}


.testimonial-author span {

    display: block;

    margin-top: 4px;

    color: #777786;

    font-size: 8px;

}



/* ============================================================
   CTA
============================================================ */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 70px 0;

    background:
        linear-gradient(
            110deg,
            #3b147c,
            #6022b5,
            #241047
        );

}


.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: -250px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    filter: blur(40px);

}


.cta-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.cta-content .section-label {

    color: #d8b9ff;

}


.cta-content h2 {

    max-width: 560px;

    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.1;

}


.cta-content h2 span {

    display: block;

    color: white;

}


.cta-content p {

    margin: 15px 0 25px;

    color: #d5c7e9;

    font-size: 12px;

}


.cta-content .btn-primary {

    background: white;

    color: #4f1a91;

}


.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.cta-benefits > div {
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.cta-benefits i {
    color: #e4cfff;
    font-size: 25px;
}


.cta-benefits span {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 18px;
    font-weight: 700;

}

.cta-benefits small {
    margin-top: 4px;
    color: #d2c3e5;
    font-size: 11px;
    font-weight: 400;
}



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

.footer {
    padding: 65px 0 20px;
    background: #030308;
    border-top: 1px solid rgba(255,255,255,.06);
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}


.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    color: #777786;
    font-size: 10px;
    line-height: 1.8;
}


.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}


.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    color: #888897;
    font-size: 11px;
    transition: .25s ease;
}


.footer-social a:hover {
    color: white;
    background: #7c3aed;
    border-color: #7c3aed;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-column h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 9px;
    letter-spacing: 1px;
}


.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #777786;
    font-size: 9px;
    transition: color .2s ease;
}


.footer-column a:hover {
    color: #a855f7;
}


.footer-column a i {
    color: #8b3dff;
}


.footer-contact-button {
    margin-top: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    color: white !important;
    background: #7131d8;
}

.footer-contact-button i {
    margin-top: 8px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #555562;
    font-size: 8px;
}

/* Whats App*/
/*ICONE WHATSaPP*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: invert(1); /* deixa branco dentro do botão verde */
}


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

@media (max-width: 1000px) {

    .services-grid {

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

    }


    .portfolio-grid {

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

    }


    .process-grid {

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

        gap: 35px;

    }


    .process-grid::before {

        display: none;

    }


    .about-grid {

        gap: 40px;

    }


    .footer-grid {

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

    }

}


@media (max-width: 768px) {

    .section-container {

        width: calc(100% - 35px);

    }


    .services-section,
    .portfolio-section,
    .process-section,
    .about-section,
    .testimonials-section {

        padding: 80px 0;

    }


    .services-grid,
    .portfolio-grid,
    .testimonials-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 250px;

    }


    .portfolio-modal-content {

        grid-template-columns: 1fr;

        max-height: 90vh;

    }


    /* .modal-image {
        min-height: 250px;
        max-height: 300px;
    } */

    .modal-image {
        aspect-ratio: 16 / 9;
    }


    .modal-info {

        padding: 25px;

    }


    .process-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-visual {

        min-height: 430px;

    }


    .about-photo {

        height: 430px;

    }


    .about-content {

        text-align: center;

    }


    .about-content .section-label {

        text-align: center;

    }


    .about-content p {

        margin-left: auto;
        margin-right: auto;

    }


    .about-skills {

        text-align: left;

    }


    .cta-content {

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-benefits {

        width: 100%;

    }


    .cta-benefits > div {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

    }

}


@media (max-width: 480px) {

    .portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.portfolio-filters button {
    white-space: nowrap;
}


    .portfolio-filter {

        flex-shrink: 0;

    }


    .about-skills {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-bottom {

        flex-direction: column;

    }

}

/* ============================================================
   SCROLL REVEAL
============================================================ */

.service-card,
.portfolio-item,
.process-item,
.testimonial-card {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}


.service-card.visible,
.portfolio-item.visible,
.process-item.visible,
.testimonial-card.visible {

    opacity: 1;

    transform: translateY(0);

}