@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html {
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100vw;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0; /* Fondo claro */
    color: #333; /* Texto oscuro para contraste */
}

.ctaDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: 60%;
    background-color: #ffffff; /* Fondo blanco para la caja central */
    z-index: 99;
    border-radius: .25rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.125); /* Borde sutil para definir la caja */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); /* Sombra más suave para el tema claro */
}

.buttonGroup {
    display: flex;
    gap: 1rem;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ca0088; /* Se mantiene el color del botón para contraste */
    color: #ffffff; /* Texto blanco para el botón */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

button:hover {
    background-color: #6f2cf4; /* Color más claro al pasar el mouse */
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
    color: #333; /* Texto oscuro para párrafos */
}

.main-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Fondo blanco para la pantalla de inicio */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    opacity: 0;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1); /* Puedes ajustar la escala para que la pulsación sea más o menos notable */
    }
    100% {
      transform: scale(1);
    }
  }
  
  .main-logo {
      width: 100px;
      height: 100px;
      animation: pulse 2s infinite ease-in-out; /* 2 segundos de duración, infinitamente, suavizado */
  }
  

.show {
    opacity: 1;
    visibility: visible;
}

.hide {
    opacity: 0;
    visibility: hidden;
}
