/* Global Reach Hero Section Styles - Namespace isolado */
.global-reach {
  background: linear-gradient(278.51deg, #f897df 0%, #3e0099 100.4%);
  overflow: hidden; /* Importante para garantir que o conteúdo cortado não crie scroll horizontal */
  position: relative;
}

.global-reach::before {
  background: radial-gradient(50% 50% at 50% 50%, rgba(62, 0, 153, 0.5) 0%, rgba(62, 0, 153, 0) 100%);
}

.global-reach::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(62, 0, 153, 0.3) 0%, rgba(62, 0, 153, 0) 100%);
}

.global-reach__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.global-reach__title {
  font-weight: 700;
  font-size: var(--fs-h2); /* Changed from 36px to var(--fs-h2) */
  line-height: 45px;
  color: #fffffa;
}

.global-reach__subtitle {
  font-size: var(--fs-h3); /* Changed from 32px to var(--fs-h3) */
  font-weight: 400;
  line-height: 40px;
  color: #fffffa;
  margin-top: -10px;
}

.global-reach__stats {
  margin-top: 30px;
  margin-bottom: 80px;
}

.global-reach__stat-item {
  display: flex;
  margin-bottom: 25px;
}

.global-reach__circle {
  width: 60px;
  height: 60px;
  background-color: #e92651;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.global-reach__circle img {
  width: 40px;
  height: 40px;
}

.global-reach__pill {
  height: 60px;
  border: 2px solid #fffffa;
  margin-left: -30px;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  display: flex;
  align-items: center;
}

.global-reach__pill-text {
  font-size: var(--fs-h6); /* Changed from 18px to var(--fs-h6) */
  font-weight: 500;
  margin: 0;
  margin-left: 45px;
  margin-right: 32px;
  color: #fffffa;
}

.global-reach__link-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-reach__link {
  font-size: var(--fs-h4); /* Changed from 24px to var(--fs-h4) */
  font-weight: 500;
  text-decoration: none;
  color: #fffffa;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.global-reach__content {
  width: 450px;
  max-width: 450px;
  padding-right: 20px;
  z-index: 2;
  position: relative;
}

.global-reach__globe {
  position: relative; /* Dentro do container por padrão */
  width: 600px;
  height: 600px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chartdiv {
  width: 100%;
  height: 100%;
}

/* Desktop Wide: 1440px ou mais */
@media (min-width: 1440px) {
  .global-reach__container {
    justify-content: space-between;
  }

  .global-reach__content {
    width: 500px;
    max-width: 500px;
  }

  .global-reach__globe {
    position: relative; /* Mantém dentro do container */
    right: auto;
    width: 600px;
    height: 600px;
  }
}

/* Desktop: 1024px até 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .global-reach__container {
    justify-content: space-between;
  }

  .global-reach__content {
    width: 450px;
    max-width: 450px;
  }

  .global-reach__globe {
    position: relative; /* Mantém dentro do container */
    right: auto;
    width: 550px; /* Ligeiramente menor para caber melhor */
    height: 550px;
  }
}

/* Tablet: 720px até 1023px */
@media (min-width: 720px) and (max-width: 1023px) {
  .global-reach__container {
    position: relative; /* Para permitir posicionamento absoluto do globo */
    overflow: hidden;
    min-height: 400px; /* Garante altura mínima para o container */
  }

  .global-reach__content {
    width: 350px;
    max-width: 350px;
  }

  .global-reach__title {
    font-size: var(--fs-h4); /* Changed from 24px to var(--fs-h4) */
    line-height: 36px;
  }

  .global-reach__subtitle {
    font-size: var(--fs-h5); /* Changed from 20px to var(--fs-h5) */
    line-height: 32px;
  }

  .global-reach__stats {
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .global-reach__pill-text {
    font-size: var(--fs-footnote); /* Changed from 14px to var(--fs-footnote) */
    margin-left: 35px;
  }

  .global-reach__link {
    font-size: var(--fs-h5); /* Changed from 20px to var(--fs-h5) */
  }

  .global-reach__globe {
    position: absolute; /* Começa a ser posicionado absolutamente */
    top: 0;
    bottom: 0;
    margin: auto; /* Centraliza verticalmente */
    right: -200px; /* Começa a ser cortado */
    width: 400px; /* Tamanho reduzido conforme solicitado */
    height: 400px;
  }
}

/* Mobile: até 719px */
@media (max-width: 719px) {
  .global-reach__container {
    position: relative; /* Para permitir posicionamento absoluto do globo */
    overflow: hidden;
    min-height: 400px; /* Garante altura mínima para o container */
  }

  .global-reach__content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .global-reach__title {
    font-size: var(--fs-h5); /* Changed from 20px to var(--fs-h5) */
    line-height: 30px;
  }

  .global-reach__subtitle {
    font-size: var(--fs-h6); /* Changed from 18px to var(--fs-h6) */
    line-height: 26px;
  }

  .global-reach__stats {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .global-reach__circle {
    width: 40px;
    height: 40px;
  }

  .global-reach__circle img {
    width: 24px;
    height: 24px;
  }

  .global-reach__pill {
    height: 40px;
    margin-left: -20px;
  }

  .global-reach__pill-text {
    font-size: var(--fs-footnote); /* Changed from 12px to closest var(--fs-footnote) */
    margin-left: 25px;
    margin-right: 15px;
  }

  .global-reach__link {
    font-size: var(--fs-footnote); /* Changed from 14px to var(--fs-footnote) */
  }

  .global-reach__globe {
    position: absolute; /* Posicionado absolutamente */
    top: 0;
    bottom: 0;
    margin: auto; /* Centraliza verticalmente */
    right: -200px; /* Cortado */
    width: 400px; /* Tamanho reduzido conforme solicitado */
    height: 400px;
  }
}
