.mi-widget-contenedor {
	margin-top:5px;
  display: flex;
  flex-direction: row;
	align-items: center;
  justify-content: space-between;
}
.menu-toggle {
	width: 40px;
	height:40px;
	display: flex;
	align-items: center;
	justify-content: center;
  border-radius: 30px;
  font-size: 1.3rem;
  padding: 0 10px; !important
  margin: 0;
  background: rgb(224, 9, 9);
  color: #ffffff;
  cursor: pointer;
}

.logo-contenedor {
background-color: black;
margin: 0;
	display:flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.logo {
	
  width: 130px;
	margin-top: 10px;
  margin-bottom: 20px;
}

/* Menú lateral */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  width: 270px;
  height: 100%;
  background-color: aliceblue;
  color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  padding-top: 0;
}

.menu-lateral {
	padding-left: 20px;
	display: flex;
	flex-direction: column;
}

.link {
  margin-top: 10px;
  color: #03045E;
  text-decoration: none;
  font-family: 'Rajdhani';

}

.link:hover {
color: red;
}

.menu-lat-sup {
  display: flex;
	height: 100%;
  flex-direction: column;
	justify-content: space-between;
}

.menu-lat-contact {
	margin-left: 5%;
  width: 90%;
  color: black;
  border-top: solid 1px rgba(0, 0, 0, 0.3);

}

.menu-lat-contact p {
  margin: 5px;
  font-size: 0.8rem;
  font-family: 'Orbitron';
}

.menu-lat-socialico {
  margin: 5px;
}

.side-menu.open {
  transform:translateX(0);
}

/* Fondo oscuro cuando el menú está abierto */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.5);*/
  z-index: 999;
}


/* SUBMENU */

.submenu-container {
  display: flex;
  flex-direction: column;
}

.submenu-toggle {
  background: none;
  border: none;
  font-size: 16px;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.submenu.show {
  max-height: 500px; 
}

i {
    background-color: black;  /* Fondo negro */
    color: white;             /* Ícono en color blanco */
    border-radius: 50%;       /* Hace el fondo redondo */
    padding: 10px;            /* Ajusta el tamaño del ícono */
    margin: 5px;              /* Espacio entre los íconos */
    font-size: 20px;          /* Tamaño del ícono */
    display: inline-block;
    text-align: center;
    width: 40px;              /* Anchura del contenedor/relleno */
    height: 40px;             /* Altura del contenedor/relleno */
    line-height: 20px;        /* Alineación vertical del ícono */
}
