:root {
    --color-text-hover: #ff8c00;
    --color-text-primary: #02153e;
    --color-text-secondary: #ffffff;
    --color-text-gris: #6b6b6b;
    --color-fondo: #0343c9;
    --color-fondo-link-hover: #223a92;
    --color-fondo-ligero: #f9f9fa;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f1f3f9);
    color: var(--color-text-primary);
  }

  .panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    gap: 2rem;
  }

  /* Logo circular */
  .panel__logo {
    width: 20rem;
    height: 10rem;
    background: var(--color-fondo);
    border-radius: 50%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
  }

  .panel__logo img {
    width: 70%;
    height: auto;
  }

  .panel__title {
    text-align: center;
    margin-top: 0.5rem;
  }

  .panel__title p {
    font-size: 1rem;
    color: var(--color-text-gris);
  }

  .panel__cards {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
   
  }

  .panel__card {
    flex: 1 1 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb; box-shadow: 0 6px 12px rgb(36 37 39 / 14%), 0 16px 24px rgb(36 37 39 / 8%);
  }

  .panel__card:hover {
    transform: translateY(-6px);
    background: var(--color-fondo);
    color: white;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .panel__card i {
    font-size: 3rem;
    color: var(--color-fondo);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  .panel__card:hover i {
    color: var(--color-text-hover);
  }

  .panel__card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .panel__card p {
    font-size: 0.95rem;
    color: var(--color-text-gris);
    margin-bottom: 1.5rem;
  }

  .panel__card:hover p {
    color: #eaeaea;
  }

  .panel__card a {
    background: var(--color-text-hover);
    border: none;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .panel__card a:hover {
    background: #e07a00;
  }