*{
    box-sizing: border-box;
  }
  
  body{
    font-family: 'Verdana', sans-serif;
    margin: 0;
    background-size: cover;
   text-align:center;
    height: 100%;
    margin: 0;
    padding: 0;
    background: url("media/fondo.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    
  }
  h1, h2, h3, h4 {
    text-align: center;
    letter-spacing: 2px;
  }
  
  h1 {
    font-size: 3em;
    color: #b90000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  h2 {
    font-size: 2.5em;
    color: #1b3b9a;
    text-shadow: 3px 3px 6px rgba(76, 175, 80, 0.4);
  } 
  h3 {
    font-size: 1.5em;
    color: #0c5a85;
    text-shadow: 3px 3px 6px rgba(76, 175, 80, 0.4);
  } 
  /* Estilos básicos del menú */
  ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      background-color: #f1f1f1;
      overflow: hidden;
    }
  
    li {
      float: left;
    }
  
    li a {
      display: block;
      color: #333;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }
  
    li a:hover {
      background-color: #ddd;
    }
  
    /* Estilos del menú desplegable */
    li.dropdown {
      display: inline-block;
    }
  
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
    }
  
    .dropdown:hover .dropdown-content {
      display: block;
    }


body {
    margin: 0;
    font-family: Arial, sans-serif;
}
button{
  font-size: 1em;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  color: white;
  background-color: midnightblue;
  display: inline-block;
}
button:hover{
  background-color: rgb(23, 23, 77);
}

.cuadricula {
    display: grid;
    grid-template-columns: repeat(2,1fr); /* 3 columnas */
    
    gap:auto; /* Espacio entre elementos */
    justify-content: center;
    align-items: center;
}

.item {
    text-align: center;
    width: auto; 

}

.item img{
  width: 100px;
}

.item1 {
    text-align: center;
    width: auto; 
}

.item1 img{
    width: 100px;
  }

.item p {
    margin-bottom: 2px;
}

footer{
    background-color: rgb(30, 30, 30);
  }

    .social-button {
      display: inline-block;
    
     /* background-color: #4CAF50;*/
      color: white;
      text-align: center;
      text-decoration: none;
      font-size: 17px;
      padding: 1vh;
      cursor: pointer;
      border-radius:2px;
      transition: background-color 0.3s;
      margin:10px;
    }
  
    .social-button:hover {
      background-color: rgba(84, 143, 130, 0.429);
    }
  
  .social-button img{
      width:auto;
      height:40px;
      /*text-align:center;*/
      margin:5px;
  }

/* Boton Whatsapp */
.float{
	position:fixed;
	width:60px;
  height:55px;
	bottom:300px;
	right:30px;
	background-color:#25d366;
	color:#ffffff;
	border-radius:60px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}
    /* Funcion slider */
    .slider-container {
      width: 100%;
      overflow: hidden; 
  }
  
  .slider {
      display: flex;
      transition: transform 1.5s ease-in-out;
  }
  
  .slider img {
      width: auto;
      height: 9vh;
      margin: 30px;
  }
  
  footer{
    background-color: rgb(8, 9, 9);
    color:white;
    text-align:center
  }