/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #87CEEB, #B0E0E6); /* Azul cielo más claro */
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Contenido principal */
  .content {
    flex: 1; /* Ocupa el espacio sin afectar las olas */
    text-align: center;
    padding: 50px;
    color: white;
    position: relative;
    z-index: 10;
  }
  
  /* Contenedor de olas */
  .wave-container {
    position: relative;
    width: 100%;
    height: 120px; /* Un poco más bajo para no tapar contenido */
    overflow: hidden;
  }
  
  /* SVG de las olas */
  .waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  .wave {
    width: 200%;
    height: 100%;
    animation: waveMove 6s infinite linear;
  }
  
  /* Colores más claros para las olas */
  .wave1 {
    fill: rgba(255, 255, 255, 0.7); /* Más blanco para que resalte */
    animation-duration: 6s;
  }
  
  .wave2 {
    fill: rgba(255, 255, 255, 0.5); /* Más clara que antes */
    animation-duration: 8s;
    animation-direction: reverse;
  }
  
  .wave3 {
    fill: rgba(255, 255, 255, 0.3); /* Aún más clara para fondo sutil */
    animation-duration: 10s;
  }
  
  /* Animación de las olas */
  @keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  