body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;

}

/* Cabeçalho */
header {
    background-color: #005bab;
    color: #fff;
    padding: 20px 15px;
    text-align: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container span {
    font-size : 2em;
}

header .logoc {
    width : 70px;
    height : 70px;
    background-color : #fff;
    border-radius : 50%;
    display :flex;
    justify-content : center;
    align-items : center;
}

@media only screen and (max-width: 768px) {
    header .logoc {
            width : 90px;
            height : auto; 
    }
    
    .hlink {
        display : none;
    }
}


header .logoc img {
    width : 100%;
    height : auto;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

header nav .cta {
    background-color: #6cd32f;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    
}

/* Seção Hero */
.hero {
    width: 100%;
    background-color: #f5f5f5;
    text-align: center;
    position: relative;
    margin : 0;
    padding: 0;    
}

.herocontainer {
    width: 100%;
    margin : 0;
    padding: 0;
    background-image: url('heroifundo.jpg');
    background-size: cover; 
    background-position: center; 
    padding: 50px;
    /*border-radius: 10px;*/ 
    position: relative;
}



.herocontainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /*border-radius: 10px;  Mesma borda da container */
}


.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.hero p {
    color: #fff;
    position: relative;
}

.hero .cta {
    background-color: #6cd32f;
    padding: 15px 30px;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    
}

/* Seção Benefícios */
.beneficios {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.beneficios .beneficio-item {
    display: inline-block;
    width: 23%;
    margin: 1%;
}

@media only screen and (max-width: 768px) {
    .beneficios .beneficio-item {
        display: inline-block;
        width: 49%;
        margin: 1%;
    }    
}

.beneficios .beneficio-item i{
    font-size : 3em;
}

.beneficios img {
    width: 80px;
    height: 80px;
}

/* Seção Demonstração */
.demo {
    padding: 15px 0;
    text-align: center;
    background-color: #000;
    color : #fff;
}

.demo img {
    max-width: 100%;
    height: auto;
}

.demo .demoframe {
    width: 100%; 
    max-width: 600px; 
    height: 400px;
}

@media only screen and (max-width: 768px) {
    .demo .demoframe {
        width: 100%; 
        max-width: 400px; 
        height: 280px;
    }    
}

/* Seção Testemunhos */
.testemunhos {
    padding: 50px 15px;
    background-color: #ffffff;
}

.testemunhos .testemunho-item {
    display: inline-block;
    width: 45%;
    margin: 2%;
    text-align: center;
    padding-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .testemunhos .testemunho-item {
        display: inline-block;
        width: 100%;
        margin: 0;
    }    
}

.testemunhos .testemunho-item i{
    font-size : 3em;
    color : #ddd;
}

.testemunhos img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

/* Seção Preço */

.preco {
    background-color: #f5f5f5;
    text-align: center;
}

.precocontainer {
    background-image: url('heroifundo.jpg');
    background-size: cover; 
    background-position: center; 
    padding: 50px;
    position: relative;
}

.precocontainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
}

@media only screen and (max-width: 768px) {
    .precocontainer {
        padding: 20px 5px;
    }
}

.precocontainer h2{
    color : #fff;
    position: relative;
}

.preco .preco-box {
    background-color: white;
    border: 2px solid #6cd32f;
    padding: 30px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
}

.preco .cta {
    background-color: #6cd32f;
    padding: 15px 30px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
}

/* FORM */
.signup-form {
    display : flex;
    flex-direction : column;
}


.signup-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #555;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.signup-form button {
    width: 100%;
    padding: 10px;
    background-color: #6cd32f;
    color: #000;
    font-size: 18px;
    font-weight : bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-form button:hover {
    background-color: #57b828;
}

.signup-form p {
    margin-bottom: 20px;
    color: #333;
}

#success-message {
    color: green;
    font-size: 1.5em;
    margin-top: 20px;
}



/* FAQ */
.faq {
    padding: 50px 15px;
    background-color: #000;
    color: #fff;
}

.faq .faq-item {
    margin-bottom: 20px;
}

.faq h3 {
    color: #6cd32f;
    margin-bottom: 10px;
}

/* Rodapé */
footer {
    background-color: #005bab;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
