.Info {
  border-radius: 10px;
  width: 45%;
  margin: 3px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
}

#map {
  position: relative;
  z-index: 0;
  width: 50%;
  margin: 20px 0;
  border-radius: 10px;
}

.imgg {
  border-radius: 10px;
}

.texto {
  width: 70%;
  padding: 10px;
}

.boton-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding-left: 10px;
}

.a {
  background-color: black;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.modal-contentt {
  background-color: rgb(225, 223, 227);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: 30px;
  outline: 0;
}

.modal-headerr {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-footerr {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.botones-sucursal {
  display: flex;
  gap: 8px;
  /* Espacio entre los botones */
  margin-top: 5px;
}

.botones-sucursal i {
  font-size: 20px;
  /* ❗️ Tamaño uniforme para todos los íconos */
  font-weight: bold;
  /* Aumenta un poco el grosor (no todos los íconos responden a esto) */
}

.btn-custom-eli i {
  font-size: 25px;
}

.btn-custom,
.btn-custom-eli {
  background-color: #e6e6e6;
  color: rgb(104, 104, 104);
  width: 40px;
  /* ❗ Ambos botones del MISMO tamaño */
  height: 40px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-custom-eli {
  color: #ed1c24;
}

.btn-custom:hover,
.btn-custom-eli:hover {
  background-color: #000000;
  color: #ffffff;
}

.btnbtn-successs {
  background-color: #000000;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btndisabled {
  background-color: #ccc;
  /* gris desactivado */
  cursor: not-allowed;
  position: relative;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btnbtn-successs:hover {
  background-color: #1ebe57;
}

/* Nuevo contenedor para separar info y mapa lado a lado */
.container-info-map {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* Ajustar .Info y #map dentro del contenedor */
.container-info-map .Info {
  width: 48%;
  flex-direction: column;
}

.container-info-map #map {
  border-radius: 10px;
}

/* Responsive para móviles: el mapa queda debajo */
@media (max-width: 767px) {
  .container-info-map {
    flex-direction: column;
  }

  .container-info-map .Info,
  .container-info-map #map {
    width: 100%;
  }

  .container-info-map #map {
    margin-top: 20px;
    height: 300px;
  }
}

.sucursal-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
  /* espacio entre imagen y texto */
}

.sucursal-item img.imgg {
  border-radius: 8px;
  object-fit: cover;
  width: 180px;
  height: 160px;
  flex-shrink: 0;
}

.sucursal-item .texto {
  flex: 1;
}

@media (max-width: 768px) {
  .sucursal-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .sucursal-item img.imgg {
    width: 100%;
    height: auto;
  }
}

.btn-img {
  width: 40%;
  height: 35%;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.infocita {
  background-color: #c6c5c5;
  width: 40%;
  height: 35%;
  padding: 10%;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.contenedor-imgs-nosotros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.bloque-img-fijo {
  width: 60%;
  background-color: #f5f5f5;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.img-fija {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.nosotro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.fotillo {
  width: 50%;

}

.teste {
  width: 50%;
}