*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --cor-fundo: #02021a;
    --cor-fundo-2: #070727;
    --cor-card: rgba(17, 17, 58, 0.72);
    --cor-card-forte: rgba(26, 26, 77, 0.92);
    --cor-borda: rgba(255,255,255,0.06);
    --cor-texto: #ffffff;
    --cor-texto-suave: rgba(255,255,255,0.82);
    --cor-texto-fraco: rgba(255,255,255,0.42);
    --cor-destaque: #bf6576;
    --cor-destaque-hover: #d97e90;
    --cor-pill-1: #17174b;
    --cor-pill-2: #3422b6;
    --cor-pill-3: #c97787;
    --sombra: 0 18px 45px rgba(0,0,0,0.35);
    --sombra-forte: 0 25px 70px rgba(0,0,0,0.45);
    --blur-card: blur(18px);
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top center, #09092f 0%, #04041d 38%, #020212 100%);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    max-width: 100%;
    display: block;
}

ul{
    list-style: none;
}

.container{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CLASSES GERAIS */
.card-vidro{
    background: rgba(255,255,255,0.03);
    backdrop-filter: var(--blur-card);
    -webkit-backdrop-filter: var(--blur-card);
    border: 1px solid rgba(255,255,255,0.06);
}

.secao-animada{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.secao-animada.mostrar{
    opacity: 1;
    transform: translateY(0);
}

.btn-principal,
.btn-secundario{
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-align: center;
}

.btn-principal{
    background: linear-gradient(135deg, var(--cor-destaque), #d58194);
    color: #fff;
    box-shadow: 0 10px 24px rgba(191,101,118,0.22);
}

.btn-principal:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(191,101,118,0.30);
}

.btn-secundario{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: #fff;
}

.btn-secundario:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
}

.cta-final{
    text-align: center;
    margin-top: 32px;
}

/* TOPO */
.topo-site{
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 2, 26, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.topo-container{
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area{
    display: flex;
    align-items: center;
    min-width: 180px;
}

.logo{
    width: 138px;
    height: auto;
}

.menu-site{
    display: flex;
    align-items: center;
    gap: 46px;
}

.menu-site a{
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    transition: 0.3s ease;
    position: relative;
}

.menu-site a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--cor-destaque);
    transition: 0.3s ease;
}

.menu-site a:hover,
.menu-site a.ativo{
    color: var(--cor-destaque);
}

.menu-site a:hover::after,
.menu-site a.ativo::after{
    width: 100%;
}

.btn-menu-mobile{
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-menu-mobile span{
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: 0.3s ease;
}

.menu-mobile{
    display: none;
    padding: 0 20px 20px;
    background: rgba(4, 4, 24, 0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-mobile a{
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #fff;
}

.menu-mobile a.ativo{
    color: var(--cor-destaque);
}

/* HERO */
.hero{
    position: relative;
    padding: 78px 0 0;
    overflow: hidden;
}

.bg-blur{
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
}

.bg-blur-1{
    width: 280px;
    height: 280px;
    background: #962d71;
    top: 160px;
    left: -70px;
}

.bg-blur-2{
    width: 340px;
    height: 340px;
    background: #2f38ff;
    right: -90px;
    bottom: 120px;
}

.hero-container{
    position: relative;
    z-index: 2;
}

.hero-texto{
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.hero-mini-titulo{
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(191,101,118,0.10);
    border: 1px solid rgba(191,101,118,0.18);
    color: #ef9dad;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-texto h1{
    font-size: 58px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.hero-texto h1 span{
    color: var(--cor-destaque);
    font-weight: 700;
}

.hero-texto p{
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255,255,255,0.86);
}

.hero-botoes{
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual{
    display: grid;
    grid-template-columns: 225px 1fr 225px;
    align-items: center;
    gap: 30px;
}

.hero-card-esquerda{
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--sombra);
}

.barra-busca{
    min-height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 22px;
    font-size: 15px;
    font-weight: 600;
}

.icone-lupa{
    font-size: 20px;
    line-height: 1;
    opacity: 0.92;
}

.hero-card-esquerda ul li{
    color: rgba(255,255,255,0.80);
    margin-bottom: 14px;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

.hero-card-esquerda ul li::before{
    content: "•";
    color: var(--cor-destaque);
    position: absolute;
    left: 0;
    top: 0;
}

.hero-imagem-centro{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-personagem{
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto -6px;
    filter: drop-shadow(0 22px 55px rgba(0,0,0,0.42));
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar{
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-8px); }
    100%{ transform: translateY(0px); }
}

.hero-card-direita{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pill{
    min-height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: var(--sombra);
    transition: 0.3s ease;
}

.pill:hover{
    transform: translateX(4px);
}

.pill-1{
    background: var(--cor-pill-1);
}

.pill-2{
    background: var(--cor-pill-2);
}

.pill-3{
    background: var(--cor-pill-3);
}

/* PROVA RÁPIDA */
.prova-rapida{
    padding: 18px 0 38px;
    text-align: center;
}

.prova-rapida p{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* SEÇÕES */
.projetos,
.servicos,
.sobre,
.contato{
    padding: 100px 0;
}

.projetos{
    padding-top: 72px;
}

.secao-topo{
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.secao-topo span,
.sobre-texto span{
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cor-destaque);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secao-topo h2,
.sobre-texto h2{
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.secao-topo p,
.sobre-texto p{
    color: var(--cor-texto-suave);
    font-size: 17px;
}

/* PROJETOS */
.card-projeto{
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(18,18,69,0.92), rgba(11,11,42,0.96));
    box-shadow: var(--sombra);
    transition: 0.35s ease;
}

.card-projeto:hover{
    transform: translateY(-8px);
    border-color: rgba(191,101,118,0.38);
    box-shadow: var(--sombra-forte);
}

.projeto-thumb{
    height: 240px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.projeto-img-1{
    background-image: url('../img/projeto1.png');
}

.projeto-img-2{
    background-image: url('../img/projeto2.png');
}

.projeto-img-3{
    background-image: url('../img/projeto3.png');
}

.projeto-img-4{
    background-image: url('../img/projeto4.png');
}

.projeto-img-5{
    background-image: url('../img/projeto5.png');
}

.projeto-img-6{
    background-image: url('../img/projeto6.png');
}

.card-projeto-conteudo{
    padding: 28px;
}

.categoria{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-destaque);
}

.card-projeto-conteudo h3{
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-projeto-conteudo p{
    color: var(--cor-texto-suave);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.link-projeto{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-destaque);
    font-weight: 700;
    transition: 0.3s ease;
}

.link-projeto:hover{
    color: #e992a4;
    transform: translateX(4px);
}

/* CARROSSEL DE PROJETOS */
.carrossel-projetos-wrap{
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.carrossel-projetos{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.carrossel-projetos .card-projeto{
    min-width: 0;
}

.carrossel-btn{
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.carrossel-btn span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.carrossel-btn:hover{
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
}

/* SERVIÇOS */
.grid-servicos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card-servico{
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--sombra);
    transition: 0.3s ease;
    min-height: 170px;
}

.card-servico:hover{
    transform: translateY(-4px);
    border-color: rgba(191,101,118,0.22);
}

.card-servico h3{
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
    color: #fff;
}

.card-servico p{
    font-size: 15px;
    line-height: 1.6;
    color: var(--cor-texto-suave);
}

/* SOBRE */
.sobre-container{
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
    align-items: center;
}

.sobre-box{
    display: grid;
    gap: 20px;
}

.item-sobre{
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--sombra);
    transition: 0.3s ease;
}

.item-sobre:hover{
    transform: translateY(-4px);
}

.item-sobre h3{
    margin-bottom: 8px;
    font-size: 22px;
}

.item-sobre p{
    color: var(--cor-texto-suave);
}

/* CTA ESTRATÉGICO */
.cta-estrategico{
    padding: 40px 0 100px;
}

.cta-estrategico-box{
    text-align: center;
    padding: 42px 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(191,101,118,0.18), rgba(47,56,255,0.12)),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--sombra-forte);
}

.cta-estrategico-box span{
    display: inline-block;
    margin-bottom: 14px;
    color: #ef9dad;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-estrategico-box h2{
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 600;
}

.cta-estrategico-box p{
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--cor-texto-suave);
    font-size: 17px;
}

/* CONTATO */
.contato-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 34px;
}

.contato-card{
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: 0.3s ease;
}

.contato-card:hover{
    transform: translateY(-4px);
}

.contato-card h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.contato-card p,
.contato-card a{
    color: var(--cor-texto-suave);
}

.contato-card a:hover{
    color: var(--cor-destaque);
}

/* RODAPÉ */
.rodape-site{
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.frase-rodape{
    font-size: 18px;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 10px;
    font-weight: 300;
    color: #ffffff;
}

.copy{
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor-pill-2), var(--cor-destaque));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.35);
    z-index: 999;
    transition: 0.3s ease;
}

.whatsapp-float:hover{
    transform: translateY(-4px) scale(1.06);
}

.whatsapp-float span{
    transform: translateY(-1px);
}

.whatsapp-float::after{
    content: "Fale comigo";
    position: absolute;
    right: 74px;
    white-space: nowrap;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after{
    opacity: 1;
}

/* 404 */
.erro-404{
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.erro-404 h1{
    font-size: 50px;
    margin-bottom: 14px;
    font-weight: 300;
}

.erro-404 p{
    color: var(--cor-texto-suave);
    margin-bottom: 24px;
}

/* RESPONSIVO */
@media(max-width: 1100px){
    .hero-visual{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-card-esquerda,
    .hero-card-direita{
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .carrossel-projetos{
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .grid-servicos,
    .sobre-container,
    .contato-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 900px){
    .menu-site{
        display: none;
    }

    .btn-menu-mobile{
        display: flex;
    }

    .menu-mobile.ativo{
        display: block;
    }

    .hero{
        padding-top: 54px;
    }

    .hero-texto h1{
        font-size: 52px;
    }

    .secao-topo h2,
    .sobre-texto h2{
        font-size: 38px;
    }

    .hero-personagem{
        max-width: 360px;
    }

    .frase-rodape{
        font-size: 17px;
    }

    .grid-servicos{
        grid-template-columns: 1fr;
    }

    .card-servico{
        min-height: auto;
    }
}

@media(max-width: 700px){
    .carrossel-projetos-wrap{
        gap: 10px;
    }

    .carrossel-projetos{
        grid-auto-columns: 100%;
    }

    .carrossel-btn{
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .carrossel-btn span{
        font-size: 22px;
    }
}

@media(max-width: 600px){
    .topo-container{
        min-height: 74px;
    }

    .logo{
        width: 118px;
    }

    .hero-texto{
        margin-bottom: 34px;
    }

    .hero-mini-titulo{
        font-size: 12px;
    }

    .hero-texto h1{
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-texto p{
        font-size: 15px;
        line-height: 1.45;
    }

    .hero-botoes{
        flex-direction: column;
    }

    .btn-principal,
    .btn-secundario{
        width: 100%;
    }

    .hero-personagem{
        max-width: 270px;
    }

    .secao-topo h2,
    .sobre-texto h2{
        font-size: 30px;
    }

    .hero-card-esquerda,
    .card-projeto-conteudo,
    .card-servico,
    .contato-card,
    .item-sobre{
        padding: 22px;
    }

    .pill{
        font-size: 14px;
        min-height: 44px;
    }

    .card-servico h3{
        font-size: 20px;
    }

    .card-servico p{
        font-size: 14px;
    }

    .cta-estrategico-box{
        padding: 30px 22px;
    }

    .cta-estrategico-box h2{
        font-size: 30px;
    }

    .whatsapp-float{
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .frase-rodape{
        font-size: 16px;
    }

    .copy{
        font-size: 13px;
    }
}