
      /* =========================================
           CONFIGURACIÓN BASE Y COLORES
           ========================================= */
      :root {
        --rojo-vino: #6b1526;
        --texto-oscuro: #2d2d2d;
        --texto-gris: #666666;
        --fondo-blanco: #ffffff;
      }

      body,
      html {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: "Montserrat", Arial, sans-serif;
        background-color: var(--fondo-blanco);
      }

      /* =========================================
           ESTRUCTURA DE PANTALLA DIVIDIDA
           ========================================= */
      .layout-pantalla {
        display: flex;
        height: 100vh;
        width: 100%;
      }

      /* COLUMNA IZQUIERDA */
      .bloque-marca {
        width: 45%;
        background-color: var(--rojo-vino);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
      }

      /* COLUMNA DERECHA */
      .bloque-contenido {
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Distribuye el espacio para no aplastar el footer */
        padding: 0 8%;
        background-color: var(--fondo-blanco);
        box-sizing: border-box;
      }

      /* Contenedor central del texto para centrarlo verticalmente */
      .contenido-central {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* =========================================
           PROTECCIÓN Y TAMAÑO DE LA INSIGNIA (480px)
           ========================================= */
      .insignia-fencil {
        width: 480px;
        max-width: 90%; /* Evita que se salga en pantallas pequeñas */
        height: auto;

        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
      }

      /* =========================================
           TIPOGRAFÍA Y ELEMENTOS VISUALES
           ========================================= */
      .etiqueta-estado {
        display: inline-block;
        background-color: #f5f5f5;
        color: var(--rojo-vino);
        padding: 10px 20px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 4px;
        margin-bottom: 25px;
        width: fit-content;
      }

      h1 {
        font-size: 3rem;
        color: var(--texto-oscuro);
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 10px 0;
        text-transform: uppercase;
      }

      h2 {
        font-size: 1.5rem;
        color: var(--rojo-vino);
        font-weight: 600;
        margin: 0 0 25px 0;
      }

      p {
        font-size: 1.15rem;
        color: var(--texto-gris);
        line-height: 1.7;
        max-width: 550px;
        margin: 0 0 45px 0;
      }

      .barra-progreso-contenedor {
        width: 100%;
        max-width: 400px;
        background-color: #e0e0e0;
        height: 6px;
        border-radius: 3px;
        overflow: hidden;
      }

      .barra-progreso {
        width: 30%;
        height: 100%;
        background-color: var(--rojo-vino);
        animation: cargar 2s infinite alternate ease-in-out;
      }

      @keyframes cargar {
        0% {
          width: 10%;
        }
        100% {
          width: 90%;
        }
      }

      /* =========================================
           FOOTER LEGAL MEJORADO Y DESPEGADO DEL BORDE
           ========================================= */
      .footer-legal {
        border-top: 1px solid #eeeeee;
        padding: 30px 0 40px 0; /* Espaciado superior e inferior para despegarlo del borde */
        font-size: 0.9rem;
        color: #777777;
        font-weight: 400;
        line-height: 1.8;
      }

      .footer-legal strong {
        color: var(--texto-oscuro);
        font-weight: 600;
      }

      /* =========================================
           RESPONSIVE (Móviles)
           ========================================= */
      @media (max-width: 900px) {
        .layout-pantalla {
          flex-direction: column;
        }
        .bloque-marca {
          width: 100%;
          padding: 40px 0;
          height: auto;
        }
        .insignia-fencil {
          width: 300px;
        } /* Se reduce un poco en móviles para no saturar */
        .bloque-contenido {
          width: 100%;
          height: auto;
          padding: 40px 8%;
          text-align: center;
        }
        .etiqueta-estado {
          margin: 0 auto 20px auto;
        }
        .barra-progreso-contenedor {
          margin: 0 auto 40px auto;
        }
        h1 {
          font-size: 2.2rem;
        }
      }
