 /*GERAL*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --main-color: #F9633D;
    --secondary-color: #3C8287 !important;

    --paragrafo-color: #666666;


    --green-light: #B8E3E6;
    --green-extra-light: #91F8FF;

}
* {
    font-family: "Outfit", sans-serif !important; 
}
.container {
  max-width: 1140px;
}
.fa, .fas {
  font-family: "Font Awesome 5 Free" !important;
}
.fab {
  font-family: "Font Awesome 5 Brands" !important; 
}
.main-button {
    background-color: var(--main-color);
    display: inline-flex;
    border-radius: 15px;
    color: #fff;
    border: none;
    transition: all 0.5 ease;
    cursor: pointer;
}
.main-button a{
    padding: 12px 35px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.main-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
.secondary-button {
  background-color: var(--secondary-color);
  display: inline-flex;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: all 0.5 ease;
}
.secondary-button a {
    padding: 12px 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;

}
.secondary-button:hover {
   box-shadow: 0 6px 20px rgba(5, 5, 5, 0.3);
    transform: translateY(-2px);
}
/*HEADER*/
.navbar-nav li a i {
  display: none;
}
.navbar-nav li a {
  font-size: 1.1em;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  padding-inline: 10px;
}

@media (max-width:992px) {
.navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
  background-color: var(--main-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a{
  color: #fff !important;
}
.navbar-area.nav-style-01 .nav-container .navbar-collapse {
  background-color: var(--main-color);
  border-radius: 10px;
}
}


 /* HERO AREA */

 #hero-area {
    padding: 150px 0 0 0;
     background: rgba(255, 255, 255, 0.8) url('https://arconecta.com.br/assets/uploads/media-uploader/background-hero1760121580.png') center/cover no-repeat;
    background-blend-mode: lighten;
    
 }
 #hero-area .hero-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
 }



@media (min-width: 992px) {
    #hero-area .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        padding-top: 20px;
    }
    
}
@media (min-width:1200px) {
  #hero-area .hero-container .left-side p {
      font-size: 1.1em;
    }
  
}
@media (width <= 1200px) {
  #hero-area .left-side,
  #hero-area .progresso-container {
    top: 30px !important;
}
}
#hero-area h1 {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0px 0px 1px rgba(60, 130, 135, 0.2));
}
#hero-area h1 span {
  font-weight: 800;
}
#hero-area .middle-area {
    flex: 1;
    width: 100%;
    max-width: 370px;
    align-self: center;
}
.middle-area {
  position: relative;
  display: inline-block; /* ou block, conforme seu layout */
}

.middle-area::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(
    circle at center,
    rgba(16, 130, 118, 0.4) 0%,  /* verde suave no centro */
    rgba(16, 130, 118, 0) 70%    /* transparente nas bordas */
  );
  filter: blur(80px);
  z-index: 0;
}

.middle-area img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 8px; /* opcional */
}

#hero-area .left-side,
#hero-area .progresso-container {
    position: relative;
    top: 90px;
    flex: 1;
}
#hero-area .left-side p {
    color: var(--secondary-color);
    font-weight: 500;
}
#hero-area .left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:10px;
    filter: drop-shadow(0px 0px 1px rgba(60, 130, 135, 0.2));
}
#hero-area .left-side img {
  margin-top: 10px;
}

.progresso-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 650px;
  font-family: 'Poppins', sans-serif;
}

.progresso-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.progresso-bar .label {
  font-weight: bold;
    color: #3C8287;
}

.progresso-bar .bar {
  background: #e0e0e0;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progresso-bar .fill {
  background: linear-gradient(90deg, #F9633D, #3C8287);
  height: 100%;
  width: 0%;
  border-radius: 10px;
  position: relative;
}

/* brilho animado */
.progresso-bar .fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 2s linear infinite;
  opacity: 0;
}

@keyframes shine {
  0% { left: -50px; }
  100% { left: 100%; }
}

.progresso-bar .percent {
  position: absolute;
  right: 0;
  top: -2px;
  font-weight: 600;
  color: #1a3a3a;
  font-size: 0.9rem;
}

@media(max-width: 992px) {
    #hero-area h1 {
      text-align: left;
      font-size: 2.5em;
    }
    #hero-area .left-side, #hero-area .progresso-container {
      top: 20px;
    }
    #hero-area .middle-area {
      max-width: 350px;
      margin-top: 40px;
    }
    #hero-area .left-side { order: 1; }
    #hero-area .middle-area { order: 3; }
    .progresso-container { order: 2; }
}
@media (max-width: 768px) {
    #hero-area h1 {
      text-align: center;
      font-size: 2em;
    }
    #hero-area .hero-container {
      padding-inline: 20px;
    }
    #hero-area .left-side {
      text-align: center;
      align-items: center;
    }
}
@media (max-width: 500px) {
    #hero-area h1 {
      font-size: 1.7em;
    }
     #hero-area .middle-area {
      max-width: 300px;
    }
}


/* SERVICES HERO */
#services-hero {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

#services-hero .card-service {
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  width: 100%;
  transition: all 0.5 ease;
  text-align: center;
}
#services-hero .card-service:hover {
  transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(15, 242, 250, 0.3);
}
#services-hero .container {
  display: flex;
  gap: 20px;
}
#services-hero h4 {
  color: #fff;
  margin-bottom: 5px !important;
  font-size: 1.3em;
}
#services-hero p {
  color: #ccc;
  margin: 0;
  font-size: 0.9em
}
@media (max-width: 992px) {
    #services-hero .container {
      flex-direction: column;
      align-items: center;
    }
    #services-hero .card-service {
      justify-content: flex-start;
    }
}


/* METODOLOGIA AREA */

#metodologia .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#metodologia .left-area,
#metodologia .center-area,
#metodologia .right-place{
  flex: 1;
}
#metodologia .center-area {
  display: flex;
  justify-content: center;
}
#metodologia .center-area img {
  border-radius: 0 0 10px 10px;
}
#metodologia .center-area .img-tablet,
#metodologia .center-area .img-mobile {
  display: none;
}
#metodologia .left-area h4 {
  color: var(--secondary-color);
}
#metodologia .left-area h2 {
  font-weight: 800;
}
#metodologia .left-area p {
  color: var(--paragrafo-color);
}
#metodologia .center-right-wrapper {
  display: flex;
  justify-content: space-between;
}
#metodologia .right-place .metodo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#metodologia .right-place .metodo h5 {
  margin-bottom: 5px;
  font-weight: 800;
}
@media (max-width:1200px) {
  #metodologia .center-area {
    max-width:250px;
  }
  #metodologia .left-area,
  #metodologia .right-place {
    margin-top: -20px
  }
}
@media (max-width:992px) {
  #metodologia .left-area,
  #metodologia .right-place {
    margin-top: 20px
  }
  #metodologia {
    padding: 70px 0;
  }
  #metodologia .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  #metodologia .left-area {
    flex: 1 1 100%;
  }
  #metodologia .center-area,
  #metodologia .right-place {
      flex: 1 1 50%;
  }
  #metodologia .img-desktop {
    display: none;
  }
  #metodologia .img-tablet {
    display: block !important;
  }
  #metodologia .center-area img {
    border-radius: 10px;
  }
  #metodologia .center-area {
    max-width: 320px;
  }
  #metodologia .right-place h5 {
    font-size: 1.1em;
  }
  #metodologia .right-place p {
    font-size: 0.9em;
    margin-bottom: 3px;
  }
}
@media (max-width:768px) {
  #metodologia .img-tablet {
    display: none !important;
  }
  #metodologia .img-mobile {
    display: block !important;
  }
  #metodologia .center-area,
  #metodologia .right-place {
      flex: 1 1 100%;
  }
  #metodologia .center-area {
    max-width: 100%;
  }
  #metodologia .left-area {
    text-align: center;
  }
  #metodologia .left-area h2 {
    font-size: 1.8em;
  }
  #metodologia .left-area p {
    font-size: 1.1em;
  }
}
@media (max-width: 425px) {
  #metodologia .left-area h2 {
    font-size: 1.5em;
  }
}

/* ETAPAS AREA */


#etapas {
  padding: 100px 0;
  margin-top: -100px;
}
#etapas .first-row {
  display: flex;
  gap: 50px;
}
#etapas .img-fluxo {
  max-width: 330px;
  min-width: 270px;
}
#etapas .right-area {
  border-bottom: 2px solid var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#etapas .right-area h4 {
  color: var(--main-color);
}
#etapas .right-area h3 {
  color: #fff;
}
#etapas .right-area p {
  color: #fff;
}
#etapas .second-row {
  display: flex;
  gap: 20px;
  margin-top: 80px;
  position: relative;
  justify-content: space-between;
}
#etapas .second-row .linha-progresso {
  position: absolute;
  top: 50%; /* altura do meio dos cards */
  left: 90px; /* começa um pouco antes do primeiro card */
  height: 4px;
  width: 0;
  background: linear-gradient(to right, #F9633D, #4B231A);
  border-radius: 2px;
  transition: width 2.5s ease-in-out;
  z-index: 1;
}

#etapas .second-row.ativo .linha-progresso {
  width: calc(100% - 180px); /* termina antes do último card */
}
#etapas .second-row .etapas-card {
  background: linear-gradient(to bottom, #F9633D, #4B231A);
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  z-index: 2;
  flex: 1;
}
#etapas .second-row .etapas-card span {
  font-size: 3em;
  font-weight: 800;
  color: #fff;
  opacity: 0.5;
}
#etapas .second-row .etapas-card h6 {
  color: #fff;
  font-size: 1.2em;
}
#etapas .second-row .etapas-card p {
  color: #c2c0c0;
  margin: 0;
  font-size: 0.9em;
}
@media (max-width: 1200px) {
  #etapas {
    margin-top: -40px;
  }
}
@media (max-width:992px) {
  #etapas {
    margin: 0;
  }
  #etapas .second-row {
    flex-direction: column;
    align-items: center;
  }
  #etapas .second-row.ativo .linha-progresso {
  width: 4px; /* termina antes do último card */
}
  #etapas .second-row .linha-progresso {
  position: absolute;
  left: 50%; /* distância da esquerda, ajuste conforme o layout */
  top: 40px; /* começa um pouco abaixo do topo */
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #F9633D, #4B231A);
  border-radius: 2px;
  transition: height 2.5s ease-in-out;
  z-index: 0;
}

  /* Quando ativar (via JS) */
  #etapas .second-row.ativo .linha-progresso {
    height: calc(100% - 60px); /* cresce até o final da última etapa */
  }
  #etapas .second-row .etapas-card {
    max-width: 80%;
  }
  #etapas .first-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #etapas .img-fluxo {
    max-width: 400px;
  }
  #etapas .img-fluxo {order: 2;}
  #etapas .right-area {order: 1;}

  #etapas .right-area {
    text-align: center;
  }
}
@media (max-width:768px) {
    #etapas .second-row {
      margin-top: 50px;
    }
}

/* BANNER CTA */

#cta-banner {
  padding: 120px 0;
  background: linear-gradient(
              rgba(0, 0, 0, 0.7),   /* parte de cima - cor escura com transparência */
              rgba(0, 0, 0, 0.7)    /* parte de baixo - mesma cor */
            ),
            url('https://arconecta.com.br/assets/uploads/media-uploader/background-cta1760415092.png') center/cover no-repeat;
  text-align: center;
}
#cta-banner h2 {
  color: #fff;
  padding-bottom: 20px;
}
#cta-banner .main-button a {
  font-weight: 800;
}
@media (max-width:768px) {
  #cta-banner h2 {
    font-size: 2em;
  }
}
@media (max-width:425px) {
  #cta-banner h2 {
    font-size: 1.6em;
  }
}


/* SERVICOS E ESTRATEGIAS */

#servicos {
  padding: 70px 0;
}

#servicos .first-row {
  display: flex;
  justify-content: space-between;
}
#servicos .left-area {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}
#servicos .left-area img {
  max-width: 420px;
  border-radius: 15px 15px 0 0;
}
#servicos .right-area {
  flex: 1 1 50%;
}
#servicos .right-area h4 {
  color: var(--main-color);
  font-size: 1.3em;
  font-weight: 700;
}
#servicos .right-area h3 {
  font-size: 2.1em;
  font-weight: 800;
}
#servicos .right-area p {
  color: var(--paragrafo-color);
}
#servicos .banner-servico {
  display: flex;
  background-color: var(--main-color);
  padding: 15px;
  border-radius: 15px;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
#servicos .banner-servico img {
  width: 70px;
  height: 70px;
}
#servicos .banner-servico .texts-mini-banner h6 {
  color: #fff;
  margin-bottom: 5px;
}
#servicos .banner-servico .texts-mini-banner p {
  color: #fff;
  margin: 0;
}

#servicos .checklist {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: space-between;
}
#servicos .checklist .check {
  padding: 5px 0;
  display: flex;
  gap: 5px;
  align-items: center;
}
#servicos .checklist .check img {
  width: 20px;
  height: 20px;
}
#servicos .checklist .check span{
  color: #000;
  font-size: 0.9em;
  font-weight: 600;
}

#servicos .second-row {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 20px;
}
#servicos .second-row .title-desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
#servicos .second-row .title-desc h3 {
  font-size: 2em;
  color: #fff;
  flex: 1 1 35%;
}
#servicos .second-row .title-desc p {
  color: #fff;
  flex: 1 1 35%;
}


.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.counter-box {
  flex: 1 1 200px;
  text-align: center;
}
@media (max-width: 1200px) {
  .counter-box {
        flex: 1 1 300px;
  }
}

.counter-box .counter {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  color: #fff;
}

.counter-box .plus {
  font-size: 1.5rem;
  margin-left: 3px;
  color: #fff;
}

.counter-box p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--green-extra-light);
}
.percent-sell {
  color: #fff;
}

@media (max-width: 992px) {
  #servicos .first-row {
    flex-direction: column;
  }
  #servicos .first-row .left-area {order: 2;}
  #servicos .first-row .right-area {order: 1;}
  #servicos .first-row .left-area {
    margin-top: 30px;
  }
  #servicos .left-area img {
    max-width: 350px;
  }
  #servicos .checklist {
    justify-content: space-around;
  }
  #servicos .counter-box {
    flex: 1 1 300px;
  }
}
@media (max-width: 768px) {
  #servicos .second-row .title-desc {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 500px) {
  #servicos .right-area h4 {
    font-size: 1.2em;
  }
  #servicos .right-area h3 {
    font-size: 1.7em;
  }
  #servicos .banner-servico .texts-mini-banner p {
    font-size: 0.9em;
  }
  #servicos .first-row .right-area {
    text-align: center;
  }
  .texts-mini-banner,
  #servicos .checklist .check {
    text-align: left;
  }
}
@media (max-width: 425px) {
      #servicos .left-area img {
        max-width: 250px;
    }
} 


/* PORQUE NOS ESCOLHER AREA */

#choose-us {
  padding: 40px 0 90px 0;
}
#choose-us .container {
  display: flex;
  gap: 20px;
}
#choose-us .container .left-side {
  flex: 1 1 60%;
}
#choose-us .container .right-side {
  flex: 1 1 40%;
}
#choose-us .container .line-choose {
  width: 100px;
  height: 2px;
  background-color: var(--main-color);
}
#choose-us .container .line-choose-big {
  justify-self: flex-end;
  width: 200px;
  height: 2px;
  background-color: var(--main-color);
  margin: 5px 0;
}
#choose-us h4 {
  color: var(--main-color);
  font-size: 1.3em;
  font-weight: 700;
}
#choose-us h3 {
  font-size: 1.8em;
}
#choose-us p {
  color: var(--paragrafo-color);
}

@media (max-width:992px) {
  #choose-us .container {
    flex-direction: column;
  }
  #choose-us .container img {
    max-width: 70%;
  }
  #choose-us .container .line-choose-big {
    justify-self: center;
    margin-right: 395px;
  }
  #choose-us .container .left-side {
    display: flex;
    justify-content: center;
  }
  #choose-us .container .right-side {
    text-align: center;
  }
  #choose-us .container .line-choose {
      justify-self: center;
      margin-right: 200px;
  }

}
@media (max-width:768px) {
  #choose-us h4 {
    font-size: 1.1em;
  }
  #choose-us h3 {
    font-size: 1.5em;
  }
  #choose-us .container .line-choose-big {
    margin-right: 295px;
  }
  #choose-us .container .line-choose {
    margin-right: 155px;
  }
}
@media (max-width:530px) {
  #choose-us .container .line-choose-big {
    display: none;
  }
      #choose-us .container img{
        max-width: 100%;
    }
}

/* FAQ */

#faq {
  padding: 50px 0;
}
#faq .faq-area {
  display: flex;
  align-items: center;
  gap: 30px;
}
#faq .faq-area img{
  opacity: 0.8;
}

#faq .faq-area .right-side {
  flex: 1 1 30%;
}
#faq .faq-area .left-side {
  flex: 1 1 40%;
}
#faq h4 {
  color: var(--main-color);
  font-size: 1.3em;
}
#faq h3 {
  font-size: 2em;
}

  .accordion-toggle {
    width: 100%;
    text-align: left;
    background: linear-gradient(to right, #F5F5F5, #EFE6E6);
    color: #000;
    font-weight: 500;
    text-decoration: none;
    padding: 10px; /* espaço para texto */
    transition: all 0.25s ease;
    position: relative; /* para posicionar a seta */
    border-radius: 12px;
  }

  
  .accordion-toggle.collapsed {
    color: #000;
  }

  .accordion-toggle:not(.collapsed) {
    color: #F9633D;
  }

  .card-header {
    padding: 0;
    background: transparent;
    border-radius: 12px;
    border: none;
  }

  .card {
    border: none;
    padding:10px 0;
  }

  .card-body {
    background-color: #fff;
    color: #333;
  }

 
  .accordion-toggle {
    padding-right: 2.5rem; /* espaço para a seta à direita */
  }

  .accordion-toggle::after{
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg); /* estado fechado: aponta para a direita */
    width: 9px;
    height: 9px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transition: transform 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
  }

  .accordion-toggle:not(.collapsed)::after{
    transform: translateY(-50%) rotate(45deg); /* aponta para baixo */
    border-color: #F9633D;
  }

  /* foco/desfoque visual */
  .accordion-toggle:focus {
    outline: none;
    box-shadow: none;
  }


  @media (max-width: 992px) {
    #faq .faq-area {
      flex-direction: column;
      margin-top: 20px;
      gap: 0;
    }
    #faq .faq-area .right-side {
      display: flex;
      justify-content: center;
    }
    #faq .faq-area .right-side .accordion {
      max-width: 80%;
    }
    #faq .left-side {
      max-width: 70%;
    }
    #faq .container {
      text-align: center;
    }
  }
 


  @media (max-width: 576px) {
    .accordion-toggle { padding: 0.75rem 1rem; }
    .accordion-toggle::after { right: 0.9rem; width: 8px; height: 8px; }
    #faq .left-side {
      max-width: 100%;
    }
    #faq .faq-area .right-side .accordion {
      max-width: 100%;
    }
    #faq h4 {
      color: var(--main-color);
      font-size: 1.1em;
    }
    #faq h3 {
      font-size: 1.6em;
    }
  }



  /* FORM AREA */

.construction-quote-area {
  position: relative;
  background-color: #fff; /* cor de fundo se quiser */
  background-image:
    url('https://arconecta.com.br/assets/uploads/media-uploader/ellipse-31760498179.svg'),
    url('https://arconecta.com.br/assets/uploads/media-uploader/background-form-21760491266.png');
  background-repeat: no-repeat, no-repeat;
  background-position: top -100Px center, center;
  background-size: 100% auto, cover;
  overflow: hidden;
}
@media (max-width: 1320px) {
  .construction-quote-area {
    background-position: top -80Px center, center;
  }
}
@media (max-width: 1040px) {
  .construction-quote-area {
    background-position: top -60Px center, center;
  }
}
@media (max-width: 785px) {
  .construction-quote-area {
    background-position: top -40Px center, center;
  }
}
@media (max-width: 525px) {
  .construction-quote-area {
    background-position: top -30Px center, center;
  }
}
@media (max-width: 380px) {
  .construction-quote-area {
    background-position: top -20Px center, center;
  }
}
.construction-quote-area .row {
  margin-top: -30px;
}
.construction-quote-area:after {
  background-color: #fff;
  opacity: .3;
}
.section-title.white .title {
  font-size: 2.5em;
}
.section-title {
  margin-bottom: 20px !important; 
}

.construction-quote-area .col-lg-6 {
  background-color: #AFD8DB;
  padding: 30px 60px;
  margin-left: 80px;
  border-radius: 10px 0 0 10px;
}
.section-title .subtitle{
  display: none !important;
}
.section-title.white .title {
   background: linear-gradient(90deg, #F9633D, #832108);
  -webkit-background-clip: text; /* Faz o fundo recortar no texto */
  -webkit-text-fill-color: transparent; /* Deixa o texto transparente pra mostrar o gradiente */
}
.construction-home-quote-form .form-group label {
  display: none;
}
.construction-home-quote-form .form-control {
  border: none;
  background-color: #fff;
  color: #555;
  font-weight: 500;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
}
.construction-home-quote-form .form-group.textarea .form-control {
  color: #000;
}
.form-control {
  height: 50px;
}
.construction-home-quote-form .form-control::placeholder {
  color: var(--paragrafo-color);
  opacity: 0.6;
}
.industry-btn.const-home-color {
  background-color: var(--main-color);
}
.industry-btn.const-home-color:after {
  display: none;
}
.ajax-loading-wrap.hide {
  display: none;
}
.construction-quote-area .right-image {
  top: auto;
  left: calc(50% + 80px);
  bottom: auto;
  margin-top: -30px;
}
.construction-quote-area .right-image img {
  height: 572px;
  border-radius: 0 10px 10px 0;
}
.industry-btn.const-home-color {
  color: #fff;
  transition: all 0.25s ease;
}
.industry-btn.const-home-color:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
}
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .construction-quote-area .right-image img {
    height: 630px;
  }
  .construction-quote-area .col-lg-6 {
    margin-left: 50px;
  }
  .construction-quote-area .right-image {
    left: calc(50% + 20px);
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .construction-quote-area .col-lg-6 {
    margin: 0 20px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .construction-quote-area .col-lg-6 {
    padding: 20px;
  }
  .section-title.white .title {
    font-size: 1.8em;
    text-align: center;
  }
  .construction-home-quote-form .form-control {
    font-size: 1em;
  }
  .title-cta h2 {
    font-size: 2em;
}
}
@media (max-width: 400px) {
  .section-title.white .title {
    font-size: 1.4em;
  }
  .title-cta h2 {
    font-size: 1.5em;
}
}
.title-cta h2 {
  text-align: center;
  font-weight: 900;
  margin: 0;
}


/* BLOG */

.single-portfolio-blog-grid.dagency-home .thumb .time-wrap {
  background-color: var(--secondary-color);
  border-radius: 10px;
}
.owl-carousel .owl-item img {
  border-radius: 10px;
}
.single-portfolio-blog-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.const-news-area .container .row:first-child {
  padding-bottom: 15px;
}
.logistic-dots .owl-dots div {
  background-color: #ddd;
}
.single-portfolio-blog-grid .content .title a:hover {
  color: var(--main-color) !important;
}
@media (max-width: 1200px) {
  .single-portfolio-blog-grid.dagency-home .thumb {
    width: 100%;
    max-width: 500px;
  }
}





/* FOOTER */ 

footer .col-lg-3:nth-child(1),
footer .col-lg-3:nth-child(2) {
  display: flex;
  align-items: center;
}
.home-21.footer-area .widget.footer-widget p {
  font-weight: bold;
  font-size: 1.4em;
}

.widget.footer-widget {
  margin-bottom: 0;
}
.home-21 .sidebars-single-content {
  margin: 0;
}

footer,
.home-21.footer-area .footer-top {
  background-color: #AFD8DB !important;
}
.home-21.footer-area .footer-widget.widget_tag_cloud .tagcloud a, .home-21.footer-area .widget.footer-widget p, .home-21.footer-area .widget.footer-widget.widget_calendar caption, .home-21.footer-area .widget.footer-widget.widget_calendar td, .home-21.footer-area .widget.footer-widget.widget_calendar th, .home-21.footer-area .widget.footer-widget ul li, .home-21.footer-area .widget.footer-widget ul li a {
  color: #5e5e5e !important;
}
.home-21.footer-area .contact_info_list li.single-info-item .icon, .home-21.footer-area .footer-widget.widget_nav_menu ul li a:after, .home-21.footer-area .contact_info_list li.single-info-item .icon, .home-21.footer-area .footer-widget.widget_nav_menu ul li a:after {
  color: var(--main-color) !important;
}
.home-21.footer-area .copyright-area.copyright-bg {
  background-color: rgb(101, 163, 168) !important;
}
.home-variant-21 {
  padding: 0;
}
 
@media (max-width: 992px) {
  footer .col-lg-3:nth-child(1),
  footer .col-lg-3:nth-child(2) {
    margin-bottom: 15px;
  }
  footer .col-lg-3 {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact_info_list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sidebars-single-content .widget-title {
    text-align: center;
  }
  footer .col-lg-3 {
    padding: 10px 0;
  }
  footer .col-lg-3:not(:first-child) {
    border-bottom: 1px solid var(--main-color);
  }
 }



 /* ABOUT PAGE */

#about-hero {
  padding: 90px 0;
}
#about-hero .container {
  display: flex;
  gap: 30px;
}
@media (min-width: 992px) {
  .piramide-16x9 {
    display: none;
  }
}
#about-hero .container .left-part,
#about-hero .container .right-part {
  flex: 1;
}
#about-hero .badges {
  display: inline-block;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  position: absolute;
  right: 30px;
  bottom: 10px;
}
#about-hero .badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
#about-hero .badge span {
  color: #fff;
  font-size: 1.1em;
}
#about-hero .container .left-part {
  position: relative;
}
#about-hero .container .left-part .piramide-9x16{
  max-width: 450px;
  border-radius: 10px; 
}

#about-hero h1 {
  color: var(--main-color);
  font-size: 1.5em;
  font-weight: bold;
}
#about-hero h2 {
  font-size: 2.5em;
  font-weight: 900;
}
#about-hero p {
  font-size: 1.1em;
  color: var(--paragrafo-color);
}
#about-hero .main-button {
  margin-top: 20px;
}
#about-hero .main-button a {
  padding: 15px 50px;
}


@media (max-width:1200px) {
  #about-hero h2 {
    font-size: 2em;
    font-weight: 900;
  }
  #about-hero p {
  font-size: 1em;
}
  #about-hero .badges {
    right: -15px;
  }
}
@media (max-width:992px) {
  #about-hero .container {
    flex-direction: column;
  }
  #about-hero .container .left-part {order: 2;}
  #about-hero .container .right-part {order: 1;}
  
  #about-hero .container .left-part .piramide-9x16 {
    display: none;
  }
  #about-hero .container .left-part .piramide-16x9 {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
     #about-hero .badges {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 5px 30px;
      right: 0;
      bottom: -80px;
     }
     #about-hero .badge span {
      font-size: 1em;
     }
     #about-hero .main-button a {
      padding: 12px 35px;
    }
}
@media (max-width: 450px) {
     #about-hero .badges {
      inset: 0;
      margin: auto;
      justify-content: center;
      max-width: 320px;
      max-height: 100px;
      padding: 0;
      bottom: -320px;
     }
     #about-hero .badges .badge img {
      width: 40px;
      height: 45px;
     }
     #about-hero .badge span {
      font-size: 0.9em;
     }
     #about-hero h2 {
      font-size: 1.5em;
     }
     #about-hero h1 {
      font-size: 1.2em;
     }
}


/* COUNTER-UP ABOUT */

.servicos-about {
  padding: 50px 0 !important;
}
.servicos-about .second-row {
  background-color: var(--main-color) !important;
  border-radius: 0 !important;
}
.servicos-about .second-row .counter-box p {
  color: #000;
}


/* CONTACT PAGE */

.contact-info-area-wrapper .row {
  justify-content: center;
}
.single-contact-item {
  background-color: var(--green-light);
  border-radius: 10px;
}
.single-contact-item i {
  color: var(--main-color) !important;
}


/* BREADCRUMB CSS */

.breadcrumb-area:before {
    background-color: rgba(255, 255, 255, .7) !important;
}

/* SERVICES PAGE */

#services-page {
  padding: 100px 0;
  background-color: #eee;
}
#services-page h2 {
  color: var(--main-color);
  font-size: 1.5em;
  text-align: center;
}
#services-page h1 {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
}
#services-page .row {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#services-page .col-lg-4 {
  display: flex;
  align-items: stretch;
  padding-top: 20px;
}
#services-page .service-card .services-title {
  display: flex;
  gap: 20px;
  align-items: center;
}
#services-page .service-card {
  padding: 30px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  border-radius: 10px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
#services-page .service-card i {
  color: var(--main-color);
  font-size: 30px;
}
#services-page .service-card img {
  border-radius: 20px;
  width: 100%;
  height: 200px;
}
#services-page .service-card p {
  color: var(--paragrafo-color);
}
#services-page .service-card .main-button{
  align-self: flex-start;
}
@media (max-width: 768px) {
  #services-page .service-card img {
    height: auto;
  }
}
