/* Configuración básica */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background: #0b0c10;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b3a49;
    color: white;
    padding: 10px 20px;
  }
  
  .perfil-logo img {
    height: 40px;
  }
  
  .welcome-message {
    font-size: 18px;
    text-align: center;
  }
  
  .perfil-datos {
    position: relative;
  }
  
  .profile-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ff8c00;
  }
  
  .profile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
  }
  
  .profile-menu h3 {
    margin: 0;
    margin-bottom: 10px;
  }
  
  .profile-menu a {
    display: block;
    color: #005f7f;
    text-decoration: none;
    margin-bottom: 5px;
  }
  
  .profile-menu a:hover {
    text-decoration: underline;
  }
  

/* ================================================================================ */

/* Contenedor de la animación */
.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Canvas para la animación */
#tcpCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle, #1f2833, #0b0c10);
}

/* Contenido centrado */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.title {
    font-size: 3rem;
    color: #2cafa6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #c5c6c7;
}

.cta-button {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #2cafa6, #45a29e);
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #45a29e, #2cafa6);
    transform: scale(1.1);
}

.cta-button2 {
    text-decoration: none;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #2cafa6, #45a29e);
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button2:hover {
    background: linear-gradient(45deg, #1f4947, #0a504b);
    transform: scale(1.1);
}

/* Pie de Página */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    z-index: 3;
}