*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    outline:none;
}
html,body{
    height: 100%;
}
body{
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
/*resposta de mensagem*/
.sucesso{
    display: none;
    position: fixed;
    right: 20px;
    top: 70px;
    padding: 10px 20px;
    z-index: 3;
    background-color: #4db6ac;
    color: white;
    font-size: 14px;
    border-radius: 20px;
}
.erro{
    display: none;
    position: fixed;
    right: 20px;
    top: 70px;
    padding: 10px 20px;
    z-index: 3;
    background-color: #d84315;
    color: white;
    font-size: 14px;
    border-radius: 20px;
}
.overlay-loading{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: black;
    opacity: 0.5;
}
.overlay-loading img{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
/* classes padroes*/
.container{
    max-width: 1020px;
    width: 100%;
    padding: 0 2%;
    margin: 0 auto;
}
.clear{
    clear: both;
}
.w50{
    width: 50%;
    float: left;
}
.w33{
    width: 33.3%;
    float: left;
}
.w25{
    width: 25%;
    float: left;
}
.w75{
    width: 75%;
    float: left;
}
.title-center{
    text-align:center;
}
.service-card:hover {
    transform: scale(1.05);
}
.service-card a:hover {
    background-color: #333;
  }
/*header*/
header{
    background: linear-gradient(to right, #6a11cb, #2575fc);
    padding: 10px;
    height: 60px;
   
}
.logo{
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    width: 300px;
    float: left;
    
}
.logo a{
    text-decoration: none;
    color: white;
}
/*nav desktop*/
nav.desktop{
    float: right;
    width: calc(100% - 250);
    padding-top: 10px;
}
nav.desktop li{
    display: inline-block;
    padding-left: 20px;
}
nav.desktop a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: white;
}
/*nav mobile*/
nav.mobile{
    float: right;
}
nav.mobile i{
    font-size: 30px;
    cursor: pointer;
    margin-top:2px ;
    width: calc(100% - 250px);
    display: none;
}
nav.mobile ul{
    display: none;
    position: absolute;
    top: 55px;
    left: 1%;
    width: 98%;
    color: white;    
    z-index: 3;
    margin-bottom: 2px;
}
nav.mobile li{
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-top: 3px solid white;
    display: inline-block;
    margin-top: 5px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    padding: 5px;
}
nav.mobile a{
    text-decoration: none;
    color: white;
    cursor: pointer;
}
/*tela home*/
section.banner-container{
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 9rem 2rem;
}
section.banner-container h1{
    font-size: 3rem;
            margin-bottom: 0.5rem;
}
section.banner-container p{
    font-size: 1.2rem;
}
section.banner-container .cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: #ff7a18;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}
section.banner-container .cta-button:hover {
    background-color: #ff5100;
}
/* Serviços */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services .service-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services .card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.services .card:hover {
    transform: translateY(-10px);
}

.services .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.services .card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.services .card a {
    text-decoration: none;
    color: #00aaff;
    font-weight: bold;
}
/* Sessão Sobre Nós */
.about {
    background-color: #f5f5f5;
    padding: 50px 20px;
}

.about-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-text .btn:hover {
    background-color: #0088cc;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
}

/* Sessão de Depoimentos */
.testimonials {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
}

.testimonial-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.testimonial-author p {
    font-size: 14px;
    color: #333;
    line-height: 1.2;
}

.testimonial-author span {
    font-size: 12px;
    color: #777;
}
/*detalhes*/
/*site*/
.banner-site {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.banner-site h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.banner-site p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button-site {
    display: inline-block;
    background-color: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-button-site:hover {
    background-color: #ffca28;
}

/* Serviços */
.services-site {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.service-box-site {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.card-site {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-site i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.card-site:hover {
    transform: scale(1.05);
}

/* Depoimentos */
.testimonials-site {
    padding: 40px 20px;
    background-color: #f9f9f9;
}
.testimonials-site h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.8rem;
    color: #333;
}

.testimonials-site ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
    padding: 0;
}

.testimonials-site li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.testimonials-site li::before {
    content: "\f00c"; /* Ícone do Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4CAF50; /* Cor verde */
    margin-right: 8px;
}
.testimonials-div-site{
    display:flex;
}

/* CTA Final */
.about-site {
    background: linear-gradient(to right, #4CAF50, #2E8B57);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.about-site .cta-button-site {
    background-color: #ffc107;
    margin-top: 15px;
}
/*marketing*/
.banner-container-marketing {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.cta-button-marketing {
    display: inline-block;
    background-color: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-button-trafego-pago{
    display: inline-block;
    background-color: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

/* Serviços */
.services-marketing {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.service-box-marketing {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-marketing {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease;
}

.card-marketing:hover {
    transform: translateY(-10px);
}

.card-marketing i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Detalhes */
.details-marketing {
    padding: 40px 20px;
    background-color: #fff;
}

.details-marketing h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.details-marketing p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.details-marketing ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.details-marketing li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4CAF50;
    margin-right: 8px;
}

/* CTA */
.cta-container-marketing {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.cta-container-marketing a {
    background-color: #FFC107;
    color: #333;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}
/*footer*/
footer{
    background: linear-gradient(to right, #6a11cb, #2575fc);
    text-align: center;
    color: white;
    padding: 12px 0; 
}
footer.fixed{
	position: fixed;
	bottom: 0;
	width: 100%;
}
/*pagina 404*/
.error-container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    padding:9%;
  }

  .error-container h1 {
    font-size: 8rem;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
   
    color:#fff;
  }

  .error-container p {
    font-size: 1.5rem;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .error-container a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #2575fc;
    background: white;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
  }

  .error-container a:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #6a11cb;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*pagina de cotato*/
#map{
    width: 100%;
    height: 400px;

}
.contato-container{
    background-color: #5E3EA1;
}
form#contato{
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 0 auto;    
}
.contato-container h2{
    text-align: center;
    color: white;
    padding: 15px 0;
}
form#contato input{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    border: 0;
}form#contato textarea{
    width: 100%;
    margin-bottom: 10px;
    resize: none;
    border-radius: 20px;
    padding: 15px;
}
form#contato input[type=submit]{
    width: 200px;
   color: white;
   background-color: #0d47a1;
   cursor: pointer;
    
}
/*barra lateral*/
.busca{
    background-color: #ccc;
    width: 90%;
    margin:15px 2%;
    padding: 15px;
    border-radius: 20px;
}
.busca h2{
    font-size: 16px;
    color:rgb(35, 10, 88);
    text-align: center;
    margin-bottom: 10px;
}
.busca input[type=text]{
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 20px;
    border: 0;
}
.busca input[type=submit]{
    min-width: 100px;
    margin-bottom: 5px;
    padding: 5px;
    border: 0;
    border-radius: 20px;
    background-color:#0d47a1;
    color: white;
}
.busca select{
    width: 100%;
    padding: 5px 10px;
    border-radius: 20px;
    border: 0;
    margin-bottom: 15px;
}
div.autor{
    width: 80%;
    max-width: 150px;
    border-radius: 50%;
    margin: 10px auto;
    
}
.autor img{
    width: 100%;
    border-radius: 50%;
    margin: 10px auto;
}
.busca h3{
    text-align: center;
    color: rgb(35, 10, 88);
    font-size: 16px;
    font-weight: lighter;
}
/*conteudo*/

.w75 h2{
    font-size: 24px;
    color: rgb(35, 10, 88);
    margin-top: 15px;
}
.w75 span{
    border-bottom: 3px solid rgb(50, 0, 158);
}
.conteudo-single{
    padding: 10px 5px;
    border-bottom: 2px solid rgb(50, 0, 158);
    margin: 10px 0;
}
.conteudo-single h3{
    color: rgb(35, 10, 88);
    font-size: 18px;
}
.conteudo-single .bt-ler{
    width: 150px;
    background-color: rgb(50, 0, 158);
    padding: 5px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 15px;
}
.conteudo-single a{
    color: white;
    text-decoration: none;
    text-align: center;
    width: 150px;
}
.paginacao{
    text-align: center;
    margin-bottom: 15px;
}
.paginacao a{
    margin-left: 10px;
    text-decoration: none;
    background-color: rgb(50, 0, 158);
    color: white;
    padding: 3px 5px;
    border-radius: 20px;
}
.paginacao a.active{   
    background-color:#0d47a1;
}
.pg-conteudo-single{
    padding: 15px 2%;
    background-color: #ccc;
}
.pg-conteudo-single h2{
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(120, 120, 120);
    font-weight: lighter;
    color: rgb(80,80,80);
}
.pg-conteudo-single p{
    color: rgb(114, 114, 114);
    font-size: 16px;
    padding: 10px 15px;
    text-indent: 3ch;
}
.pg-noticia{
    width: 100%;
    height: 400px;
   margin-bottom: 15px;
    
}
.pg-noticia img{
    width: 100%;
    height: 100%;
    
    border-radius: 20px;
}
.box-noticia{
    background-color: white;
    padding: 15px ;
    margin-bottom: 40px;
    border-radius: 20px;
}
.mini-img{
    width: 600px;
    height: 200px;
    margin-top: 10px;
}
.mini-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/*expancivo*/
@media screen and (max-width: 780px){
    .logo_img{
        width:80%;
    }
    .w50{
        width: 100%;
    }
    section.descricao-autor img{
        max-width: 200px;
        border-radius: 50%;
        float: none !important;
    }
    nav.desktop{
        display: none;
    }
    nav.mobile i{
        display: block;
        color: white;
       
    }

    .w33{
        width: 50%;
    }
    section.banner-container form input[type=submit]{
        width: 300px;
        margin-top: 10px;
        margin-left: 10%;
    }
    section.banner-container form input[type=email]{
        width: 300px;
        margin-top: 10px;
        margin-left: 10%;
    }
    section.banner-container form{
        max-width: 400px;
    }
    
}
@media screen and (max-width: 600px){
    
    
    .w33{
        width: 100%;
    }
}