    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: Arial, sans-serif;
    }

    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: url('/img/Fondo-web.jpg') no-repeat center center;
      background-size: cover;
    }

    .logo-container {
      flex-grow: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .logo-container img {
      max-width: 300px;
      width: 100%;
      height: auto;
    }
    /* Contenedor para iconos sobre el footer */
    .social-icons {
      position: fixed;
      bottom: 70px; /* justo arriba del footer */
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 30px;
      background: rgba(0,0,0,0.5);
      padding: 10px 30px;
      border-radius: 40px;
      z-index: 10;
    }

    .social-icons a {
      color: white;
      font-size: 2.5rem;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #25d366; /* efecto al pasar para WhatsApp */
    }

    .social-icons a.instagram:hover {
      color: #E1306C;
    }

    .social-icons a.email:hover {
      color: #4285F4;
    }

    footer {
      background-color: #948f8fb3;
      padding: 15px 0;
      color: rgb(100, 98, 98);
      text-align: center;
      font-size: 0.9rem;
    }

    footer a {
      color: #00f;
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .social-icons {
        gap: 20px;
      }

      .social-icons a {
        font-size: 1.5rem;
      }
    }