@charset "UTF-8";
/* CSS Document */

/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    font-family: "Montserrat", sans-serif;
}
body {
    background: #000000 url("../images/bg.webp") 50% top no-repeat;
}
/* Reset */

/* Header */
header.header {
    padding: 50px 0 50px 0;
}
.header .copy {
    clear: both;
    display: block;
    width: 63%;
    float: left;
    padding: 50px 25px;
    background: rgba(0, 0, 0, 0.447);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);    
    border-radius: 35px 35px 35px 35px;
    -moz-border-radius: 35px 35px 35px 35px;
    -webkit-border-radius: 35px 35px 35px 35px;    
}
.copy h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 auto 25px auto;
}
.copy h1 span {
   background: linear-gradient(90deg, #ff5e00, #c84900); /* degrade nas letras */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* para mais compatibilidade */
  background-clip: text;
  color: transparent;
   
}
.copy p {
    line-height: 1.4;
    margin: 0 auto 10px auto;
    color: #dfdfdf;
    font-size: 17px;
    font-weight: 500;
}
.copy p span {
   background: linear-gradient(90deg, #df5201, #ff5e00); /* degrade nas letras */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* para mais compatibilidade */
  background-clip: text;
  color: transparent;
}
.copy ul {
    padding: 0 0 0 10px;
    margin: 10px auto 25px auto;
}
.copy ul li {
    font-size: 17px;
    color: #dfdfdf;
    font-weight: 500;
    line-height: 1.5;
    list-style: none;
}
.copy h2 {
    width: 100%;
    padding: 10px 15px;
    border: solid 0.5px #868686;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    margin: 0 0 35px 0;
}
.copy h2 span {
    padding: 0 5px;
}
.copy h6 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 auto 10px auto;
}
.blob {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 2px 5px 0 0;
    float: left;
	height: 15px;
	width: 15px;
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob.red {
	background: rgb(255, 89, 0);
	box-shadow: 0 0 0 0 rgba(255, 89, 0, 1);
	animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}
.blob-cta {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob-cta.green {
	box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
	}
}
/* Header */

/* PopUp */
button.cta, a.cta {
    background: #58b750;
    border: none;
    clear: both;
    width: 75%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    padding: 20px 0;
    border-radius: 15px 15px 15px 15px;
    -moz-border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;
}
.popup {
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility .25s ease-in-out,opacity .25s ease-in-out,transform .25s ease-in-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.popup-content {
    background-color: white;
    padding: 50px 35px;    
    width: 45%;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
}
button.close-btn {
    background: transparent;
    border: none;
    clear: both;
    display: block;
    float: right;
    margin: -40px -30px 0 0 !important;
    width: auto;
    height: auto;
}
button.close-btn svg {
    height: 20px;
    width: 20px;
    fill: red;
    opacity: 0.5;
}
button.close-btn svg:hover {
	opacity: 1;
}
.show-popup{
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);    
}
.popup h1 {
	color: #000000;
	font-size: 33px;
	text-align: center;
	font-weight: 700;
	margin: 0 auto 15px auto;
}
.popup a {
    clear: both;
    display: block;
    text-align: center;
    font-size: 12px;
    margin: 15px auto 0 auto;
    color: #000000;
    text-decoration: none;
}
/* PopUp */

/* Footer */
footer.footer {
    padding: 55px 0;
    border-top: solid 1px #ff5e00;
    background: #000000;
}
.footer p {
    text-align: center;
    font-size: 12px;
    margin: 0 auto;
    color: #a38276;
    width: 75%;
}
img.logo-ft {
    clear: both;
    display: block;
    width: 125px;
    margin: 25px auto 0 auto;
}
/* Footer */

/* Responsivo */
@media (max-width: 700px) {
    body {
        background: #000000 url("../images/bg-mb.png") 50% no-repeat;
        background-size: contain;
    } 
    header.header {
        padding: 15px 0 400px 0;
    }
    .header .copy {
        width: 100%;
        padding: 20px 10px;
    }
    img.logo {
        width: 150px;
        margin: 0 auto 20px auto;
    }
    .copy h6 {
        font-size: 14px;
        margin: 0 auto 15px auto;
        width: 79%;
    }
    .copy h1 {
        text-align: center;
        font-size: 18px;
        margin: 0 auto 20px auto;
    }
    .copy ul {
        padding: 0;
        margin: 0 auto 25px auto;
    }
    .copy ul li {
        line-height: normal;
        margin: 10px 0;
        font-size: 16px;
    }    
    .copy h2 {
        width: 100%;
        line-height: 1.6;
        font-size: 16px;
        padding: 5px 10px;
        margin: 0 auto 20px auto;
    } 
    .copy p {
        text-align: center;
        line-height: 1.3;
        margin: 0 auto 15px auto;
        font-size: 16px;
    }    
    button.cta, a.cta {
        width: 100%;
    } 
    .popup-content {
        width: 90%;
        padding: 35px 20px;
    } 
    .popup h1 {
        font-size: 25px;
    }    
    button.close-btn {
       margin: -32px -19px 0 0 !important;
    }
    footer.footer {
        padding: 35px 0;
    }    
    .footer p {
        width: 100%;
    }
    header.header-obg {
        padding: 50px 0 25px 0 !important;
    }
    .barra-progresso {
        width: 100%;
        margin: 0 auto;
    }
    section.obrigado h1 {
        font-size: 30px;
    }
    section.obrigado .box {
        padding: 35px 20px;
    }
    .obrigado .box h2 {
        font-size: 30px;
    } 
    .obrigado .box p {
        font-size: 18px;
    } 
    a.cta-wpp {
        width: 100%;
        font-size: 22px;
    }    
}
/* Responsivo */