

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


body{
    background-color: #F8F8F8;
    margin: 0 auto
}

header img{
   max-width: 300px;
   margin-left: 60px;
   margin-top: 20px;
   
}
.hero{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
.hero h1{
    text-align: center;
    max-width: 800px;
    font-family: "Montserrat", serif;
    font-size: 34px;
    margin-top: 60px;
}

.hero p{
    text-align: center;
    max-width: 600px;
    font-family: "Open Sans", serif;
    margin-bottom: 40px;
    font-size: 24px;
}
.hero button{
    background-color: #0D47A1;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 16px 62px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-top: 20px
}
.hero button:hover{
    background-color: #1565C0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero {
        height: auto; /* Ajuste para telas menores */
    
    }

    .hero h2 {
        font-size: 28px !important;/* Redução para melhor ajuste no mobile */
        max-width: 90%;
    }

    .hero p {
        font-size: 16px; /* Redução para melhor legibilidade no mobile */
        max-width: 90%;
    }

    .hero button {
        font-size: 14px; /* Ajuste sutil no botão */
        padding: 12px 40px; /* Redução no tamanho do botão */
    }
}

.parte1 {
    display: flex;
    align-items: center; /* Centraliza os elementos verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    gap: 40px; /* Espaço entre texto e imagem */
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 20px;
    background-color: #B0B5BB;
    height: auto;
}

/* Configuração do texto */
.texto1 {
    max-width: 400px; /* Limita a largura do texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.texto1 h2 {
    text-align: center;
    font-family: "Montserrat", serif;
    padding-left: 0; /* Removido padding extra */
    margin-top: 15px;
}
.texto1 p{
    font-family: "Open Sans", serif;
    text-align:left;
    margin-bottom: 10px;
    margin-left: 30px;
}

.texto1 ol {
   
    font-family: "Open Sans", serif;
    list-style-position: inside;
    text-align: left;
    padding-left: 0px;
    line-height: 1.6;
    margin: 0 auto;
}

/* Configuração da imagem */
.imagem1 img {
    width: 250px; /* Ajusta o tamanho da imagem */
    height: auto; /* Mantém a proporção */
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 80px;
    margin-top: 80px;
}

/* Responsividade */
@media (max-width: 768px) {
    .parte1 {
        flex-direction: column; /* Empilha os elementos em telas menores */
        text-align: center;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .texto1 {
        max-width: 100%;
        align-items: center;
        
    }
    .texto1 h2{
        text-align: center;
        margin-top: 80px;
    }
    .texto1 p{
        text-align: center;
        margin-left: -70px;
    }

    .texto1 ol {
       text-align: left;
       list-style-position: inside;
       margin-left: 80px;
    }

    .imagem1 img {
        width: 300px; /* Reduz o tamanho da imagem em telas menores */
        margin-top: 20px;
    }
}


.parte2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

.parte2 h2 {
    text-align: center;
    font-family: "Montserrat", serif;
    margin-bottom: 40px;
}

/* Container para alinhar as imagens lado a lado */
.imagens-container {
    display: flex;
    justify-content: center; /* Centraliza as imagens */
    align-items: center;
    gap: 40px; /* Espaço entre as imagens */
    flex-wrap: nowrap; /* Permite que as imagens se ajustem em telas menores */
}

/* Ajuste do tamanho das imagens */
.imagens-container img {
    width: 200px; /* Define um tamanho fixo para todas as imagens */
    height: 200px; /* Define uma altura fixa para padronizar */
    object-fit: cover; /* Garante que a imagem preencha sem distorcer */
    border-radius: 10px; /* Bordas arredondadas opcionais */
}

/* Estilização das legendas */
.imagens-container figcaption {
    text-align: center;
    padding-top: 10px;
    font-family: "Open Sans", serif;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .imagens-container {
        flex-direction: column; /* Empilha as imagens em telas menores */
        gap: 20px;
        flex-wrap: wrap;
    }

    .imagens-container img {
        width: 180px; /* Reduz um pouco o tamanho para melhor ajuste */
        height: 180px;
    }
}

.parte3{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
}
.imagem3 {
    width: 50%; /* Ocupa metade da tela */
    display: flex;
    justify-content: center; /* Centraliza a imagem dentro do espaço */
    align-items: center;
}
.imagem3 img{
    width: 60%;
    max-width: 300px;
    height: auto;
}
.texto3{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 40px;
}
.texto3 p{
    font-family: "Open Sans", serif;
    line-height: 1.6;
    text-align: left;
    margin-left: 80px;
}
.texto3 h2{
    font-family: "Montserrat", serif;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .parte3 {
        flex-direction: column; /* Empilha os elementos em coluna */
        text-align: center;
    }

    .imagem3, .texto3 {
        width: 60%; /* Ocupa toda a largura */
    }

    .imagem3 img {
        max-width: 200px; /* Ajusta a largura da imagem para telas menores */
    }
    .texto3 p{
        text-align: left;
        margin: 0;
        align-items: center;
    }
}

.parte4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background-color: #E3F2FD;
}

.textos4 {
    text-align: center;
    max-width: 600px;
    display:flex;
    flex-direction: column;
    align-items: center;
    
}

.textos4 h2, h3{
    font-family: "Montserrat", serif;
    text-align: left;
    margin-bottom: 10px;
    width: 70%;
    line-height: 1.5;
}

.textos4 p {
    text-align: left;
    font-family: "Open Sans", serif;
    margin-top: 20px;
    max-width: 500px;
    color: white;
    line-height: 1.5;
    background-color: black;
    padding: 40px;
    border-radius: 8px;
}

.image-cel {
    width: 500px; /* Ajuste conforme necessário */
    height: auto;
}
@media (max-width: 1024px){
    .parte4{
        flex-direction: column;
        text-align: center;
    }
    .textos4{
        order: 1;
        max-width: 90%;
    }
    .image-cel {
        order: 2; /* Coloca a imagem por último */
        max-width: 400px; /* Ajusta a largura para telas menores */
        margin-top: 20px;
        width: 70%;
    }
}
@media (max-width: 768px) {
    .image-cel {
        max-width: 300px; /* Ajuste para celulares */
        width: 80%;
    }
    .textos4{
        max-width: 95%;
    }
}


.cta1{
    background-color: #E3F2FD;
    text-align: center;
    padding: 40px;
    font-family: "Montserrat", serif;
    
}
strong{
    color: #4F9AD0;
    font-style: italic;
    font-weight: 800;
    text-decoration: underline;
}
.cards{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E3F2FD;
    padding-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}
.card{
    width: 220px;
    flex-direction: column;
    height: 300px;
    background-color:#0376CE;
    display: flex;
    align-items: center;
    justify-content: center;
    color:white;
    font-size: 16px;
    border-radius: 10px; /* Borda arredondada opcional */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Sombra opcional */
    margin: 5px;
    font-family: "Open Sans", serif;
    padding: 10px;
}
.card h3{
    text-align: center;
    font-weight: 400;
}
.card img{
    width: 40px;
}
.texto-oculto{
    display: none;
}
.card:hover{
    background-color: #151e24;
    cursor: pointer;

}
.card:hover h3{
    display: none;
}
.card:hover img{
    display: none;
}
.card:hover .texto-oculto {
    display: flex; /* Usa Flexbox */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    color: white;
    font-weight: 100;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
    height: 100%; /* Garante que o elemento ocupe toda a altura do card */
    width: 100%; /* Garante que o texto esteja centralizado em toda a largura */
}
@media (max-width: 600px){
    
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card{
        width: 90%;
        max-width: 250px;
    }
}

.parte5 {
    display: flex;
    flex-direction: column; /* Coloca os elementos um abaixo do outro */
    align-items: center; /* Centraliza os elementos */
    text-align: center; /* Garante que o texto fique centralizado */
    padding: 80px 20px;
    background-color: #7bc2f5;
    
}

.elementos-titulo h2 {
    text-align: center; /* Centraliza o título */
    margin-bottom: 20px;
    font-family: "Montserrat", serif;
    
}

.landingpage {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo */
    text-align: center;
    margin-bottom: 30px; /* Espaço entre os elementos */
}

.landingpage img, .anuncio img {
    width: 250px; /* Define um tamanho fixo para todas as imagens */
    height: auto; /* Mantém a proporção original */
    max-width: 100%; /* Garante que as imagens sejam responsivas */
    border-radius: 10px; /* Bordas arredondadas para um visual mais bonito */
}
.gerenciador img {
    width: 400px; /* Define um tamanho fixo para todas as imagens */
    height: auto; /* Mantém a proporção original */
    max-width: 100%; /* Garante que as imagens sejam responsivas */
    border-radius: 10px; /* Bordas arredondadas para um visual mais bonito */
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

figcaption {
    margin-top: 20px; /* Espaço entre a legenda e a imagem */
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    font-family: "Open Sans", serif;
}

.parte6 {
    display: flex;
    flex-direction: column; /* Mantém o título no topo */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

/* Centraliza o título */
.titulo-parte6 h2 {
    text-align: center;
    margin-bottom: 20px; /* Espaço abaixo do título */
    font-family: "Montserrat", serif;
}

/* Container para as imagens lado a lado */
.imagens-container {
    display: flex;
    justify-content: center; /* Centraliza as imagens */
    gap: 40px; /* Espaço entre as imagens */
    flex-wrap: wrap; /* Garante que fique responsivo */
    width: 100%;
    max-width: 900px;
}

/* Estilização das imagens e legendas */
.usuarios-redes-sociais, 
.tempo-redes-sociais {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Open Sans", serif;
}

.usuarios-redes-sociais img, 
.tempo-redes-sociais img {
    width: 300px; /* Ajuste para garantir tamanhos uniformes */
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .imagens-container {
        flex-direction: column; /* Empilha as imagens em telas pequenas */
        gap: 20px;
    }
}



.parte7 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black; /* Fundo preto */
    padding: 40px 20px;
    min-height: 400px; /* Garante altura suficiente */
}

/* Configuração para a parte de texto (esquerda) */
.texto-garantia {
    width: 50%;
    display: flex;
    flex-direction: column; /* Organiza os textos em coluna */
    justify-content: center; /* Centraliza os textos verticalmente */
    align-items: center; /* Centraliza os textos horizontalmente */
    text-align: center;
    color: white; /* Texto branco */
    padding: 20px;
}

/* Espaço entre os textos */
.texto-garantia h2, .texto-garantia h3 {
    margin-bottom: 15px;
    font-family: "Montserrat", serif;
}
.texto-garantia p{
    font-family: "Open Sans", serif;
}

/* Configuração para a parte da imagem (direita) */
.imagem-garantia {
    width: 50%;
    display: flex;
    justify-content: center; /* Centraliza a imagem horizontalmente */
    align-items: center; /* Centraliza a imagem verticalmente */
}

.imagem-garantia img {
    width: 150px; /* Aumentei o tamanho da imagem em 50% (150px -> 225px) */
    height: auto;
    max-width: 100%;
    filter: invert(41%) sepia(21%) saturate(1026%) hue-rotate(175deg) brightness(94%) contrast(96%);
    /* Transforma a cor do ícone para #4F9AD0 */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .parte7 {
        flex-direction: column;
        text-align: center;
    }

    .texto-garantia,
    .imagem-garantia {
        width: 100%;
    }

    .imagem-garantia img {
        width: 150px !important; /* Ajuste para telas menores */
        margin-top: 20px;
        height: auto;
        max-width: none;
    }
}




.parte8{
    background-color: #E3F2FD;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
}
.parte8 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: bold;
    color: #0D47A1;
    margin-bottom: 20px;
}
.parte8 p {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}
.parte8 button {
    background-color: #0D47A1;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 16px 62px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.parte8 button:hover {
    background-color: #1565C0;
    transform: scale(1.05);
}
/* Responsividade */
@media (max-width: 768px) {
    .parte8 {
        padding: 40px 20px; /* Ajusta o espaçamento em telas menores */
        height: 100vh; /* Permite ajuste dinâmico */

    }

    .parte8 p {
        max-width: 90%; /* Mantém o texto bem distribuído */
    }
}

footer {
    background-color: black; /* Cor de fundo preta */
    color: white; /* Texto branco */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    text-align: center; /* Garante que o texto fique centralizado */
    height: auto; /* Define altura do footer */
    min-height: 80px;
    font-family: 'Open Sans', sans-serif; /* Fonte personalizada */
    width: 100%; /* Garante que ocupe toda a largura */
    padding: 10px 20px;
}

/* Garante que o parágrafo dentro do footer também esteja centralizado */
footer p {
    margin: 0; /* Remove margens padrão para evitar desalinhamento */
    white-space: normal;
    max-width: 90%;
}
@media (max-width: 600px){
    footer{
        padding: 15px 10px;
    }
    footer p{
        font-size: 10px;
        line-height: 1.5;
        max-width: 95%;
    }
}

