/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f9;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    max-width: 250px;
  }
  
  .horarios {
    margin-top: 10px;
    font-size: 25px;
  }
  
  /* Main */
  main {
    padding: 40px 20px;
  }
  
  h2 {
    color: #0057b8;
    margin-bottom: 20px;
    font-size: 40px;
  }
  
  .galeria {
    margin-bottom: 40px;
  }
  
  .carousel {
    width: 100%;
    overflow: hidden;
  }
  
  .images {
    display: flex;
    transition: transform 1s ease-in-out;
  }
  
  .images img {
    width: 100%;
    max-width: 300px;
    margin: 0 10px;
    border-radius: 10px;
  }
  
  /* Nosotros y Servicios */
  .nosotros, .servicios {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .nosotros p{
    font-size: 25px;
    text-align: justify;
  }
  ul {
    list-style-type: none;
  }
  
  ul li {
    font-size: 25px;
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    background-color: #0057b8;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .contacto p {
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  /* Botones flotantes */
  .button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .button-container a {
    display: block;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .button-container img {
    width: 70px;
    height: 70px;
    display: block;
  }
  
  .button-container a:hover {
    opacity: 0.8;
  }
  
  
  .whatsapp-button {
    background-color: #25D366;
  }
  
  .facebook-button {
    background-color: #4267B2;
  }
  
  .instagram-button {
    background-color: #E1306C;
  }
  
  .tiktok-button {
    background-color: #000000;
  }
  
  h1{
    text-align: center;
    padding-bottom: 45px;
    font-size: 50px;
  }