/**
 * GoToSend Widgets - Globe Styles
 * Estilos específicos para el globo interactivo 3D
 */

/* ===============================================
   CONTENEDOR PRINCIPAL DEL GLOBO
   =============================================== */

.gotosend-globe-container {
  position: relative;
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, rgba(78, 80, 162, 0.05) 0%, rgba(66, 163, 189, 0.05) 100%);
  border-radius: var(--gotosend-radius-xl);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  box-sizing: border-box;
  box-shadow: var(--gotosend-shadow-lg);
  border: 2px solid rgba(78, 80, 162, 0.1);
  transition: all var(--gotosend-transition-base);
}

.gotosend-globe-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--gotosend-shadow-xl);
  border-color: rgba(78, 80, 162, 0.2);
}

.gotosend-globe-container:active {
  cursor: grabbing;
}

.gotosend-globe-container.gotosend-globe-dashboard {
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: var(--gotosend-shadow-2xl);
  border: 3px solid rgba(78, 80, 162, 0.15);
}

.gotosend-globe-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  pointer-events: auto;
  background: transparent;
}

/* ===============================================
   PLACEHOLDER Y LOADING
   =============================================== */

.gotosend-globe-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity var(--gotosend-transition-slow);
  z-index: 10;
}

.gotosend-globe-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gotosend-spacing-lg);
  text-align: center;
}

.loading-globe {
  position: relative;
  width: 80px;
  height: 80px;
}

.loading-sphere {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gotosend-primary) 0%, var(--gotosend-secondary) 100%);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  animation: globe-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(78, 80, 162, 0.3);
}

.loading-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loading-ring {
  position: absolute;
  border: 2px solid transparent;
  border-top: 2px solid var(--gotosend-secondary);
  border-radius: 50%;
  animation: globe-spin 1.5s linear infinite;
}

.loading-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
}

.loading-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  animation-duration: 1.2s;
  animation-direction: reverse;
}

.loading-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  animation-duration: 0.9s;
}

.loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gotosend-spacing-sm);
}

.loading-message {
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-lg);
  font-weight: 600;
  color: var(--gotosend-dark);
  text-align: center;
  max-width: 300px;
  line-height: 1.4;
}

.loading-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  background: var(--gotosend-primary);
  border-radius: 50%;
  animation: loading-dots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ===============================================
   CONTROLES DEL GLOBO
   =============================================== */

.gotosend-globe-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gotosend-spacing-sm);
  z-index: 20;
}

.globe-control-btn {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(78, 80, 162, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--gotosend-transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.globe-control-btn:hover {
  background: rgba(78, 80, 162, 0.1);
  border-color: var(--gotosend-primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.globe-control-btn:active {
  transform: scale(0.95);
}

.control-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform var(--gotosend-transition-fast);
}

.control-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--gotosend-success) 0%, var(--gotosend-primary) 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid white;
  animation: badge-pulse 2s infinite;
}

/* ===============================================
   SOCIAL PROOF OVERLAY
   =============================================== */

.gotosend-social-proof-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--gotosend-radius-lg);
  padding: var(--gotosend-spacing-md);
  border: 1px solid rgba(78, 80, 162, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 15;
  transition: all var(--gotosend-transition-base);
}

.social-proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gotosend-spacing-md);
}

.social-proof-title {
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-sm);
  font-weight: 600;
  color: var(--gotosend-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-proof-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background: var(--gotosend-success);
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

.indicator-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--gotosend-success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-proof-messages {
  display: flex;
  flex-direction: column;
  gap: var(--gotosend-spacing-sm);
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 80, 162, 0.3) transparent;
}

.social-proof-messages::-webkit-scrollbar {
  width: 4px;
}

.social-proof-messages::-webkit-scrollbar-track {
  background: transparent;
}

.social-proof-messages::-webkit-scrollbar-thumb {
  background: rgba(78, 80, 162, 0.3);
  border-radius: 2px;
}

.social-proof-message {
  padding: var(--gotosend-spacing-sm);
  background: rgba(78, 80, 162, 0.05);
  border-radius: var(--gotosend-radius-md);
  border-left: 3px solid var(--gotosend-secondary);
  font-size: var(--gotosend-font-size-sm);
  color: var(--gotosend-gray-700);
  line-height: 1.4;
  animation: message-slide-in var(--gotosend-transition-base) ease-out;
}

.social-proof-message .message-amount {
  font-weight: 700;
  color: var(--gotosend-primary);
}

.social-proof-message .message-country {
  font-weight: 600;
  color: var(--gotosend-dark);
}

.social-proof-message .message-time {
  color: var(--gotosend-gray-500);
  font-size: var(--gotosend-font-size-xs);
}

/* ===============================================
   INFORMACIÓN DEL GLOBO
   =============================================== */

.gotosend-globe-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gotosend-spacing-xs);
  z-index: 15;
}

.globe-info-item {
  display: flex;
  align-items: center;
  gap: var(--gotosend-spacing-xs);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--gotosend-spacing-xs) var(--gotosend-spacing-sm);
  border-radius: var(--gotosend-radius-md);
  border: 1px solid rgba(78, 80, 162, 0.2);
  font-size: var(--gotosend-font-size-xs);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-label {
  color: var(--gotosend-gray-600);
  font-weight: 500;
}

.info-value {
  color: var(--gotosend-dark);
  font-weight: 700;
  font-family: var(--gotosend-font-family-primary);
}

/* ===============================================
   DEBUG INFO
   =============================================== */

.gotosend-globe-debug {
  position: absolute;
  top: 20px;
  right: 80px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gotosend-white);
  padding: var(--gotosend-spacing-sm);
  border-radius: var(--gotosend-radius-md);
  font-family: var(--gotosend-font-family-mono);
  font-size: 11px;
  z-index: 25;
  min-width: 200px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.debug-header {
  font-weight: 700;
  margin-bottom: var(--gotosend-spacing-xs);
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
}

.debug-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.debug-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.debug-label {
  color: #88ccff;
  font-weight: 600;
}

.debug-value {
  color: #ffff88;
  font-weight: 500;
}

/* ===============================================
   FALLBACK SIN WEBGL
   =============================================== */

.gotosend-globe-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gotosend-spacing-3xl);
  text-align: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 80, 162, 0.05) 0%, rgba(66, 163, 189, 0.05) 100%);
}

.fallback-content {
  max-width: 500px;
}

.fallback-icon {
  font-size: 4rem;
  margin-bottom: var(--gotosend-spacing-lg);
  animation: float 3s ease-in-out infinite;
}

.gotosend-globe-fallback h3 {
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-2xl);
  font-weight: 700;
  color: var(--gotosend-dark);
  margin-bottom: var(--gotosend-spacing-md);
}

.gotosend-globe-fallback p {
  color: var(--gotosend-gray-600);
  margin-bottom: var(--gotosend-spacing-xl);
  line-height: 1.6;
}

.fallback-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gotosend-spacing-lg);
  margin-bottom: var(--gotosend-spacing-xl);
}

.feature-item {
  padding: var(--gotosend-spacing-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--gotosend-radius-lg);
  border: 2px solid rgba(78, 80, 162, 0.1);
  transition: all var(--gotosend-transition-base);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(78, 80, 162, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--gotosend-shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--gotosend-spacing-sm);
}

.feature-item h4 {
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-lg);
  font-weight: 600;
  color: var(--gotosend-dark);
  margin-bottom: var(--gotosend-spacing-xs);
}

.feature-item p {
  font-size: var(--gotosend-font-size-sm);
  color: var(--gotosend-gray-600);
  line-height: 1.5;
  margin: 0;
}

.fallback-countries {
  margin-bottom: var(--gotosend-spacing-xl);
}

.fallback-countries h4 {
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-lg);
  font-weight: 600;
  color: var(--gotosend-dark);
  margin-bottom: var(--gotosend-spacing-md);
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gotosend-spacing-sm);
  justify-content: center;
}

.country-tag {
  background: linear-gradient(135deg, var(--gotosend-primary) 0%, var(--gotosend-secondary) 100%);
  color: var(--gotosend-white);
  padding: var(--gotosend-spacing-xs) var(--gotosend-spacing-sm);
  border-radius: var(--gotosend-radius-full);
  font-size: var(--gotosend-font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.country-tag::before {
  content: attr(data-currency);
  position: absolute;
  top: -2px;
  right: -2px;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 6px;
  opacity: 0.8;
}

.fallback-cta {
  margin-top: var(--gotosend-spacing-xl);
}

.fallback-cta p {
  font-size: var(--gotosend-font-size-lg);
  font-weight: 600;
  color: var(--gotosend-dark);
  margin-bottom: var(--gotosend-spacing-md);
}

.fallback-btn {
  background: linear-gradient(135deg, var(--gotosend-primary) 0%, var(--gotosend-secondary) 100%);
  color: var(--gotosend-white);
  border: none;
  padding: var(--gotosend-spacing-md) var(--gotosend-spacing-xl);
  border-radius: var(--gotosend-radius-lg);
  font-family: var(--gotosend-font-family-primary);
  font-size: var(--gotosend-font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--gotosend-transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fallback-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gotosend-shadow-xl);
}

/* ===============================================
   NOSCRIPT
   =============================================== */

.gotosend-globe-noscript {
  padding: var(--gotosend-spacing-xl);
  text-align: center;
  background: rgba(78, 80, 162, 0.05);
  border-radius: var(--gotosend-radius-lg);
  border: 2px dashed rgba(78, 80, 162, 0.3);
}

.gotosend-globe-noscript h3 {
  font-family: var(--gotosend-font-family-primary);
  color: var(--gotosend-dark);
  margin-bottom: var(--gotosend-spacing-md);
}

.gotosend-globe-noscript ul {
  text-align: left;
  display: inline-block;
  margin: var(--gotosend-spacing-md) 0;
}

.gotosend-globe-noscript li {
  margin-bottom: var(--gotosend-spacing-xs);
  color: var(--gotosend-gray-700);
}

/* ===============================================
   ANIMACIONES DEL GLOBO
   =============================================== */

@keyframes globe-spin {
  to { transform: rotate(360deg); }
}

@keyframes globe-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loading-dots {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes message-slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1024px) {
  .gotosend-globe-container {
    height: 500px;
  }
  
  .gotosend-globe-container.gotosend-globe-dashboard {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gotosend-globe-container {
    height: 450px;
    border-radius: var(--gotosend-radius-lg);
  }
  
  .gotosend-globe-container.gotosend-globe-dashboard {
    height: 300px;
  }
  
  .gotosend-globe-container:hover {
    transform: none;
    box-shadow: var(--gotosend-shadow-lg);
  }
  
  .gotosend-globe-controls {
    top: 15px;
    right: 15px;
    gap: 6px;
  }
  
  .globe-control-btn {
    width: 40px;
    height: 40px;
  }
  
  .control-icon {
    font-size: 16px;
  }
  
  .gotosend-social-proof-overlay {
    top: 15px;
    left: 15px;
    max-width: calc(100% - 120px);
    padding: var(--gotosend-spacing-sm);
  }
  
  .social-proof-title {
    font-size: 11px;
  }
  
  .social-proof-message {
    font-size: 12px;
    padding: 8px;
  }
  
  .gotosend-globe-info {
    bottom: 15px;
    left: 15px;
    gap: 4px;
  }
  
  .globe-info-item {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .gotosend-globe-debug {
    top: 15px;
    right: 70px;
    padding: 8px;
    min-width: 150px;
  }
  
  .debug-header {
    font-size: 9px;
  }
  
  .debug-item {
    font-size: 10px;
  }
  
  .fallback-features {
    grid-template-columns: 1fr;
    gap: var(--gotosend-spacing-md);
  }
  
  .feature-item {
    padding: var(--gotosend-spacing-md);
  }
  
  .countries-list {
    gap: 6px;
  }
  
  .country-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .gotosend-globe-container {
    height: 400px;
    border-radius: var(--gotosend-radius-md);
  }
  
  .gotosend-globe-container.gotosend-globe-dashboard {
    height: 250px;
  }
  
  .gotosend-globe-controls {
    top: 10px;
    right: 10px;
  }
  
  .globe-control-btn {
    width: 36px;
    height: 36px;
  }
  
  .control-icon {
    font-size: 14px;
  }
  
  .control-badge {
    font-size: 8px;
    padding: 1px 4px;
  }
  
  .gotosend-social-proof-overlay {
    position: static;
    margin: var(--gotosend-spacing-sm);
    max-width: none;
    background: rgba(255, 255, 255, 0.98);
  }
  
  .social-proof-messages {
    max-height: 120px;
  }
  
  .gotosend-globe-info {
    position: static;
    margin: var(--gotosend-spacing-sm);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gotosend-globe-debug {
    display: none;
  }
  
  .fallback-content {
    padding: var(--gotosend-spacing-lg);
  }
  
  .fallback-icon {
    font-size: 3rem;
  }
  
  .gotosend-globe-fallback h3 {
    font-size: var(--gotosend-font-size-xl);
  }
  
  .fallback-btn {
    padding: var(--gotosend-spacing-sm) var(--gotosend-spacing-lg);
    font-size: var(--gotosend-font-size-base);
  }
}

@media (max-width: 360px) {
  .gotosend-globe-container {
    height: 350px;
  }
  
  .gotosend-globe-container.gotosend-globe-dashboard {
    height: 220px;
  }
  
  .loading-message {
    font-size: var(--gotosend-font-size-base);
  }
  
  .social-proof-title {
    font-size: 10px;
  }
  
  .indicator-text {
    font-size: 9px;
  }
}

/* ===============================================
   MODO OSCURO
   =============================================== */

@media (prefers-color-scheme: dark) {
  .gotosend-globe-container.gotosend-auto-dark {
    background: linear-gradient(135deg, rgba(78, 80, 162, 0.1) 0%, rgba(66, 163, 189, 0.1) 100%);
    border-color: rgba(78, 80, 162, 0.3);
  }
  
  .gotosend-globe-placeholder {
    background: rgba(26, 26, 26, 0.95);
  }
  
  .loading-message {
    color: #e0e0e0;
  }
  
  .globe-control-btn {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(78, 80, 162, 0.4);
    color: #e0e0e0;
  }
  
  .gotosend-social-proof-overlay {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(78, 80, 162, 0.4);
  }
  
  .social-proof-title {
    color: #e0e0e0;
  }
  
  .social-proof-message {
    background: rgba(78, 80, 162, 0.15);
    color: #cdcdcd;
  }
  
  .globe-info-item {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(78, 80, 162, 0.4);
  }
  
  .info-label {
    color: #adadad;
  }
  
  .info-value {
    color: #e0e0e0;
  }
  
  .fallback-features .feature-item {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(78, 80, 162, 0.3);
  }
  
  .fallback-features .feature-item:hover {
    background: rgba(26, 26, 26, 0.95);
  }
}

/* ===============================================
   ACCESIBILIDAD
   =============================================== */

@media (prefers-reduced-motion: reduce) {
  .gotosend-globe-container,
  .globe-control-btn,
  .feature-item,
  .fallback-btn {
    transition: none;
  }
  
  .loading-sphere,
  .loading-ring,
  .loading-dots span,
  .control-badge,
  .indicator-dot,
  .fallback-icon {
    animation: none;
  }
  
  .gotosend-globe-container:hover,
  .globe-control-btn:hover,
  .feature-item:hover,
  .fallback-btn:hover {
    transform: none;
  }
}

/* Alta resolución */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .gotosend-globe-container {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Variante con fondo transparente del contenedor */
.gotosend-globe-container.gotosend-bg-transparent{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.gotosend-globe-container.gotosend-bg-transparent .gotosend-globe-placeholder{
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Si usas tamaño fijo (width/height), evita que el wrapper "empuje" */
.gotosend-globe-container.gotosend-fixed-size .gotosend-globe-wrapper{
  height: 100%;
}

/* Mensajes flotantes (social proof) – fades */
.gotosend-social-messages .social-message{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.gotosend-social-messages .social-message.show{
  opacity: 1;
  transform: translateY(0);
}
.gotosend-social-messages .social-message.fade-out{
  opacity: 0;
  transform: translateY(-6px);
}

/* Lista lateral de “Actividades en tiempo real” – item por item */
.gotosend-social-proof-overlay .activity-item{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.gotosend-social-proof-overlay .activity-item.show{
  opacity: 1;
  transform: translateY(0);
}
.gotosend-social-proof-overlay .activity-item.fade-out{
  opacity: 0;
  transform: translateY(-6px);
}
/* --- Forzar transparencia y quitar bordes/sombras --- */
.gotosend-globe-container,
.gotosend-globe-container canvas {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Overlays propios del widget también transparentes/sin bordes */
.gotosend-globe-container .gotosend-globe-placeholder,
.gotosend-globe-container .gotosend-globe-info,
.gotosend-globe-container .gotosend-globe-controls,
.gotosend-globe-container .gotosend-social-proof-overlay,
.gotosend-globe-container .gotosend-globe-fallback {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.gotosend-globe-container,
.gotosend-globe-container canvas {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
