body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #fff;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    color: #f57c00;
    font-weight: 700;
  }
  

/* Menú de navegación */
 nav {
    background-color: #333;
    padding: 15px 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: #f57c00;
    transform: scale(1.1);
  }

/* Sección sobre nosotros */
#sobre-nosotros {
  background-color: #1e1e1e;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

#sobre-nosotros h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

#sobre-nosotros p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.descripcion p {
  font-size: 20px;
  margin-bottom: 20px;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.responsive-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonios {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.testimonios h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.testimonio {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonio p {
  font-size: 18px;
  margin: 0;
}

.testimonio strong {
  font-size: 20px;
  color: #f57c00;
}

.valores {
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

.valores h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.valores ul {
  list-style: none;
  padding: 0;
}

.valores li {
  font-size: 18px;
  margin-bottom: 10px;
}

.valores li strong {
  color: #f57c00;
}

/* Footer */
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #f57c00;
  }
  
  footer .social-media {
    margin-top: 15px;
  }
  
  footer .social-media a {
    margin: 0 10px;
  }
  




  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer .social-icons {
    margin-top: 15px;
}

footer .social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px; /* Tamaño del ícono */
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #f57c00; /* Color cuando pasas el mouse */
}

/* Tamaño específico para los íconos */
footer .social-icons i {
    font-size: 32px; /* Aumentar tamaño de los íconos */
}

