/* ===== RESET E ENCAPSULAMENTO TOTAL ===== */
#globoglobe_wrapper_section {
    box-sizing: border-box;
    font-family: 'Source Code Pro', monospace;
    background-color: #fff;
    color: #000;
    padding: 4rem 0;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
    padding-top: 100px;
}

#globoglobe_wrapper_section *,
#globoglobe_wrapper_section *::before,
#globoglobe_wrapper_section *::after {
    box-sizing: inherit;
}

.globo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.globo_header {
    margin-bottom: 2rem;
}

.globo_title {
    font-family: 'Orbitron', sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.globo_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #000;
}

.globo_divider {
    height: 1px;
    background-color: #000;
    border: none;
    margin: 2rem 0;
}

/* ===== LAYOUT ===== */
.globo_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.globo_col_left {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
}

.globo_col_right {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
}

/* ===== GLOBO ===== */
.globo_globe_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 600px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(176, 180, 185, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.globo_globe_canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    cursor: grab;
}

.globo_globe_canvas:active {
    cursor: grabbing;
}

.globo_globe_canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.globo_hidden {
    display: none;
}

/* ===== BOTÃO DE CONTROLE DO GLOBO ===== */
.globo_globe_btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.globo_globe_btn:hover {
    background-color: #000;
    transform: scale(1.1);
}

.globo_globe_btn:hover .globo_icon {
    stroke: #fff;
}

.globo_icon {
    width: 14px;
    height: 14px;
    stroke: #000;
    transition: stroke 0.3s ease;
}

.globo_globe_btn.paused .globo_icon_pause {
    display: none;
}

.globo_globe_btn:not(.paused) .globo_icon_play {
    display: none;
}

/* ===== SLIDER ===== */
.globo_slider {
    margin-bottom: 2rem;
    position: relative;
}

.globo_slides {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 140px;
}

.globo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.globo_slide.globo_active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.globo_slide p {
    margin: 0;
}

.globo_slide_title {
    font-family: 'Orbitron', sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.3;
    display: block;
    margin-bottom: 0.5rem;
}

.globo_slide_subtitle {
    font-family: 'Source Code Pro', monospace;
    color: #333;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.5;
    display: block;
}

/* ===== CONTROLES DO SLIDER ===== */
.globo_controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.globo_dots {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.globo_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b0b4b9;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    padding: 0;
}

.globo_dot.globo_active {
    background-color: #000;
}

.globo_slider_btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.globo_slider_btn:hover {
    background-color: #000;
}

.globo_slider_btn:hover .globo_icon {
    stroke: #fff;
}

.globo_slider_btn.paused .globo_icon_pause {
    display: none;
}

.globo_slider_btn:not(.paused) .globo_icon_play {
    display: none;
}

/* ===== DESCRIÇÃO ===== */
.globo_description {
    font-family: 'Source Code Pro', monospace;
    color: #333;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

/* ===== BOTÃO DE CONTATO ===== */
.globo_contact_box {
    position: relative;
    display: inline-block;
}

.globo_contact_btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.globo_contact_btn:hover {
    background-color: #333;
}

/* ===== TOOLTIP ===== */
.globo_tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    white-space: nowrap;
}

.globo_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.globo_tooltip.show {
    display: flex;
    gap: 10px;
    animation: globoFadeIn 0.3s ease;
}

@keyframes globoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.globo_tooltip_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.globo_tooltip_icon:hover {
    background-color: #b0b4b9;
}

.globo_tooltip_icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 991px) {
    #globoglobe_wrapper_section {
        padding: 3rem 0;
    }

    .globo_row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .globo_col_left,
    .globo_col_right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .globo_globe_wrapper {
        max-width: 500px;
    }

    .globo_slides {
        min-height: 120px;
    }

    .globo_slide_title {
        font-size: 1.75rem;
    }

    .globo_slide_subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    #globoglobe_wrapper_section {
        padding: 2.5rem 0;
    }

    .globo_container {
        padding: 0 15px;
    }

    .globo_title {
        font-size: 2rem;
    }

    .globo_globe_wrapper {
        max-width: 400px;
    }

    .globo_slider {
        margin-bottom: 1.5rem;
    }

    .globo_slides {
        min-height: 110px;
    }

    .globo_slide_title {
        font-size: 1.5rem;
    }

    .globo_slide_subtitle {
        font-size: 1rem;
    }

    .globo_description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .globo_contact_box {
        display: block;
        text-align: center;
    }

    .globo_contact_btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    #globoglobe_wrapper_section {
        padding: 2rem 0;
    }

    .globo_header {
        margin-bottom: 1.5rem;
    }

    .globo_title {
        font-size: 1.5rem;
    }

    .globo_divider {
        margin: 1.5rem 0;
    }

    .globo_row {
        gap: 2rem;
    }

    .globo_globe_wrapper {
        max-width: 320px;
    }

    .globo_globe_btn {
        width: 36px;
        height: 36px;
        bottom: 15px;
        right: 15px;
    }

    .globo_icon {
        width: 12px;
        height: 12px;
    }

    .globo_slider {
        margin-bottom: 1.25rem;
    }

    .globo_slides {
        min-height: 100px;
    }

    .globo_slide_title {
        font-size: 1.25rem;
        margin-bottom: 0.35rem;
    }

    .globo_slide_subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .globo_controls {
        gap: 0.75rem;
    }

    .globo_dot {
        width: 8px;
        height: 8px;
    }

    .globo_slider_btn {
        width: 28px;
        height: 28px;
    }

    .globo_slider_btn .globo_icon {
        width: 10px;
        height: 10px;
    }

    .globo_description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .globo_contact_btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .globo_tooltip {
        padding: 8px;
        gap: 8px;
    }

    .globo_tooltip_icon {
        width: 36px;
        height: 36px;
    }

    .globo_tooltip_icon svg {
        width: 18px;
        height: 18px;
    }
}