/* Estilos para a seção "Presença Global" com vídeo de fundo */
.global-section {
    position: relative;
    padding: 50px 0;
    color: var(--text-color);
    overflow: hidden;
    margin-top: 0;
}

.global-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.global-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 20, 0.8);
    z-index: 2;
}

.global-content-container {
    position: relative;
    z-index: 3;
}

.global-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.global-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

.global-offices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.global-office {
    padding: 30px;
    border-radius: 8px;
    background-color: rgba(0, 0, 20, 0.5);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.global-flag {
    display: block;
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.global-city {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.global-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.global-contact-info {
    margin-top: 20px;
}

.global-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.global-contact-icon {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 992px) {
    .global-offices {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .global-section {
        padding: 60px 0;
    }
    
    .global-title {
        font-size: 2rem;
    }
    
    .global-city {
        font-size: 1.5rem;
    }
}
