   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       -webkit-tap-highlight-color: transparent;
       user-select: none;

   }


   body {
       font-family: 'Inter', sans-serif;
       background: #ffffff;
       color: #111111;
       height: 100vh;
       width: 100%;
       display: flex;
       overflow: hidden;
       align-items: flex-start;
       justify-content: center;


   }

   .container {
       width: 100%;
       width: 100%;
       height: 97%;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: space-evenly;

   }


   .__container_title {

       width: 100%;
       height: 130px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   h1 {
       font-size: clamp(2rem, 4vw, 3.8rem);
       font-weight: 700;
       line-height: 42px;
       text-align: center;
       letter-spacing: -2px;
       width: 95%;
       color: #222;
   }

   h1 span {
       color: #F2780C;
       /* verde */
   }

   #n_pop {
       color: #f2550c;
   }

   .video-wrapper {
       width: 100%;
       border-radius: 4px;
       overflow: hidden;

       width: 100%;
       height: 400px;
       box-shadow:
           0 20px 60px rgba(0, 0, 0, .08),
           0 4px 12px rgba(0, 0, 0, .04);

   }

   .video-wrapper iframe,
   .video-wrapper video {
       width: 100%;
       height: 100%;
       border: none;
       display: block;
   }



   .highlight {
       color: #111;
       font-weight: 600;
   }


   .__cont_description {

       width: 100%;
       height: auto;
       display: flex;
       align-items: center;
       justify-content: center;
       position: relative;
       top: -20px;
   }


   .__d_p_description_content {

       width: 80%;
   }





   .open-popup {
       padding: 14px 28px;
       border: none;
       border-radius: 12px;
       background: #111;
       color: #fff;
       cursor: pointer;
       font-size: 15px;
   }

   .popup-overlay {
       position: fixed;
       inset: 0;
       background: rgba(0, 0, 0, .45);
       backdrop-filter: blur(6px);
       display: none;
       justify-content: center;
       align-items: center;
       opacity: 1;
       visibility: visible;
       transition: .3s;
       z-index: 999;
   }

 

   .__env_status_filter_backdrop {
       position: fixed;
       inset: 0;
       background: rgba(0, 0, 0, .45);
       backdrop-filter: blur(6px);
       display: none;
       justify-content: center;
       align-items: center;
       opacity: 1;
       visibility: visible;
       transition: .3s;
       z-index: 999;
   }

   .__env_status_filter_backdrop.active {
       display: flex;
   }

   .popup-overlay.active {
       display: flex;
       opacity: 1;
       visibility: visible;
   }

   .popup {
       width: min(92%, 420px);
       background: #fff;
       border-radius: 28px;
       overflow: hidden;
       box-shadow:
           0 20px 60px rgba(0, 0, 0, .15),
           0 2px 10px rgba(0, 0, 0, .05);
       transform: translateY(20px);
       transition: .35s;
   }

   .popup-overlay.active .popup {
       transform: translateY(0);
   }

   .popup-image {
       width: 100%;
       height: 220px;
       background-image: url('/Assets/imgs/v13.jpg');
       background-position: center center;
       background-size: cover;
       background-repeat: no-repeat;
       object-fit: cover;
   }

   .popup-content {
       padding: 28px;
   }

   .popup-title {
       font-size: 1.6rem;
       font-weight: 700;
       color: #111;
       margin-bottom: 10px;
   }

   .popup-description {
       color: #666;
       font-size: .95rem;
       line-height: 1.6;
       margin-bottom: 24px;
   }

   .input-group {
       display: flex;
       flex-direction: column;
       gap: 14px;
   }

   .input-group input {
       width: 100%;
       height: 46px;
       padding: 0 18px;

       border: 1.5px solid #e7e7e7;
       border-radius: 14px;

       background: #fff;

       font-size: 15px;
       color: #222;

       outline: none;

       transition: all .25s ease;
   }

   .input-group input::placeholder {
       color: #999;
   }

   .input-group input:focus {
       border-color: #168300;
       box-shadow: 0 0 0 4px rgba(22, 131, 0, 0.12);
   }

   .input-group input:focus {
       border-color: #111;
   }

   .cta-button {
       width: 100%;
       height: 56px;
       border: none;
       border-radius: 14px;
       margin-top: 18px;
       background: linear-gradient(135deg, #F2780C 0%, #924603 100%);
       color: #fff;
       font-size: 15px;
       font-weight: 600;
       cursor: pointer;
       transition: .25s;

       transform-origin: center;
   }



   @keyframes heartbeat {
       0% {
           transform: scale(1);
       }

       14% {
           transform: scale(1.06);
       }

       28% {
           transform: scale(1);
       }

       42% {
           transform: scale(1.06);
       }

       70% {
           transform: scale(1);
       }

       100% {
           transform: scale(1);
       }
   }

   .cta-button:hover {
       transform: translateY(-2px);
   }

   .close-popup {
       position: absolute;
       top: 15px;
       right: 15px;
       width: 38px;
       height: 38px;
       border: none;
       border-radius: 50%;
       background: rgba(255, 255, 255, .9);
       backdrop-filter: blur(10px);
       cursor: pointer;
       font-size: 18px;
   }

   .popup-wrapper {
       display: flex;
       align-items: center;
       justify-content: center;
       position: relative;
   }




   .__env_status_ok {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 90%;
       max-width: 420px;
       background: #ffffff;
       border-radius: 20px;
       padding: 30px 25px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
       text-align: center;
       z-index: 9999;

       display: block;
       animation: popupShow 0.4s ease;
   }



   .__env_status_ok_icon {
       width: 70px;
       height: 70px;
       margin: 0 auto 20px;
       border-radius: 50%;
       background: #e8fff0;
       color: #16a34a;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 34px;
       font-weight: bold;
   }

   .__env_status_ok h2 {
       color: #111;
       font-size: 24px;
       margin-bottom: 14px;
   }

   .__env_status_ok p {
       color: #555;
       line-height: 1.6;
       font-size: 16px;
   }

   .__env_status_ok_overlay {
       position: fixed;
       inset: 0;
       background: rgba(0, 0, 0, 0.45);
       z-index: 9998;
       backdrop-filter: blur(4px);
   }

   @keyframes popupShow {
       from {
           opacity: 0;
           transform: translate(-50%, -45%) scale(0.9);
       }

       to {
           opacity: 1;
           transform: translate(-50%, -50%) scale(1);
       }
   }


   .description {
       line-height: 1.7;
       color: #555;
       font-weight: 400;
       text-align: justify;
       max-width: 700px;
       margin: 0 auto;
   }

   .highlight {
       color: #732F16;
       font-weight: 700;
   }

















   .loading-overlay {
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, .65);
       backdrop-filter: blur(6px);
       display: none;
       align-items: center;
       justify-content: center;
       z-index: 99999;
       opacity: 1;
       visibility: hidden;
       transition: .3s;
   }

   .loading-overlay.active {
       display: flex;
       opacity: 1;
       visibility: visible;
   }

   /* Popup */

   .loading-popup {
       width: 320px;
       padding: 30px;
       border-radius: 24px;
       background: #fff;
       text-align: center;

       box-shadow:
           0 20px 50px rgba(0, 0, 0, .15);

       animation: popup .4s ease;
   }

   @keyframes popup {
       from {
           transform: translateY(20px) scale(.95);
           opacity: 0;
       }

       to {
           transform: translateY(0) scale(1);
           opacity: 1;
       }
   }

   .loading-popup h2 {
       margin-top: 20px;
       margin-bottom: 8px;
       color: #222;
   }

   .loading-popup p {
       color: #777;
       font-size: 14px;
   }

   /* Spinner */

   .spinner {
       width: 60px;
       height: 60px;
       margin: auto;

       border: 4px solid #e5e5e5;
       border-top: 4px solid #16a34a;
       border-radius: 50%;

       animation: spin 1s linear infinite;
   }

   @keyframes spin {
       to {
           transform: rotate(360deg);
       }
   }

   /* Dots */

   .dots {
       display: flex;
       justify-content: center;
       gap: 8px;
       margin-top: 20px;
   }

   .dots span {
       width: 10px;
       height: 10px;
       border-radius: 50%;
       background: #16a34a;

       opacity: .2;

       animation: blink 1.5s infinite;
   }

   .dots span:nth-child(2) {
       animation-delay: .3s;
   }

   .dots span:nth-child(3) {
       animation-delay: .6s;
   }

   @keyframes blink {

       0%,
       100% {
           opacity: .2;
           transform: scale(.9);
       }

       50% {
           opacity: 1;
           transform: scale(1.2);
       }
   }

   /* Botão demo */