/* Estilo general */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: IberPangea, sans-serif;
  color: #00a443 !important;
}

.contenedor-mapa {
  /*max-width: calc(100% - 400px); /* 200px a cada lado */
  max-width: 1265px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d3d4d3;
  border-bottom: 1px solid #d3d4d3;
  padding-top: 50px;
  margin-bottom: 50px;
}

.fuente-h2-mapa {
  font-family: "IberPangea Medium",sans-serif !important;
  font-size: 40px;
  line-height: 40px;
  text-align: left;
  margin-bottom: 40px;
  color: #00a443;
  
}

.cuerpo-mapa {
  display: flex;
  align-items: stretch; /* Asegura misma altura */
  justify-content: space-between;
  gap: 40px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 60px;
}


.caja-texto-video {
  flex: 1;
  max-width: 700px;
}

.fuente-parrafo-mapa {
  font-size: 18px;
  margin-bottom: 20px !important;
  color: #3A3735;
}

.video-mapa {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.caja-iconos-boton {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.grupo-iconos {
  flex: 1; /* ocupa todo el alto disponible excepto el botón */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribuye filas verticalmente */
  margin-bottom: 20px;
  gap: 20px;
}

.fila-iconos {
  display: flex;
  gap: 20px;
  flex: 1; /* cada fila ocupa el mismo alto */
}

.fila-iconos img:hover {
  filter: brightness(0) saturate(100%) invert(78%) sepia(20%) saturate(650%) hue-rotate(80deg) brightness(95%) contrast(90%);
  transition: filter 0.3s ease;
}

.fila-iconos img {
  flex: 1 1 0;
  width: 100%;
  height: auto;
  object-fit: contain; /* Para que escale bien */
  padding: 10px;
  transition: filter 0.3s ease;
  cursor: pointer;
}


.icono-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; 
  margin-bottom: 20px;
}

.icono-box:not(:last-child) {
  border-right: 1px solid #D8CFC7;
}

.img {
  border-right: 1px solid #D8CFC7;
}

.fila-iconos:not(:last-child) {
  border-bottom: 1px solid #D8CFC7;
}

.icono-box img {
  width: 120%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}


.boton-sociedades {
  display: inline-block; /* Para que tome padding y centrado */
  align-self: center;
  text-align: center;
  text-decoration: none; /* Quita subrayado de <a> */
  padding: 14px 30px;
  background-color: #00a443;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: IberPangea, sans-serif !important;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid transparent;
  margin-right: 15px;
}

.boton-sociedades:hover {
  text-decoration: none;
  border: 1px solid #00a443;
  background-color: white;
  color: #00a443;
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .contenedor-mapa {
	padding: 24px;
	margin-bottom: 0;
	}
  .cuerpo-mapa {
    flex-direction: column;
  }

  .caja-texto-video,
  .caja-iconos-boton {
    width: 100%;
    max-width: 100%;
  }
  .icono-box img{
    width: 100%;
	height: 100%;
	}
}
