/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050507;
    color: #fff;
}

/* CONTAINER */
.wz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.wz-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.wz-header.scrolled {
    background: rgba(10, 15, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {
    height: 42px;
}

/* BOTÕES */
.btn-primary {
    background: linear-gradient(135deg, #6fdc8c, #2f7f68);
    color: #000;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(111, 220, 140, 0.4);
}

.btn-primary.big {
    padding: 14px 26px;
    font-size: 16px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* HERO */
.wz-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* FUNDO */
.hero-bg {
    position: absolute;
    inset: 0;

    background:
        /* OVERLAY MAIS LEVE */
        linear-gradient(rgba(5, 5, 7, 0.55), rgba(5, 5, 7, 0.75)),

        /* IMAGEM */
        url('hero.jpg') center/cover no-repeat,

        /* GLOW DA MARCA */
        radial-gradient(circle at 20% 30%, rgba(111, 220, 140, 0.18), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(47, 127, 104, 0.22), transparent 55%);

    z-index: 0;
    transform: scale(1.1) translateY(var(--parallaxY, 0px));
    animation: heroFloat 12s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(111, 220, 140, 0.1), transparent 60%);
    mix-blend-mode: screen;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.8;
    }
}

@keyframes floatBg {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.1) translateY(-20px);
    }
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* TITLE */
.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #6fdc8c, #2f7f68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUB */
.hero-sub {
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.8;
}

/* ACTIONS */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .btn-primary.big {
        width: 100%;
        text-align: center;
    }

}

/* ===== BASE ===== */
.reveal-title,
.reveal-sub,
.reveal-actions {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
}

/* ===== ANIMAÇÃO ===== */
.hero-loaded .reveal-title {
    animation: revealUp 0.9s ease forwards;
}

.hero-loaded .reveal-sub {
    animation: revealUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.hero-loaded .reveal-actions {
    animation: revealUp 0.9s ease forwards;
    animation-delay: 0.4s;
}

/* ===== KEYFRAME ===== */
@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ===== PARALLAX BASE ===== */
.hero-bg {
    will-change: transform;
}

/* ===== GLOW DINÂMICO ===== */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 220, 140, 0.25), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ===== PARTICULAS ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(111, 220, 140, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0.5;
}

@keyframes floatParticle {
    from {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }

    to {
        transform: translateY(-10vh) scale(1);
        opacity: 1;
    }
}

/* ===== BOTÃO MAIS VIVO ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover::after {
    animation: shine 0.8s;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.header-actions {
    display: inline-flex;
}

/* SECTION BASE */
.wz-section {
    padding: 100px 0;
    position: relative;
}

/* PROBLEM BG */
.wz-problem {
    background: linear-gradient(180deg, #050507, #0a0f0c);
}

/* HEADER */
.wz-problem-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.wz-badge {
    display: inline-block;
    background: rgba(111, 220, 140, 0.1);
    color: #6fdc8c;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 15px;
}

.wz-title {
    font-size: 40px;
    line-height: 1.2;
}

/* GRID */
.wz-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.wz-problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.wz-problem-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.wz-problem-card p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER */
.wz-problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 220, 140, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* REVEAL */
.wz-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.wz-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.wz-reveal-left {
    transform: translateX(-40px);
}

.wz-reveal-right {
    transform: translateX(40px);
}

/* MOBILE */
@media (max-width: 900px) {
    .wz-problem-grid {
        grid-template-columns: 1fr;
    }

    .wz-title {
        font-size: 28px;
    }
}

/* SERVICES BG */
.wz-services {
    background: radial-gradient(circle at top, rgba(111, 220, 140, 0.08), transparent 60%),
        #050507;
}

/* HEADER */
.wz-services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.wz-sub {
    margin-top: 15px;
    opacity: 0.7;
}

/* GRID */
.wz-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.wz-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* ICON */
.wz-service-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TITLE */
.wz-service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.wz-service-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

/* GLOW HOVER */
.wz-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(111, 220, 140, 0.25), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.wz-service-card:hover::before {
    opacity: 1;
}

/* HOVER */
.wz-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(111, 220, 140, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* MOBILE */
@media (max-width: 900px) {
    .wz-services-grid {
        grid-template-columns: 1fr;
    }
}

/* BACKGROUND MAIS FORTE */
.wz-differential {
    background: radial-gradient(circle at center, rgba(111, 220, 140, 0.12), transparent 60%),
        linear-gradient(180deg, #050507, #020303);
    text-align: center;
}

/* HEADER */
.wz-diff-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

/* TITLE */
.wz-diff-title {
    font-size: 44px;
    line-height: 1.2;
    margin-top: 10px;
}

.wz-diff-title span {
    background: linear-gradient(90deg, #6fdc8c, #2f7f68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUB */
.wz-diff-sub {
    margin-top: 15px;
    opacity: 0.7;
}

/* GRID */
.wz-diff-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* ITEM */
.wz-diff-item {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.wz-diff-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.wz-diff-item p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

/* HOVER */
.wz-diff-item:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 220, 140, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* CTA */
.wz-diff-cta {
    max-width: 600px;
    margin: 0 auto;
}

.wz-diff-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.wz-diff-cta strong {
    color: #6fdc8c;
}

/* MOBILE */
@media (max-width: 900px) {
    .wz-diff-points {
        grid-template-columns: 1fr;
    }

    .wz-diff-title {
        font-size: 30px;
    }
}

/* BACKGROUND */
.wz-processo {
    background: linear-gradient(180deg, #020303, #050507);
    text-align: center;
}

/* HEADER */
.wz-processo-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* TIMELINE */
.wz-processo-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-bottom: 60px;
}

/* LINHA */
.wz-processo-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(111, 220, 140, 0.4), transparent);
}

/* STEP */
.wz-step {
    position: relative;
    padding-top: 60px;
}

/* NUMBER */
.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0a0f0c;
    border: 1px solid rgba(111, 220, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6fdc8c;
    box-shadow: 0 0 20px rgba(111, 220, 140, 0.2);
}

/* TEXT */
.wz-step h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.wz-step p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

/* CTA */
.wz-processo-cta {
    margin-top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .wz-processo-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wz-processo-timeline::before {
        display: none;
    }

    .wz-step {
        padding-top: 0;
    }

    .step-number {
        position: relative;
        margin-bottom: 10px;
        transform: none;
        left: auto;
    }
}

/* BACKGROUND */
.wz-projects {
    background: radial-gradient(circle at bottom, rgba(111, 220, 140, 0.06), transparent 60%),
        #050507;
    text-align: center;
}

/* HEADER */
.wz-projects-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* GRID */
.wz-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.wz-project-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    overflow: hidden;
}

/* TEXTO */
.wz-project-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.wz-project-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

/* EFEITO HOVER DIFERENTE */
.wz-project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(111, 220, 140, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.wz-project-card:hover::before {
    opacity: 1;
}

/* HOVER */
.wz-project-card:hover {
    transform: scale(1.05);
    border-color: rgba(111, 220, 140, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* MOBILE */
@media (max-width: 900px) {
    .wz-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* BACKGROUND */
.wz-cta-final {
    background: radial-gradient(circle at center, rgba(111, 220, 140, 0.15), transparent 70%),
        linear-gradient(180deg, #020303, #050507);
    text-align: center;
}

/* BOX */
.wz-cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(111, 220, 140, 0.2);
    box-shadow: 0 0 80px rgba(111, 220, 140, 0.1);
}

/* TITLE */
.wz-cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* TEXT */
.wz-cta-box p {
    opacity: 0.7;
    margin-bottom: 25px;
}

/* BOTÃO MAIS FORTE */
.wz-cta-box .btn-primary {
    font-size: 18px;
    padding: 16px 32px;
}

/* NOTE */
.cta-note {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.5;
}

/* HOVER EXTRA (reforço leve) */
.wz-cta-box:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .wz-cta-box h2 {
        font-size: 26px;
    }

    .wz-cta-box {
        padding: 40px 20px;
    }
}

/* FOOTER BASE */
.wz-footer {
    background: #020303;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.wz-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* BRAND */
.wz-footer-brand img {
    height: 40px;
    margin-bottom: 15px;
}

.wz-footer-brand p {
    opacity: 0.6;
    font-size: 14px;
    max-width: 300px;
}

/* COL */
.wz-footer-col h4 {
    margin-bottom: 12px;
    font-size: 14px;
}

.wz-footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 6px;
    transition: 0.3s;
}

.wz-footer-col a:hover {
    opacity: 1;
    color: #6fdc8c;
}

/* BOTTOM */
.wz-footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.4;
}

/* MOBILE */
@media (max-width: 768px) {
    .wz-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wz-footer-brand p {
        margin: 0 auto;
    }
    .header-actions {
        display: none;
    }
    .header-inner {
        flex-direction: column;
    }
}

.hero-bg {
    transform: scale(1);
    /* 🔥 mantém constante */
    will-change: transform;
}
.hero-bg {
    transform: scale(1.1);
    will-change: transform;
    animation: heroFloat 12s ease-in-out infinite alternate;
}

/* ANIMAÇÃO SUAVE */
@keyframes heroFloat {
    0% {
        transform: scale(1.1) translateY(0px) translateX(0px);
    }
    50% {
        transform: scale(1.12) translateY(-10px) translateX(5px);
    }
    100% {
        transform: scale(1.1) translateY(5px) translateX(-5px);
    }
}