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

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

/* Header */
header.header {
    padding: 75px 0 50px 0;
}
img.logo {
    clear: both;
    display: block;
    width: 200px;
    margin: 0 auto 50px auto;
}
.header h1 {
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 35px;
    width: 75%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    margin: 0 auto 25px auto;
}
.header h1 span {
    color: #e40000;
}
.header h2 {
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    width: 75%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    margin: 0 auto;
}
/* Header */

/* Video */
section.vsl {
    padding: 0 0 50px 0;
}
section.vsl .video {
    width: 75%;
    background: #000000;
    margin: 0 auto 50px auto;
    border: solid 5px #e40000;
}
.esconder {
    display: none;
}
section.vsl p {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    width: 75%;
    margin: 0 auto;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}
a.cta {
    clear: both;
    display: block;
    width: 50%;
    text-decoration: none;
    text-align: center;
    margin: 35px auto;
    border: none!important;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #78bc45;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}
.blob {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob.green {
	box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% {
		transform: scale(0.99);
		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.99);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
	}
}
.esconder {
    display: none;
}
/* Video */

/* Faq */
section.faq {
    padding: 0 0 75px 0;
}
section.faq h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 50px auto;
}
.accordion-item {
	width: 75%;
	margin: 0 auto 15px auto;
    border: none;
    border-radius: 0 !important;
    border-bottom: solid 1px #e40000;
}
.accordion-header {
    padding: 25px 25px;
    background: #fafafa;
    color: #121213;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.accordion-content {
	padding: 25px;
	display: none; /* Oculta o conteúdo inicialmente */
}
.arrow {
	position: absolute;
	right: 20px;
	top: 50%;
	color: #e40000;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.rotate {
	transform: translateY(-50%) rotate(90deg);
}
.active .accordion-content {
	display: block; /* Exibe o conteúdo quando o item está aberto */
}
/* Faq */

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

/* Responsivo */
@media (max-width: 700px) {
    header.header {
        padding: 50px 0 0 0;
    }
    .header h1 {
        width: 100%;
        font-size: 22px;
        line-height: 1.4;
    }   
    .header h2 {
        width: 100%;
        font-size: 20px;
        line-height: 1.4;
        margin: 0 auto 35px auto;
    }    
    section.vsl .video, a.cta, footer.footer p {
        width: 100%;
    }
    section.vsl p {
        width: 100%;
        font-size: 18px;
    }    
    section.faq h1 {
        font-size: 30px;
        margin: 0 auto 35px auto;
    } 
    .accordion-item {
        width: 100%;
    }    
}
/* Responsivo */