@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8f8f8 0%, #e49bc6 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index.html: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  max-height: 80vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
}

.menu-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index.html: 1000;
  background: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-line {
  width: 20px;
  height: 2px;
  background-color: black;
}


#map {
  height: 100vh;
  width: 100%;
}


.city-marker {
  background-color: #2C3E50;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mapboxgl-popup-content {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para las tabs */
.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #f0f0f0;
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 20px;
}

.tab-content.active {
  display: block;
}

.overlay__content {
  min-height: 200px;
}
.form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.responsive-padding {
  padding: 1rem; /* 20px = equivalente a Tailwind p-5 */

  /* A partir de 1024px (desktop) se aplica 40px = p-10 */
  @media (min-width: 1024px) {
    padding: 2.5rem; /* 40px */
  }
}


.responsive-padding-bg {
  padding: 0.5rem; /* 20px = equivalente a Tailwind p-5 */

  /* A partir de 1024px (desktop) se aplica 40px = p-10 */
  @media (min-width: 1024px) {
    padding: 2.5rem; /* 40px */
  }
}


.custom-container {
  max-width: 28rem; /* 448px */
  width: 100%;
}
