<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <title>Fase 02</title>
  <link href="https://fonts.googleapis.com/css2?family=Closer&display=swap" rel="stylesheet">
  <style>
    /* VIDEO como fondo del body */
    #bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }

    /* BODY encima del video */
    body {background-image: url('/fondo-fase02.mp4');
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 1;
      font-family: 'Closer', sans-serif;
      color: white;
      text-align: center;
    }

    /* HEADER */
    header {
      background-image: url("/logo.gif");
      background-size: 70px;
      background-position: center;
      background-color: transparent;
      border: dotted 20px yellow;
      border-radius: 10px;
      margin: 40px auto;
      padding: 20px;
    }

    /* H1 */
    h1 {
      color: black;
      border-radius: 60px;
      border: dotted 20px;
      border-top-color: green;
      border-inline-color: gray;
      border-bottom-color: red;
      font-size: 25px;
      background-color: transparent;
      font-weight: bold;
      transform: rotate(0deg);
      margin: 20px auto;
      padding: 10px;
    }

    /* H2 */
    h2 {
      color: red;
      border-radius: 80px;
      border: solid 18px;
      background-color: gray;
      font-size: 25px;
      transform: rotate(-8deg);
      border-top-color: white;
      border-inline-color: grey;
      border-bottom-color: black;
      margin: 20px auto;
      padding: 10px;
    }

    /* PÁRRAFO */
    p {
      margin-block: 80px;
      background-color: gray;
      border: solid 20px;
      border-radius: 80px;
      font-size: 24px;
      border-top-color: white;
      border-inline-color: grey;
      border-bottom-color: black;
      padding: 20px;
    }

    /* IMÁGENES */
    img {
      border: solid;
      border-radius: 80px;
      margin: 20px;
    }

    /* BOTÓN */
    button {
      border: solid 5px;
      border-radius: 80px;
      border-top-color: white;
      border-inline-color: orange;
      border-bottom-color: black;
      padding: 10px 20px;
      background-color: transparent;
      cursor: pointer;
      color: white;
      font-size: 18px;
    }

    /* HOVER BOTÓN */
    button:hover {
      border-top-color: black;
      border-inline-color: white;
      border-bottom-color: orange;
      background-color: red;
      color: black;
      transform: scale(1.1);
      transition: all 0.3s ease;
    }

    /* FOOTER */
    footer {
      border: solid 20px;
      border-radius: 80px;
      border-top-color: white;
      border-inline-color: grey;
      border-bottom-color: black;
      margin: 40px auto;
      padding: 20px;
    }
  </style>
</head>
<body>

  <!-- VIDEO de fondo -->
  <video autoplay muted loop id="bg-video">
    <source src="/perfil-fase02.mp4" type="video/mp4">
    Tu navegador no soporta video HTML5.
  </video>

  <!-- CONTENIDO -->
  <header>
    <img src="/logo.gif" alt="Logo" class="logo1">
  </header>

  <h1>Fase 02: Registro activo</h1>
  <h2>Bitácora emocional</h2>

  <p>Esta sección documenta el estado operativo actual. No hay acting, no hay decorado. Solo estructura.</p>

  <button>Activar protocolo</button>

  <footer>
    <p>© Emiliano Lombardo – Sistema operativo emocional</p>
  </footer>

</body>
</html>