@import url(https://fonts.googleapis.com/css?family=Raleway);
h2 {
  vertical-align: center;
  text-align: center;
}

html, body {
  margin: 0;
  height: 100%;
  padding:0;
}

* {
  font-family: "Raleway";
  box-sizing: border-box;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #00BAF0;
  background: linear-gradient(to left, #FFA500, #eea849);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 72px;
  padding: 1em;
  margin-top: 0px;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin-right: -50px;
  padding: 0;
}

.menu > li {
  margin: 15px;
  overflow: hidden;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
/* Menu alineacion principal-Vista de las lineas */
.menu-button-container {
  display: none;
  height: 100%;
  width: 38px;
  padding-top: 18px;
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
  background-color: #0000;
}
#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0px;
}

.menu-button::before {
  content: '';
  margin-top: -6px;
}

.menu-button::after {
  content: '';
  margin-top: 6px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 63px; /* Hacer que el menu baje*/
    left: 0;
	  width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	  z-index: 999;
  }

  /**/
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }
  #menu-toggle:checked ~ .menu li {
    border: 5px solid white;
	  background-color: white;
    height: 100%;
    padding: 1rem;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    padding-bottom: 5px;
    
  }

  /**/
  .menu > li {
    display: flex;
	  position: relative;
    justify-content: center;
    margin: 1px;
    padding: 0.5rem 0;
    width: 100%;
    color: white;
    background-color: #222;
    z-index: 99999;
  }

/* Menu caja de logo  */
.navbar-brand{
	margin-top: 25px;
	margin-left: 2px;
	width: 90px;
	height: 60px;
  align-items: center;
}

/* Menu Qr  */
.qr{
	margin-right: 20px;
	margin-left: 60px;
	width: 60px;
	height: 50px;
}



/* ----------Botones del Menu----------- */
.btn-custom{
    background-color: #FFA500;
    color: #fff;
    width: 100%;
    border-width: 15px;
    border-style: solid;
    /*border-color: #222;*/
    padding: 18px 10px;
}

#columnas{
	margin-top: 15px;
	display: flex;
  margin-bottom: 10px;
  width: 124px;
}



#menu-botones button i {
display: block;
font-size: 3rem;
margin-bottom: 0.9rem;

}

.btn {
font-size: 100%;
text-size-adjust: 100%;
line-height: 1.8;
font-weight: 500px;
}

#spacemenu{
margin-top: -20px;
margin-left: 100px;
}

#spacemenu span {
  margin: 0;
}

#menu-text {
  margin-bottom: -10px; /* Ajuste esse valor para mover o texto "MENU" mais para cima */
}
.fullscreen-button {
top: 0;
left: 0;
width: 100vw;
height: 5vh;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
.image-wrapper {
  text-align: center;
}

 
.btn-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px; /* Ajusta el espaciado interno del botón */
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%; /* Ajusta el ancho para que todos los botones sean iguales */
}

.btn-custom i {
  margin-bottom: 2px; /* Ajusta el margen inferior del ícono */
}



/* Estilos para el menú toggle */
#menu-toggle:checked + .menu-button-container {
  background-color: black;
  height: 30px;
  margin-top: 5px;
}

.vertical-label {

  transform-origin: left top;

}


@media only screen and (max-device-width: 450px) { /* Establece el ancho máximo para dispositivos iOS */
  .btn {
    border-radius: 1px; /* Ajusta el valor según tus necesidades */
  }
}


/* ----------Botones del Menu----------- */

/* Estilos generales para todos los tamaños de pantalla */
.fullscreen-button {
  /* Estilos comunes para el botón */
  background-color: #020202;
  border: none;
  padding: 0.5rem 1rem; /* Ajustar el espaciado interno (padding) según sea necesario */
}

/* Estilos para pantallas de PC */
@media screen and (min-width: 768px) {
  .fullscreen-button {
    /* Disminuir el tamaño horizontal del botón en pantallas de PC */
    width: 400px; /* Puedes ajustar este valor según tus necesidades */
  }
}


/* Estilos para pantallas de PC */
@media screen and (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    height: 72px;
    width: 454px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1100px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    height: 72px;
    width: 454px;
    margin: 0 auto;
  }
}

.my-custom-btn-style{
  display: flex; /* Utilizamos flexbox para centrar los elementos */
  align-items: center; /* Centrar verticalmente los elementos dentro del contenedor */
  padding: 30px 20px;
  font-size: 11px;
  border-radius: 10px;
  width: 108px;
  margin: -8px;
  margin-top: -8px;
  backface-visibility: hidden;
  cursor: pointer;
  text-decoration: none;
  flex-direction: column;
}

.my-custom-btn-style{
  appearance: none;
  -webkit-appearance: none;
}

.my-custom-btn-style i {
  font-size: 33px;
  margin-bottom: 5px; 
}

.my-btn-text {
  flex: 1;
  flex-wrap: wrap;
  display: flex;
  width: 110%; /* Aseguramos que el span ocupe todo el ancho disponible */
  justify-content: center; 
}

@media (max-width: 350px) {
  .my-custom-btn-style {
    padding: 10px 10px; /* Reducir el padding para botones más pequeños */
    font-size: 12px; /* Reducir el tamaño de la fuente para botones más pequeños */
    width: 90px; /* Reducir el ancho del botón para dispositivos pequeños */
    margin: -8px;
    margin-top: -8px;
    backface-visibility: hidden;
    cursor: pointer;
    text-decoration: none;
    flex-direction: column;
    display: flex; /* Utilizamos flexbox para centrar los elementos */
    align-items: center; /* Centrar verticalmente los elementos dentro del contenedor */
    justify-content: center; 
  }

  .my-custom-btn-style i {
    font-size: 30px; /* Reducir el tamaño del icono para dispositivos pequeños */
  }

  .my-btn-text {
    font-size: 10px; /* Reducir el tamaño del texto para dispositivos pequeños */
    flex: 1;
    flex-wrap: wrap;
    display: flex;
    width: 100%; /* Aseguramos que el span ocupe todo el ancho disponible */
    justify-content: center; 
  }
}

