/* =====================================================
   DEPLOY SECTION
===================================================== */

.deploy-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.deploy-badge {
    display: inline-flex;
    padding: 14px 26px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .95rem;
    margin-bottom: 35px;
}

.deploy-title {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .92;
    letter-spacing: -4px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.deploy-description {
    color: #9a9a9a;
    font-size: 1.15rem;
    line-height: 2;
    max-width: 520px;
}

.deploy-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.stat-box {
    width: 180px;
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
}

.stat-box h3 {
    font-size: 3rem;
    color: #d90429;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box span {
    color: #fff;
}

/* =====================================================
   GLOBO
===================================================== */

.globe-wrapper {

    position: relative;

    width: 100%;

    min-height: 750px;

    height: 750px;

    border-radius: 40px;

    overflow: hidden;

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

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

    backdrop-filter: blur(20px);
}

#globeViz {

    position: absolute;

    top: 0;
    left: 0;

    width: 100% !important;

    height: 100% !important;

    min-height: 750px;
}

/* força o canvas interno do globe */

#globeViz canvas {

    width: 100% !important;

    height: 100% !important;

    display: block !important;
}

.globe-location {
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-dot {

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #d90429;

    box-shadow:
        0 0 0 8px rgba(217, 4, 41, .15),
        0 0 30px rgba(217, 4, 41, .8);

    animation: pulseMarker 2s infinite;
}

.location-card {

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 240px;

    padding: 14px 18px;

    border-radius: 20px;

    background: rgba(10, 10, 10, .92);

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

    backdrop-filter: blur(20px);

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

.location-flag {
    font-size: 2rem;
}

.location-info strong {

    display: block;

    color: #fff;

    font-size: 1rem;

    font-weight: 700;
}

.location-info span {

    color: #9a9a9a;

    font-size: .85rem;
}

@keyframes pulseMarker {

    0% {

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(217, 4, 41, .5);
    }

    70% {

        transform: scale(1.15);

        box-shadow:
            0 0 0 20px rgba(217, 4, 41, 0);
    }

    100% {

        transform: scale(1);
    }

}

/* =====================================================
   GLOBE MARKERS PREMIUM
===================================================== */

.globe-location {
    position: relative;
}

.location-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #a3001e;

    box-shadow:
        0 0 0 6px rgba(163, 0, 30, .12),
        0 0 15px rgba(163, 0, 30, .7);

    animation: pulseMarker 2.5s infinite;
}

.location-card {

    position: absolute;

    left: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    min-width: 170px;

    background: rgba(8, 8, 8, .95);

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

    border-radius: 16px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .45);

    z-index: 999;
}

.location-flag {

    width: 34px;
    height: 34px;

    border-radius: 50%;

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

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

    font-size: 1.1rem;

    flex-shrink: 0;
}

.location-info strong {

    display: block;

    color: #fff;

    font-size: .92rem;

    font-weight: 700;

    margin-bottom: 2px;
}

.location-info span {

    color: #8a8a8a;

    font-size: .75rem;
}

/* Miami */

.globe-location:nth-child(1) .location-card {

    top: -55px;
    left: 18px;
}

/* São Paulo */

.globe-location:nth-child(2) .location-card {

    top: -15px;
    left: 28px;
}

/* Rio */

.globe-location:nth-child(3) .location-card {

    top: 35px;
    left: 45px;
}

@keyframes pulseMarker {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}