/* Estilos para los filtros */
.integra-mapa-oficinas-container{
  margin-bottom: 70px;
}

.filtros-container {
  padding: 60px 0;
}

.filtro-buscar {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.filtro-buscar input {
  width: 100%;
  padding: 16px 32px;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 20px;
  transition: border-color 0.3s ease;
  background-image: url('/themes/custom/personalizado/img/lupa.svg');
  background-position: 94% center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.filtro-buscar input:focus {
  outline: none;
  box-shadow: none;
}

.filtro-pais select,
.filtro-comunidad select {
  width: 100%;
  padding: 16px 32px;
  border-radius: 0;
  background-color: #F2F2F2;
  font-size: 20px;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F2F2F2 !important;
}

.filtro-pais select:focus,
.filtro-comunidad select:focus {
  outline: none;
  box-shadow: none;
}

/* Contenedor del mapa y resultados */
.mapa-container {
  flex: 2;
  min-width: 300px;
  overflow: hidden;
}

#mapa-svg {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

#mapa-svg svg {
  max-width: 100%;
  height: 100%;
  width: 100%;
}

/* Estilos para las provincias del mapa */
#mapa-svg path {
  stroke-width: 1px;
  transition: fill 0.3s ease, stroke 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  stroke: #fff;
}

#mapa-svg path:hover {
  fill: #ff6b6b;
  stroke: #ff6b6b;
}

#mapa-svg path.tiene-oficinas {
  fill: #ff6b6b;
}

#mapa-svg path.tiene-oficinas:hover {
  fill: #ff6b6b;
}

#mapa-svg path.seleccionada {
  fill: #ff6b6b !important;
  stroke: #fff !important;
  stroke-width: 1px;
  filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
}

/* Estilos para el listado de oficinas */

.oficinas-grid {
  justify-content: flex-end;
}

.oficinas-grid .oficina-item {
  margin-top: 24px;
}

.contenedor-six {
  display: flex;
  text-align: center;
  padding: 24px 0;
  justify-content: center;
}




/* Estilos para las tarjetas de oficina */
.oficina-item {
  background-color: #F2F2F2;
  padding: 16px;
  transition: all 0.2s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oficinas-listado .oficina-item:not(:last-child) {
  margin-bottom: 24px;
}

.oficina-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.oficina-item h3 {
  margin: 0 0 10px 0;
  color: #000;
  font-size: 18px;
}

.oficina-direccion,
.oficina-telefono {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  color: #000;
  font-size: 16px;
}

.oficina-direccion .icono,
.oficina-telefono .icono {
  margin-right: 8px;
  margin-top: 2px;
}

.oficina-acciones {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-ver-mapa,
.btn-enviar-email {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px !important;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}


/* Mensaje cuando no hay resultados */
.sin-resultados {
  padding: 20px;
  text-align: center;
  color: #000;
  font-style: italic;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 1024px) {
  .oficina-acciones .btn-primary{
    font-size: 12px;
    height: auto !important;
  }
}
@media (max-width: 932px) {
  .mapa-oficinas-content {
    flex-direction: column;
  }

  .filtros-container > div{
    margin-bottom: 8px;
  }

  .mapa-container,
  .oficinas-listado {
    width: 100%;
  }

  .oficinas-listado {
    max-height: 400px;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.oficina-item {
  animation: fadeIn 0.3s ease-out forwards;
}

.oficina-item h3 {
  margin: 0 0 28px 0;
  color: #F20D4A;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.oficina-direccion,
.oficina-telefono {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: #000;
  margin: 0 0 32px 0;
}


.oficina-direccion::before {
  content: '';
  background-image: url('/themes/custom/personalizado/img/location_black.svg');
  background-size: 16px;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.oficina-telefono::before {
  content: '';
  background-image: url('/themes/custom/personalizado/img/tel_black.svg');
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.botones-accion {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}



/* Estilos para la provincia seleccionada en el mapa */
.provincia-seleccionada {
  fill: #e30613 !important;
  opacity: 0.7;
  transition: fill 0.3s ease;
}

/* Estilos responsivos */
@media (max-width: 932px) {
  .mapa-oficinas-content {
    flex-direction: column;
  }

  .mapa-container,
  .oficinas-listado {
    width: 100%;
    max-height: none;
  }

  #mapa-svg {
    height: 400px;
  }
}