.text {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.text h2 {
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 2.2rem;
  color: var(--dark);
  letter-spacing: 1.2px;
}
/* COMMITMENT SECTION */
.commitment-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.commitment-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.commitment-content h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 2.1rem;
  margin-bottom: 3rem;
  color: var(--dark);
  letter-spacing: 0.8px;
}

.commitment-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--primary-color);
  transition: var(--transition);
  max-width: 700px;
  margin: 0 auto;
  cursor: pointer;
}

.commitment-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* MAP */
.map-section {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.world-map {
  width: 100%; height: clamp(280px, 50vh, 400px);
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
  border-radius: 12px;
}

.pin {
  cursor: pointer;
  transition: all 0.3s ease;
}

.pin:hover circle {
  r: clamp(8px, 1.5vw, 12px);
  filter: drop-shadow(0 0 12px currentColor) brightness(1.2);
}

.pin:hover text {
  font-size: clamp(10px, 2vw, 14px);
}

.map-title {
  text-align: center;
  font-family: 'Sintony', sans-serif;
  font-size: clamp(1.3rem, 5vw, 2.2rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

/* OFFICES */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: clamp(0.8rem, 3vw, 1.2rem);
  text-align: center;
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4rem) 0;
  justify-content: center;
}

.office {
  background: rgba(255,255,255,0.2);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  max-width: 250px;
}

.office:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.office img {
  width: clamp(20px, 7vw, 60px);
  height: clamp(20px, 7vw, 60px);
  border-radius: clamp(5px, 1.5vw, 16px);
  object-fit: cover;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.office p {
  font-family: 'Sintony', sans-serif;
  font-size: clamp(0.75rem, 3vw, 0.95rem);
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  letter-spacing: 0.3px;
  margin-top: 0.8rem;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .world-map {
    height: clamp(250px, 45vh, 350px);
    margin: 0 -1rem;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .offices-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .text-block h2 { font-size: 1.2rem !important; }
  .commitment-content h2 { font-size: 1.2rem !important; }
  .offices-grid { 
    grid-template-columns: repeat(4, ºfr) !important; 
    gap: 1.5rem !important; 
  }
  .office { padding: 1rem 1rem !important; }
  .office img { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .offices-grid { 
    grid-template-columns: 1fr !important; 
  }
  .commitment-item { padding: 2rem 1.5rem !important; }
}
