/* Agrupación de ubicación en buscador */
.buscador-ubicacion-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 600px) {
  .buscador-ubicacion-group {
    flex-direction: column;
    gap: 0;
  }
  .buscador-input,
  .buscador-select,
  .buscador-btn {
    font-size: 0.98em;
    padding: 7px 10px;
  }
}
/* index.css - Estilos para index.php */
.titulo-3d-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 30px 0;
}
.titulo-3d {
  font-size: 2.5em;
  font-weight: bold;
  color: #43e97b;
  letter-spacing: 2px;
  text-shadow:
    2px 2px 0 #232526,
    4px 4px 0 #38f9d7,
    6px 6px 8px rgba(35,37,38,0.25);
  padding: 20px 40px;
  background: linear-gradient(90deg, #e0ffe7 0%, #b7ffbf 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67,233,123,0.15), 0 2px 8px #23252633;
  border: 2px solid #43e97b;
}

/* Buscador bonito */
.buscador-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 32px 0 24px 0;
}
.buscador-label {
  font-size: 1.3em;
  color: #2e8b57;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 1px 1px 6px #b7ffbf88, 0 2px 8px #43e97b44;
}
.buscador-input {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.15em;
  color: #232526;
  background: #f8fff8;
  border: 2px solid #43e97b;
  border-radius: 22px;
  padding: 10px 18px;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(67,233,123,0.10);
}
.buscador-input:focus {
  border-color: #38f9d7;
  box-shadow: 0 4px 16px rgba(56,249,215,0.15);
}
.buscador-btn {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.1em;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 8px;
  box-shadow: 0 2px 8px #43e97b44;
}
.buscador-btn:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  box-shadow: 0 4px 16px #38f9d744;
}
.buscador-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.buscador-select {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.1em;
  color: #232526;
  background: linear-gradient(90deg, #e0ffe7 0%, #b7ffbf 100%);
  border: 2px solid #43e97b;
  border-radius: 22px;
  padding: 10px 18px;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(67,233,123,0.10);
  margin-left: 0;
  min-width: 0;
}
.buscador-select:focus {
  border-color: #38f9d7;
  box-shadow: 0 4px 16px rgba(56,249,215,0.15);
}
.buscador-select option {
  background: #f8fff8;
  color: #232526;
}
@media (max-width: 600px) {
  html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .buscador-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .buscador-container > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .buscador-container > * {
    width: 100%;
    max-width: 100%;
  }
  .buscador-input,
  .buscador-select,
  .buscador-btn {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    min-width: 0;
  }
  .buscador-btn {
    border-radius: 22px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
