/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background-color: #f3f5fc;
    color: #0a3871;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* HEADER */
  .header {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
  }
  
  .logo {
    width: 120px;
  }
  
  /* MAIN */
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .container {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  /* PANEL IZQUIERDO */
  .left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .input-text {
    height: 300px;
    resize: none;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 1.5rem;
    background-color: transparent;
    color: #0a3871;
  }
  
  /* ADVERTENCIA */
  .warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
  }
  
  .warning img {
    width: 16px;
    height: 16px;
  }
  
  /* BOTONES */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 24px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .primary {
    background-color: #0a3871;
    color: white;
  }
  
  .primary:hover {
    background-color: #072b61;
  }
  
  .secondary {
    background-color: #d8dfe8;
    color: #0a3871;
    border: 1px solid #0a3871;
  }
  
  .secondary:hover {
    background-color: #cbd4dc;
  }
  
  @media (min-width: 768px) {
    .buttons {
      flex-direction: row;
    }
  
    .btn {
      width: 48%;
    }
  }
  
  /* PANEL DERECHO */
  .right-panel {
    background-color: white;
    border-radius: 24px;
    padding: 2rem;
    flex: 0.4;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .imagen-muneco {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .contenedor-a-ocultar h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
  }
  
  .contenedor-a-ocultar p {
    color: #495057;
    font-size: 1rem;
  }
  
  /* RESULTADO */
  .contenedor-resultado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .contenedor-resultado.hidden {
    display: none !important;
  }
  
  
  .texto-resultado {
    word-wrap: break-word;
    font-size: 1.2rem;
    color: #495057;
    white-space: pre-wrap;
  }
  
  .boton-copiar {
    background-color: transparent;
    border: 1px solid #0a3871;
    color: #0a3871;
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .boton-copiar:hover {
    background-color: #eff1f3;
  }
  
  .mostrar {
    display: flex !important;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* FOOTER */
  .footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #495057;
    background-color: transparent;
    margin-top: auto;
  }
  