* {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    min-height: 100%;
  }
  
  body {
    background: #fff;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }

  .puya-title {

    font-family: "roca", sans-serif;
  
    font-weight: 400;
  
    font-size: clamp(22px, 1.6vw, 32px);
    line-height: 1.2;
    text-align: center;
  
    margin: 0 auto 48px;
  
    max-width: 900px;
  
    text-decoration: none;
  
  }
  
  .puya-title em {
  
    font-style: italic;

  
  }
  
  .puya-page {
    min-height: 100vh;
    padding: 18px;
    background: #fff;
  }
  
  .hero {
    position: relative;
    min-height: calc(100vh - 36px);
    border: 2px solid #ffffff;
    /* outline: 1px solid #1f1f1f; */
    overflow: hidden;
    background-image: url("fondo.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 95, 55, 0.18);
    z-index: 1;
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    width: min(920px, 88%);
    text-align: center;
    padding: 60px 0 48px;
  }
  
  .hero__title-logo {
    width: min(310px, 88%);
    margin-bottom: 44px;
  }
  
  h1 {
    max-width: 900px;
    margin: 0 auto 48px;
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.35;
    font-weight: 700;
    text-decoration: underline;
  }
  
  .hero__text {
    max-width: 840px;
    margin: 0 auto;
    text-align: left;
    font-size: clamp(12px, 1.35vw, 15px);
    line-height: 1.38;
    font-weight: 400;
  }
  
  .hero__text p {
    margin: 0 0 4px;
  }
  
  .hero__button {
    display: inline-block;
    margin-top: 34px;
    padding: 12px 26px;
    border: 1.5px solid #fff;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
  }
  
  .hero__button:hover {
    background: #fff;
    color: #007846;
  }
  
  .hero__logo {
    display: block;
    width: clamp(70px, 8vw, 65px);
    margin: 54px auto 0;
  }
  
  em {
    font-style: italic;
    font-family: "roca", sans-serif;
    font-size: 18px;
  }
  
  @media (max-width: 768px) {
    .puya-page {
      padding: 10px;
    }
  
    .hero {
      min-height: calc(100vh - 20px);
      align-items: flex-start;
    }
  
    .hero__content {
      width: 88%;
      padding: 42px 0 36px;
    }
  
    .hero__title-logo {
      margin-bottom: 32px;
    }
  
    h1 {
      margin-bottom: 34px;
    }
  
    .hero__text {
      text-align: left;
      line-height: 1.45;
    }
  
    .hero__logo {
      margin-top: 42px;
    }
  }