<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contenedor-identidad {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../../assets/identidad imagen.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    margin-top: 150px;
  }
  
/* Tarjeta centrada (encabezado) */
.tarjeta-identidad-central {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 480px;
    width: 100%;
    margin-bottom: 100px; /* 10cm visuales aprox */
  }
  
  .tarjetas-identidad {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
  }
  
  .tarjeta-identidad {
    background: #ffffffcc;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .tarjeta-identidad:hover {
    transform: translateY(-5px);
  }
  
  .tarjeta-identidad h3 {
    color: #002c5f;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .tarjeta-identidad p {
    color: #333;
    line-height: 1.5;
  }
  
  .tarjeta-identidad ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #333;
  }
  
  .tarjeta-identidad li {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .tarjeta-identidad-central {
    animation: fadeInUp 1s ease-out;
  }
  </pre></body></html>