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

/* Reset */
body {
    background: #000000 url("../img/bg-geral.webp") 50% 0 no-repeat;
}
/* Reset */

/* Header */
header.header {
    padding: 75px 0 0 0;
}
.header img.logo {
    clear: both;
    display: block;
    width: 125px;
    margin: 0 auto;
}
/* Header */

/* Geral */
section.principal {
    padding: 125px 0 200px 0;
}
.principal .copy {
    width: 55%;
    float: left;
    clear: both;
    display: block;
}
.principal .copy h6 {
    color: #ffffff;
    margin: 0 auto 20px auto;
}
.principal .copy h1 {
    font-size: 50px;
    font-weight: 800;
    color: #a49980;
    margin: 0 auto 35px auto;
}
.principal .copy h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 auto 25px auto;
}
.principal .copy p {
    color: #ffffff;
    line-height: 1.4;
    margin: 0 auto 35px auto;
}
.blob {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 0 10px 0 0;
    float: left;
	height: 15px;
	width: 15px;
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob.red {
	background: rgba(255, 82, 82, 1);
	box-shadow: 0 0 0 0 rgba(255, 82, 82, 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);
	}
}
/* 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 */
/* Geral */

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

/* Responsivo */
@media (max-width: 700px) {
    body {
        background: #000000 url(../img/bg-geral-mb.webp) 50% 200px no-repeat;
        background-size: 535px;
    }    
    .principal .copy {
        width: 100%;
        float: none;
    }
    header.header {
        padding: 35px 0 0 0;
    }
    section.principal {
        padding: 35px 0 500px 0;
    }
    .principal .copy h6 {
        text-align: center;
    }
    .blob {
        margin: 0 -33px 0 30px;
    }
    .principal .copy h1 {
        text-align: center;
        font-size: 38px;
    }
    .principal .copy h2 {
        text-align: center;
        font-size: 20px;
    }   
    .principal .copy p {
        text-align: center;
    }
    button.cta, .footer p {
        width: 100%;
    }
    .popup-content {
        width: 90%;
        padding: 35px 20px;
    }
    .popup h1 {
        font-size: 22px;
    }    
    button.close-btn {
        margin: -30px -17px 0 0 !important;
    }
}
/* Responsivo */