.cta-statement {
    height: 100vh;
    background: #00010D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    /* Grain texture cinematográfico */
    .cta-statement::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.035;
        pointer-events: none;
    }

/* Linha teal que se expande na entrada */
.cta-statement__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3FA6A6, transparent);
    transition: width 1.2s cubic-bezier(.16,1,.3,1);
}

.cta-statement.is-visible .cta-statement__line {
    width: 100%;
}

/* Conteúdo sobe com fade */
.cta-statement__content {
    text-align: center;
    z-index: 1;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s 0.3s ease, transform 0.9s 0.3s cubic-bezier(.16,1,.3,1);
}

.cta-statement.is-visible .cta-statement__content {
    opacity: 1;
    transform: translateY(0);
}

.cta-statement__title {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 64px);
    color: #FFF;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-statement__sub {
    font: 400 18px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: rgba(255,255,255,0.45);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.cta-statement__btn {
    border: 1.5px solid #3FA6A6;
    background: transparent;
    color: #3FA6A6;
    text-decoration: none;
    display: inline-block;
    font: 650 16px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    padding: 16px 44px;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.16,1,.3,1);
}

    .cta-statement__btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s;
    }

    .cta-statement__btn:hover::before {
        left: 100%;
    }

    .cta-statement__btn:hover {
        background: linear-gradient(135deg, #F2561D, #3FA6A6);
        border-color: transparent;
        color: #000;
        transform: scale(1.04);
    }

@media (max-width: 768px) {
    .cta-statement__title {
        font-size: clamp(22px, 6vw, 36px);
    }

    .cta-statement__sub {
        font-size: 15px;
    }

    .cta-statement__btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}
