/*
     SISTEMA DE ESCALA PROPORCIONAL 1920px
     Padronizacao Rendimento Solution Architecture - ULTRA UNIQUE CLASSES
  */
  #block-escopo{
    --nr12-s2-navy: #253064;
    --nr12-s2-gold: #d89a14;
    --nr12-s2-white: #ffffff;
    --nr12-s2-deep-blue: #1a234d;
  }

  #block-escopo, #block-escopo *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }

  @font-face{
    font-family: "Lemon Milk";
    src: url("/fontes/lemonmilk-bold.woff2")
      format("woff2");
    font-weight: 700;
    font-display: swap;
  }
  @font-face{
    font-family: "Ekster";
    src: url("/fontes/ekster-regular.woff2")
      format("woff2");
    font-weight: 400;
    font-display: swap;
  }

  #block-escopo .nr12-s2-wrapper{
    width: 100%;
    background: var(--nr12-s2-white);
    position: relative;
    overflow: hidden;
    height: 960px;
  }

  #block-escopo #nr12-s2-scaling{
    width: 1920px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transform-origin: top center;
    padding: 100px 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #block-escopo .nr12-s2-header{
    width: 100%;
    margin-bottom: 80px;
    text-align: left;
  }

  #block-escopo .nr12-s2-tag{
    font-family: "Ekster", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--nr12-s2-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: block;
  }

  #block-escopo .nr12-s2-title-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }

  #block-escopo .nr12-s2-title{
    font-family: "Lemon Milk", sans-serif;
    font-size: 34px;
    line-height: 1.1;
    color: var(--nr12-s2-navy);
    text-transform: uppercase;
    max-width: 900px;
  }

  #block-escopo .nr12-s2-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1640px;
  }

  #block-escopo .nr12-s2-card{
    background: linear-gradient(
      135deg,
      var(--nr12-s2-navy) 0%,
      var(--nr12-s2-deep-blue) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: none;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

  #block-escopo .nr12-s2-card h3{
    font-family: "Lemon Milk", sans-serif;
    font-size: 24px;
    color: var(--nr12-s2-white);
    margin-bottom: 25px;
    line-height: 1.3;
    text-transform: uppercase;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
  }

  #block-escopo .nr12-s2-card p{
    font-family: "Ekster", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  #block-escopo .nr12-s2-reveal{
    opacity: 0;
    filter: blur(12px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  }

  #block-escopo .nr12-s2-reveal.is-visible{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  @media (max-width: 1024px){
    #block-escopo .nr12-s2-wrapper{
      height: auto !important;
      padding: 80px 24px;
    }

    #block-escopo #nr12-s2-scaling{
      position: relative !important;
      width: 100% !important;
      left: auto !important;
      transform: none !important;
      padding: 0;
      align-items: center;
      text-align: center;
    }

    #block-escopo .nr12-s2-header{
      margin-bottom: 50px;
      text-align: center;
    }

    #block-escopo .nr12-s2-title-container{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    #block-escopo .nr12-s2-title{
      font-size: 30px;
    }

    #block-escopo .nr12-s2-grid{
      grid-template-columns: 1fr;
      gap: 20px;
    }

    #block-escopo .nr12-s2-card{
      padding: 40px 30px;
      text-align: center;
      border-radius: 20px;
    }

    #block-escopo .nr12-s2-card h3{
      font-size: 22px;
      min-height: 0;
      justify-content: center;
    }

    #block-escopo .nr12-s2-card p{
      font-size: 14px;
    }
  }