    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      width: 100%;
      height: 100%;
      overflow: hidden;
      font-family: "Poppins", sans-serif;
     }

    /* Fundo com efeito água */
    .ripple-bg {
      width: 100%;
      height: 100vh;
      background-image: url('/images/desk.webp');
      background-size: cover;
      background-position: center;
      position: relative;
    }

    /* Conteúdo central */
    .center-content {
      position: absolute;
      top: 33%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      text-shadow: 0 2px 10px #000;
    }

    .center-content img {
      width: 450px;
      }

    .center-content p {
      margin-top: 15px;
    }

    /* Ícones fixos no rodapé */
    .footer-icons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 25px;
    }

    .footer-icons a {
      font-size: 35px;
      color: white;
      text-shadow: 0 2px 8px #000;
      text-decoration: none;
    }
