body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #e2d28b;
  }
  
  .saludvida-bienvenida {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2d28b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
  }
  
  .saludvida-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoomIn 1.2s ease-out forwards;
  }
  
  @keyframes fadeZoomIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .saludvida-texto-bienvenida {
    font-size: 24px;
    color: #6B4E24;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInText 1s ease-out forwards;
    animation-delay: 0.8s;
  }
  
  @keyframes fadeInText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .saludvida-contenido-oculto {
    display: none;
  }
  
