body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* COMMONS */
.banner-titulo{
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.0;
}
@media (max-width: 1204px){
  .banner-titulo {
    font-size: 2.3rem;    
  }
}
@media (max-width: 425px){
  .banner-titulo {
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  } 
}
/* FIM COMMONS */

/* CARDS SLIDERS */
.card{
  width: 320px !important;
  height: 400px;
  overflow: hidden;
  border-radius:20px;
  border: none;
  position: relative
}
.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.card .label-name{
  position: absolute;
  bottom: 0;
  width: 100%;
  background:var(--color-primary);
  color: var(--color-black);
  text-align: center;
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 500;
}
.card img:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.arrows-cards-temas,
.arrows-cards-palestrantes  {
    width: 100px;
    display: flex;
    justify-content: space-between;
}
.arrow-prev, .arrow-next {
  font-size: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  color: transparent;
  border: 3px solid var(--color-primary);
  border-radius: 20px;
  outline: none;
  background: transparent;
  margin-left: 10px ;
}
.arrow-prev:before,
.arrow-next:before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f054";
  font-size: 18px;
  line-height: 1;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  color: var(--color-primary);
}
.arrow-prev:before {
  content: '\f053';
  left: -1px;
}
.destaque{
  letter-spacing: 2px;
}
/* FIM CARDS SLIDERS */

/* banner-top */
#banner-top{
  margin: 0 auto;
  background-image: url("../images/bg_home.webp");
  background-repeat: no-repeat;
  background-position: top center;
  color: var(--color-white);
}
#banner-top::before {
  content: ''; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* Or any color to tint the image */
  opacity: 0.7; /* Adjust for desired transparency (0.0 to 1.0) */
}

#banner-top .space-top{
  height: 115px;
}
#banner-top .banner{
  margin-top: 180px;
  margin-bottom: 170px;
  padding: 0 30px;
  display: flex;
}
#banner-top .coluna{
  flex-grow: 1;
}

#banner-top .banner-content{
  letter-spacing: 1px;
  font-size: 1.5rem;
  line-height: 25px;
}
#banner-top .banner-button{
  margin-top: 25px;
  font-size: 1.4rem;
  background-color: var(--color-primary);
  border: 0;
  color: var(--color-black);
  font-weight: 500;
  border-radius: 20px;
  padding: 0 15px;
}

@media (max-width: 1204px){
  #banner-top {
    background-position: top -100px left -340px;
  }
  #banner-top .banner-button {
    font-size: 1rem;
    padding: 3px 15px;
  }
  #banner-top .banner-content {
    font-size: 1.1rem;
    line-height: 20px;
  }
}
@media (max-width: 768px){
  #banner-top .banner {
    margin-top: 240px;
    margin-bottom: 110px;
  }
}
@media (max-width: 425px){
  #banner-top{
    background-position: top -100px left -550px;
  }
  #banner-top .banner {
    padding:0;
    margin-top: 310px;
    margin-bottom: 100px;
  }
  #banner-top .banner-content {
    width: 95%;
    text-align: justify;
  }  
  
  #banner-top .banner-button {
    font-size: 15px;
    padding: 5px 15px;
    width: 95%;
}

}

@media (max-width: 320px){
  #banner-top{
    background-position: top -100px left -610px;
  }
   #banner-top .destaque{
    letter-spacing: 1px;
    font-size: 0.9rem;
   }  
    #banner-top .banner-content {
    width: 95%;
  }  
}

/* Letreiro Digital Skills */
.skills-banner{
  min-height: 150px;
  background-color: var(--color-secondary);
  color: var(--color-link-hover);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.letreiro {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  color: var(--color-black);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.texto {
  display: inline-block;
  padding-right: 1rem;
  animation: rolar 40s linear infinite;
}
.faixa {
  display: inline-block;
  white-space: nowrap;
}
.texto i{
  margin:0 30px;
}

@keyframes rolar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DIFERENCIAIS */
#diferenciais{
  background-image: url('../images/bg_diferenciais.webp');
  background-size: cover;
  background-position: center;
}
#diferenciais .box{
  width: 100%;
  max-width: 450px;
  height: 150px;
  border: 2px solid var(--color-primary);
  font-size: 3rem;
  line-height: 45px;
}
#diferenciais .negativo{
  background-color: var(--color-primary);
  color: var(--color-black);
}
#diferenciais .content{
  font-size: 1.5rem;
  border-bottom: 2px solid #242424;
  padding-bottom: 20px;
}
#diferenciais .strong{
  font-weight: 600;
}

@media (max-width: 768px){
  #diferenciais{
    background-position: top 0px right -420px;
  }
  #diferenciais .content{
    width: 100%;
    max-width: 80%;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 425px){
   #diferenciais{
    background-position: top 0px right -510px;
  }
   #diferenciais .box {
    font-size: 3rem;
    width: 100%;
    max-width: 350px;
  }
  #diferenciais .content{
    font-size: 1.4rem;
    width: 100%;
    max-width: 350px;
  }
  
}

/* BANNER TEMAS */
.temas-banner{
  height: 150px;
  background-color: var(--color-primary);
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.letreiro {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 95%;
  color: var(--color-black);
  font-size: 1.3rem;
  text-transform: uppercase;
}

/* TEMAS */
#temas .temas-content,
#clientes .clientes-content{
  margin-top: 100px;
  margin-bottom: 30px;
  padding: 0 30px;
  font-size: 3rem;
}
#temas .slick-slide img {
    width: 320px;
    height: 400px;
    object-position: center;
    object-fit: cover;
}
@media (max-width: 425px){
  #temas .temas-content img,
  #clientes .clientes-content img{
    width: 25px;
  }
}
/* CLIENTES BANNER */
#clientes .clientes-banner{
  width: 90%;
}
#clientes .cliente-brand{
  min-height: 150px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
@media (max-width: 425px){
  #clientes .clientes-banner{
    width: 100%;
  }
}
/* FIM CLIENTES BANNER */

/* flow-authority */
.flow-authority {
    padding: 70px 20px;
}

.flow-authority .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    border: 1px solid var(--color-primary);
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px var(--color-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var( --color-form-border);
}

.methodology {
    margin-top: 50px;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* FIM flow-authority */


/* DEPOIMENTOS */
.depoimentos-container{
  width: 56%;
  margin: auto;
  padding-bottom: 150px;
}
.depoimentos-cards{
  margin: auto;
  padding: 0px 50px 20px 50px;
}
.depoimentos-cards .slick-dots li {
  width: 40px;
  height: 40px;
}
.depoimentos-cards .slick-dots li button:before {
  font-size: 0px;
  
  border-radius: 10px;
  color: transparent;
  border: 2px solid #242424;
  opacity: 1;
}
.depoimentos-cards .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--color-primary);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.depoimentos-cards .depoimentos-card{
  padding-bottom: 10px;

}
.depoimentos-cards .depoimentos-card img{
  margin-right: 10px;
}
.depoimentos-cards .depoimentos-card .depoimentos-titulo{
  font-size: 3rem;
  font-weight: 600;
}
.depoimentos-cards .depoimentos-card .depoimentos-empresa{
  font-size: 2rem;
  font-weight: 600;
  margin-top: -20px;
  color: var(--color-primary);
  text-transform: upercase;

}
.depoimentos-cards .depoimentos-card>p{
  font-size: 1.5rem;
  line-height: 35px;
  padding: 15px 15px 50px 15px;
}

.depoimentos-cards .depoimentos-borda{
  border-bottom: 2px solid #242424;
  width: 90%;
  margin: auto;
}
.depoimentos-cards .slick-prev,
.depoimentos-cards .slick-next {
  font-size: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  color: transparent;
  border: 3px solid var(--color-primary);
  border-radius: 20px;
  outline: none;
  background: transparent;
  margin-left: 10px ;
}
.depoimentos-cards .slick-prev:before,
.depoimentos-cards .slick-next:before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f054";
  font-size: 18px;
  line-height: 1;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  color: var(--color-primary);
}
.depoimentos-cards .slick-prev:before {
  content: '\f053';
  left: -1px;
}
.depoimentos-cards .slick-dots {
  position:relative;
}
@media (max-width: 1025px){
 .depoimentos-container {
    width: 70%;
  }
}
@media (max-width: 769px){
 .depoimentos-container {
    width: 80%;
  }
  .depoimentos-cards .depoimentos-card .depoimentos-titulo {
    font-size: 2rem;
    line-height: 30px;
  }
  .depoimentos-cards .depoimentos-card .depoimentos-empresa {
    font-size: 1.8rem;
    margin-top: 0px;
  }
}
@media (max-width: 425px){
  .depoimentos-container{
    width: 100%;
  }
  .depoimentos-cards {
    padding: 0px 10px 20px 10px;
  }
  .depoimentos-cards .depoimentos-card>p {
    font-size: 1.2rem;
    line-height: 30px;
    text-align: center;
  }
  .depoimentos-cards .depoimentos-card .depoimentos-titulo {
    font-size: 2rem;
    line-height: 30px;
  }
  .depoimentos-cards .depoimentos-cabecalho {
    justify-content: center;
  }
  .depoimentos-cards .depoimentos-card .depoimentos-empresa {
    font-size: 1.5rem;
    margin-top: 0px;
  }
  .arrow-prev, .arrow-next {
    margin: 0;
}
}
/* FIM DEPOIMENTOS */

/* ORÇAMENTOS */

#orcamento{
  background-color: var(--color-white);
  color: var(--color-black);
  padding-top: 150px;
  padding-bottom: 150px;
  font-size: 2rem;
}
#orcamento .orcamento-titulo{
  font-size: 3rem;
  margin-left: 20px;
  line-height: 45px;
  font-weight: 450;
}
#orcamento form{
  margin-top: 30px
}
#orcamento .form-control {
  font-size: 2rem;
  font-weight: 400;
  padding: 1.3rem 3rem;
  border: 1px solid #242424;
  border-radius: 12px;
}
#orcamento .form-control:focus,
#orcamento .form-check-input:focus{
  border-color: rgb(110, 110, 110) ;
  box-shadow: 0 0 0 .25rem rgba(110, 110, 110, 0.25);
}
#orcamento .form-check-input {
  width: 1em;
  height: 1em;
  border: 1px solid #242424;
}
#orcamento .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}#orcamento .btn{
  background-color: var(--color-primary);
  color: var(--color-black);
  border: 1px solid var(--color-primary);
  padding: 15px 40px;
  font-size: 2rem;
  font-weight: 450;
}
@media (max-width: 425px){
  #orcamento .orcamento-titulo {
    font-size: 1.6rem;
    line-height: 30px;
  }
  #orcamento .form-control {
    font-size: 1.3rem;
    padding: .3rem 1rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.3rem;
  } 
}
@media (max-width: 768px){
  #orcamento .orcamento-titulo {
    font-size: 1.9rem;
    line-height: 35px;
  }
  #orcamento .form-control {
    font-size: 1.5rem;
    padding: .6rem 1.2rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.5rem;
  } 
}
/* FIM ORÇAMENTOS */

/* FOOTER */
footer{
  background-image: url("../images/bg_rodape.webp");
  background-repeat: no-repeat;
  background-position: center;
  color: var(--color-white);
  font-size: 1.3rem;
  min-height: 600px;
}

footer .social-media{
  margin: 40px 0;
}
footer .social-media a {
  text-decoration: none;
  color: var(--color-primary);
  margin-right: 5px;
}
footer .menu>ul{
  margin: 0;
  padding: 0;
}
footer .menu>ul>li{
  list-style: none;
}
footer .menu>ul>li>a{
  text-decoration: none;
  color: var(--color-white);
}
footer .contato{
  margin-top: 10px;
}


/* FIM FOOTER */