/* ============================================================================
   BIG NUMBER REVEAL SECTION — DUAL-LAYER CSS3 (BEM ARCHITECTURE)
   ============================================================================ */

.bignumber-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 10;
}

.bignumber-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.bignumber-wrapper:nth-of-type(2) {
    z-index: 2;
}

.bignumber-wrapper:nth-of-type(3) {
    z-index: 3;
}

.bignumber-wrapper:nth-of-type(4) {
    z-index: 4;
}

.bignumber-wrapper:nth-of-type(5) {
    z-index: 5;
}

.bignumber-wrapper:nth-of-type(6) {
    z-index: 6;
}

.bignumber-wrapper:nth-of-type(7) {
    z-index: 7;
}

.bignumber-layer {
    width: 100%;
}

.bignumber-layer--light {
    position: relative;
    background-color: #F9FAFB;
    z-index: 1;
}

.bignumber-layer--dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2;
    pointer-events: none;
}

.bignumber-layer--dark .bignumber-col {
    clip-path: inset(0 100% 0 0);
    pointer-events: auto;
}

.bignumber-grid {
    display: flex;
    width: 100%;
    height: 100%;
}

.bignumber-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bignumber-col--left {
    padding: 60px;
}

.bignumber-col--dark-bg {
    background-color: #69BAD2;
}

.bignumber-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bignumber-number {
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #7DB8CC;
    line-height: 1.1;
    margin-bottom: 24px;
}

.bignumber-number--white {
    color: #FFFFFF;
}

.bignumber-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.bignumber-desc--white {
    color: #E5E7EB;
}

.bignumber-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bignumber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bignumber-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.4), transparent);
}

.bignumber-right-text {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.bignumber-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    font-family: 'Comfortaa', sans-serif;
}

.bignumber-subtitle {
    color: #FFFFFF;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .bignumber-grid {
        flex-direction: column;
    }

    .bignumber-col--left {
        padding: 40px;
    }

    .bignumber-col--right {
        min-height: 50vh;
    }

    .bignumber-layer--dark .bignumber-grid {
        flex-direction: column;
    }

    .bignumber-number {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .bignumber-right-text {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        align-items: center;
        width: 90%;
    }

    .bignumber-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .bignumber-col--left {
        padding: 24px;
    }
}

/* ============================================================================
   INTEGRATED SECTION HEADER (FORMER MEMBERSHIP HERO)
   ============================================================================ */
.membership-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 100px;
    background: #FCF9F1;
    overflow: hidden;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-bottom: 1px solid #E5E7EB;
    z-index: 1;
    /* Para evitar vazamento do painel inferior */
}

.membership-hero__cross {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.membership-hero__cross::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    transform: translateY(-50%);
}

.membership-hero__cross::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.06);
    transform: translateX(-50%);
}

.membership-hero__dial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 540px;
    height: 540px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.membership-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.membership-hero__title {
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.6rem, 5.8vw, 5.2rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111827;
    margin: 0;
    padding: 0;
}

.membership-hero__subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: #374151;
    margin: 24px 0 0 0;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

.membership-hero__word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.24em;
    padding-top: 0.2em;
    margin-top: -0.2em;
    padding-bottom: 0.08em;
}

.membership-hero__word-wrap:last-child {
    margin-right: 0;
}

.membership-hero__word {
    display: inline-block;
    transform: translateY(115%);
    will-change: transform;
}

.membership-hero__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 52px;
    opacity: 0;
    transform: translateY(16px);
    will-change: transform, opacity;
}

.membership-hero__avatars {
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.membership-hero__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.5px solid #FFFFFF;
    margin-left: -12px;
    object-fit: cover;
    background-color: #E5E7EB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0.25s ease;
}

.membership-hero__avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.membership-hero__social-text {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #374151;
    letter-spacing: -0.015em;
}

@media screen and (max-width: 768px) {
    .membership-hero {
        min-height: 440px;
        padding: 70px 20px 50px;
    }

    .membership-hero__title {
        font-size: clamp(2.8rem, 8.5vw, 4rem);
    }

    .membership-hero__subtitle {
        font-size: clamp(1rem, 3vw, 1.15rem);
        margin-top: 20px;
    }

    .membership-hero__dial {
        width: 420px;
        height: 420px;
    }

    .membership-hero__footer {
        margin-top: 40px;
        gap: 12px;
    }

    .membership-hero__avatar {
        width: 38px;
        height: 38px;
        margin-left: -10px;
    }

    .membership-hero__social-text {
        font-size: 0.98rem;
    }

    .membership-hero__br {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .membership-hero {
        min-height: 380px;
        padding: 60px 16px 40px;
    }

    .membership-hero__title {
        font-size: clamp(2.8rem, 11vw, 3.2rem);
        line-height: 1.12;
    }

    .membership-hero__subtitle {
        font-size: 1.05rem;
        line-height: 1.55;
        margin-top: 16px;
        padding: 0 8px;
    }

    .membership-hero__dial {
        width: 330px;
        height: 330px;
    }

    .membership-hero__footer {
        margin-top: 32px;
        gap: 10px;
    }

    .membership-hero__avatar {
        width: 34px;
        height: 34px;
        margin-left: -8px;
    }

    .membership-hero__social-text {
        font-size: 0.92rem;
    }
}