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

/* Reset */
body {
    background: #000000;
}
/* Reset */

/* Header */
header.header {
    padding: 150px 0;
    background: url("../img/stella.webp") 45% 20% no-repeat;
}
.header .copy {
    clear: both;
    display: block;
    width: 50%;
    float: left;
    margin: 0;
}
.blob {
    float: left;
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 6px 10px 0 0;
	height: 10px;
	width: 10px;
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob.green {
	background: rgba(51, 217, 178, 1);
	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);
	}
}
.bt-top {
    text-align: center;
    background: rgba(0,0,0,0.2);
    border: solid 1px #B9E89B;
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    color: #B9E89B;
    font-weight: 600;
    margin: 0 0 25px 0;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}
.header .copy h1 {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0 auto 35px auto;
}
.header .copy h1 span {
    color: #B9E89B;
}
.header .copy ul {
    padding: 0;
    margin: 0 0 35px 0;
}
.header .copy ul li {
    color: #ffffff;
    margin: 10px 0;
    list-style: none;
}
.header .copy ul li svg {
    fill: #B9E89B;
    margin: -5px 5px 0 0;
}
.header .copy h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
}
/* Header */

/* PopUp */
button.cta {
    background: #58b750;
    border: none;
    clear: both;
    width: 75%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    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 */

/* Obrigado */
body.obg {
    background: #000000 url("../img/obg.webp") 50% 50% no-repeat !important;
    background-attachment: fixed;
    background-size: cover;
}
.barra-progresso {
    clear: both;
    display: block;
    width: 75%;
    margin: 0 auto 35px auto;
}
.progress {
    height: 25px !important;
}
.progress-bar {
	background-color: red !important;
}
.progress span {
    font-size: 16px;
    font-weight: 600;
    margin: 1px 0 0 5px;
}
header.header-obg {
    background: none !important;
    padding: 100px 0 25px 0 !important;
}
section.obrigado h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 auto 25px auto;
}
section.obrigado h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 auto 25px auto;
}
section.obrigado .box {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    margin: 0 auto 50px auto;
    border-radius: 35px 35px 35px 35px;
    -moz-border-radius: 35px 35px 35px 35px;
    -webkit-border-radius: 35px 35px 35px 35px;
}
.obrigado .box h2 {
    text-align: center;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
}
.obrigado .box h2 span {
    color: #25d366;
}
.obrigado .box p {
    text-align: center;
    font-size: 25px;
    margin: 0 auto 25px auto;
}
a.cta-wpp {
    clear: both;
    display: block;
    width: 50%;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
    font-size: 25px;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    background: #25d366;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;    
}
a.cta-wpp svg {
    width: auto;
    height: 25px;
    margin: -6px 0 0 0;
}
.countdown-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 15px;
    margin: 0 auto 50px auto;
}
.countdown-item {
    background-color: #000000;
    border: 1px solid red;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    width: 10%;
}
.countdown-digits {
    font-size: 30px;
    font-weight: bold;
    clear: both;
    display: block;
    color: #ffffff;
}
.countdown-label {
    font-size: 14px;
    color: red;
}
/* Obrigado */


/* Footer */
footer.footer {
    padding: 50px 0;
    border-top: solid 1px #B9E89B;
}
.footer p {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    margin: 0 auto;
}
/* Footer */

/* Responsivo */
@media (max-width: 700px) {
    header.header {
        padding: 50px 0 500px 0;
        background: url(../img/stella-mb.webp) 50% bottom no-repeat;
        background-size: cover;
    }
    .header .copy {
        width: 100%;
        float: none;
    }
    .bt-top {
        padding: 10px;
        font-size: 12px;
        margin: 0 auto 20px auto;
    }
    .header .copy h1 {
        text-align: center;
        font-size: 25px;
        margin: 0 auto 25px auto;
    }
    .header .copy ul {
        margin: 0 auto 25px auto;
    }
    .header .copy h2 {
        text-align: center;
        font-size: 16px;
        margin: 0 auto 30px auto;
    } 
    button.cta {
        width: 100%;
        margin: 0 auto;
    }
    .popup-content {
        width: 90%;
    }
    header.header-obg {
        padding: 50px 0 20px 0 !important;
    }
    .barra-progresso {
        width: 100%;
        margin: 0 auto 25px auto;
    } 
    section.obrigado h1 {
        font-size: 30px;
    }
    section.obrigado h3 {
        font-size: 25px;
    }
    section.obrigado .box {
        padding: 20px;
        margin: 0 auto 50px auto;
    }
    .obrigado .box h2 {
        font-size: 25px;
    }
    .obrigado .box p {
        font-size: 20px;
    }
    a.cta-wpp {
        width: 100%;
        font-size: 22px;
    }  
      .countdown-wrapper {
        gap: 8px;
      }
    .countdown-item {
        padding: 10px;
        width: 22%;
    }
      .countdown-digits {
        font-size: 24px;
      }
      .countdown-label {
        font-size: 12px;
      }    
}
/* Responsivo */