
    .popup__newsletter * {
      outline: none;
    }

    .popup__newsletter {
      background-color: rgba(0, 0, 0, .5);
      align-items: center;
      justify-content: center;
      height: 100vh;
      font-family: 'montserrat';
      display: none;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 99999;
      color: white;
    }

    .popup__newsletter.active {
      display: flex;
    }

    .popup__newsletter ._flex {
      display: flex;
    }

	.popup__newsletter p {
  		color: white;
    }

    .popup__newsletter--container {
      width: 680px;
      overflow: hidden;
      position: relative;
      background-color: #262626;
      color: white;
      height: 364px;
    }

    .popup__view {
      display: none;
    }

    .popup__view.active {
      display: block;
    }

    .popup__newsletter picture,
    .popup__newsletter img {
      display: block;
    }

    .popup__newsletter--image {
      width: 50%;
      flex-shrink: 0;
    }

    .popup__newsletter--image img {
      width: 100%;
    }

    .popup__newsletter--form {
      padding: 40px 20px;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .popup__newsletter input,
    .popup__newsletter select {
      width: 240px;
      height: 36px !important;
      background-color: #ebeced;
      border: 3px solid white !important;
      box-shadow: none;
      color: #2a2a2a;
      padding-left: 10px;

      font-size: 14px;
      box-sizing: border-box;
      border: none;
      margin-top: 10px;
    }

    .popup__newsletter button {

      font-weight: bold;
      border: 2px solid white;
      background-color: transparent;
      color: white;
      width: 120px;
      height: 36px;
      font-size: 14px;
      box-shadow: none;
      margin-bottom: 20px;
    }

    .popup__newsletter--form h3 {
      font-weight: 400;
      font-size: 18px;
  	  color: white;
      font-family: "Dyadis ITC";
    }

    .popup__newsletter--form h3 strong {
      font-weight: bold;
      color: white;
      font-family: "Dyadis ITC";
    }

    .popup__newsletter--form p {
      font-family: 'montserrat';
      font-size: 12px;
      padding: 0 20px;
      color: white; 
  		margin-top: 30px;

    }

    .popup__newsletter--form p a {
      color: white;
      text-decoration: underline;
    }
    .popup__newsletter--form form {
  		margin-top: 20px;
	}

    .popup__newsletter--form form p {
      margin-bottom: 10px;
      margin-top: 0;
    }

    .popup__newsletter--close-btn {
      position: absolute;
      right: 10px;
      top: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 30px;
      text-decoration: none;
      color: black;
      font-weight: bold;
      font-size: 0;
      background-image: url('/arquivos/close_popup_newsletter.png');
      background-size: contain;

    }

    .popup__newsletter--response {
      height: 100%;
    }

    .popup__newsletter .response {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      height: 100%;
    }

    .popup__newsletter .response h2 {
      font-size: 40px;
      font-weight: 500;
  color: white !important;
    }

    .popup__newsletter .response p {
      padding: 0 20px !important;
    }

    .popup__newsletter .response span {
      text-transform: uppercase;
      margin-top: 20px !important;
      padding: 15px 30px;
      border: 2px solid white;
      font-weight: bold;
     color: white !important;
  
    }

    @media (max-width: 959px) {
      .popup__newsletter ._flex {
        flex-direction: column;
      }
      .popup__newsletter--container {
        max-width: 320px;
      }
      .popup__newsletter--image {
        display: none;
      }
    }