     body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: #f9f9f9;
      color: #333;
/*      background-image: url('../../assets/img/patron.png');
      background-repeat: repeat;
      background-size: auto;
      background-position: top left;*/
    }
    header {
      /*padding: 2rem 1rem;*/
      padding: .5rem;
      text-align: center;
      display: flex;
      align-items: center; 
      justify-content: start; 
      gap: 1rem
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
      font-weight: 700;
     }
    .hero {
      background: url('../../assets/img/bg-hero.png') center/cover no-repeat;
      padding: 6rem 1rem;
      text-align: center;
      color: white;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .hero h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      /*color: #9e2a2d;*/
    }
    .cta-button {
      background: #ffcc00;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      margin-top: 2rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background: #e6b800;
    }
    main {
      padding: 2rem 1rem;
      max-width: 700px;
      margin: auto;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    label {
      font-weight: 600;
    }
    input, select {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .pregunta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    }

    .pregunta p {
     margin-bottom: 0.5rem;
     color: #900C3F;
    }

    .pregunta-opciones {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
    }
    
    .opcion-vertical {
     margin-bottom: 0.5rem;
    }

    button[type="submit"] {
      background: #ffcc00;
      border: none;
      padding: 1rem;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }
    button[type="submit"]:hover {
      background: #e6b800;
    }
    #resultado {
      margin-top: 2rem;
      font-weight: bold;
      text-align: center;
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }
    .hidden { display: none;}
    
    @media (max-width: 600px) {
      .hero h2 {
        font-size: 1.8rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }
