/* Config Basica */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

:root {
  /* Cores da InstallSollutions */
  --color-primary: #003b5b;
  --color-secondary: #76b729;
}

h1 {
  font-weight: bold;
  font-size: 62px;
  font-family: 'inter';
  line-height: 65px;
}

h2 {
  font-weight: bold;
  font-size: 32px;
  font-family: 'inter';
  line-height: 36px;
}

h3 {
  font-family: 'inter';
}

p {
  font-family: 'inter' !important;
  font-size: 16px;

}

a {
  font-size: 16px;
  font-family: 'inter';
  color: white;
}

.cw h1,
.cw p {
  color: white;
}

.reverse {
  display: flex;
  flex-direction: row-reverse !important;
}

/* Fim de Config basica */

/* Header */

.hd__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 10%;
  right: 0;
  left: 0;
  z-index: 99;
  justify-content: flex-end;
}



.hd__menu nav a {
  color: white;
  text-decoration: none;
  font-family: "Montserrat";
  padding: 0 78px;
  font-size: 25px;
  font-weight: 400;

}

/* Banner Principal */
.bn__home {
  width: 100%;
  height: 110vh;
  background-image: url('../../img/banner.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;

}



/* Escrita Banner */
.bn__texto {
  position: absolute;
  bottom: 25%;
  font-family: "Montserrat";
  color: white;
  z-index: 99;
}

.bn__texto p {
  font-weight: 400;
}

.bn__texto p,
.sl__texto p,
.dw__texto p {
  font-size: 23px;
  margin: 5% 0;
}

.bn__button {
  width: 270px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--color-secondary);
}

.bn__button a,
.sl__buttom a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.bn__button:hover,
.sl__buttom:hover {
  background-color: white;
  transition: 500ms;

}

.bn__button:hover a,
.sl__buttom:hover a {
  color: var(--color-secondary)
}

.cont-sb_LS {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

}

.cont-sb_LS:hover .txt-sb_IS {
  box-shadow: 27px 17px 0px 1px rgba(8, 63, 92, 1);
  transition: all 500ms ease-in-out;
}

.sb_IS {
  width: 40%;
}

.txt-sb_IS {
  width: 50%;
  color: var(--color-primary);
  font-size: 20px;
  background-color: var(--color-secondary);
  padding: 100px 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;

}

.txt-sb_IS p {
  font-size: 20px;
}

.txt-sb_IS b {
  font-style: italic;
}

.sb_IS ul li {
  list-style: none;
}

.sb_IS li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.sb_IS h2 {
  color: var(--color-primary);
  font-size: 40px;
  line-height: 35px;
  margin-bottom: 5%;

}

/* Carrossel */
.carrossel h2 {
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-primary);
}

.carrossel p {
  text-align: center;
}

.carrossel__faixa {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 50px 0;
}

.carrossel__itens {
  display: flex;
  gap: 2rem;
  animation: deslizar 20s linear infinite;
}

.carrossel__itens img {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  padding: 0 60px;
}

/* Automacao */
.automacao {
  background-image: url('../../img/automocao-banner.jpg');
  background-size: 100% 100%;
  height: 80vh;
  background-repeat: no-repeat;

}

.automacao__texto h2 {
  font-size: 50px;
  font-weight: bold;
  color: white;
}

.automacao__texto p {
  font-size: 20px;
}

.automacao__texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
}


.automacao__texto p,
.automacao__texto h2 {
  color: white;
  padding: 15px 0px;
}

.trabalhos {
  background-image: url('../../img/background-trabalhos.svg');

  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 55%;

}

/* Trabalhos */
.trab-1 .sb_IS h2 {
  line-height: 55px;
}

.trab-1 {
  margin: 15% 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.trab-1-img {
  display: block!important;
  width: 55%;
  height: auto;
}

.sb_IS ul li {

  padding: 10px;
}

.trab-1 .bn__button {
  margin: 15px 0px;
  background-color: var(--color-primary);
}


@keyframes deslizar {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Formulario de contato */
.form-contact {
  background-color: var(--color-primary);
}

.formulario {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10%;
}

.disc {
  width: 50%;
  color: white;

}

.disc h2{
  font-size: 40px;
}

.form {
  background-color: white;
  padding: 50px;
  border-radius: 20px;
  width: 50%;
}

.form form {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.form form label {
  font-size: 16px;
  font-weight: 600;
  color: black;
  font-family: 'inter';
}

.form form input {
  border: 1px solid #dadada;
  height: 45px;
  border-radius: 5px;

}

.form form textarea {
  border: 1px solid #dadada;
  height: 100px;
  border-radius: 5px;
}

.form form button {
  background-color: var(--color-secondary);
  color: white;
  border-radius: 20px;
  padding: 15px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.form form button:hover {
  background-color: var(--color-primary);
  transition: 500ms;
}

footer {
  padding: 50px 20px !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 25px;
}

.social-footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.social-footer i {
  font-size: 35px !important;
}

.menu-footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.whatsapp {
  background-color: #25d3653d;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s;
  animation: pulse 2s infinite;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

/* Animação de pulsar */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animação de tremor */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-3px);
  }

  40% {
    transform: translateX(3px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

.shake {
  animation: shake 0.5s;
}
.desenvolvido{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circulo-verde, .circulo-azul{
  display: none;
}

@media (max-width: 767px) {

  .carrossel__itens {
    gap: 1rem;
  }

  .carrossel__itens img {
    padding: 0 20px;
    height: 60px;
  }
  .container {
    padding: 0 15px;
    width: 100%;
  }

  .wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: 36px;
    line-height: 40px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  p {
    font-size: 14px;
  }

  .bn__home {
    width: 100%;
    height: 100vh;
    background-image: url(../../img/banner-princ-mobile.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
  }

  .hd__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 10%;
    right: 0;
    left: 0;
    z-index: 99;
    justify-content: center;
  }

  .hd__menu nav a {
    color: white;
    text-decoration: none;
    font-family: "Montserrat";
    padding: 0px 5px;
    font-size: 17px;
    font-weight: 400;
  }

  .bn__texto {
    position: absolute;
    bottom: 50%;
    font-family: "Montserrat";
    color: white;
    z-index: 99;
  }

  .bn__texto p {
    font-size: 16px;
  }

  .cont-sb_LS {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .sb_IS,
  .txt-sb_IS {
    width: 100%;
    
  }
  .txt-sb_IS{
    box-shadow: 27px 17px 0px 1px rgba(8, 63, 92, 1);
  }

  .sb_IS li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .automacao__texto h2,
  .sb_IS h2,
  .automacao h2 {
    line-height: 40px;
  }

  .automacao__texto p {
    font-size: 16px;
  }

  .trab-1 {
    margin: 15% 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
  }
  .trab-1 .sb_IS h2 {
    line-height: 55px;
    text-align: center;
}

   .trab-1-img {
    width: 300px ;
    height: 300px;
  } 


  .circulo-verde{
    background-color: var(--color-secondary);
    border-radius: 50%;
    padding: 45px;
    display: block;
  }
  .circulo-azul{
background-color: var(--color-primary);
    border-radius: 50%;
    padding: 45px;
    display: block;
  }
  .trab-1 .bn__button {
    margin: 15px auto;
    background-color: var(--color-primary);
}

  .formulario {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
  }

  .disc,
  .form {
    width: 100%;
    margin-bottom: 5%;
  }
  .disc{
    text-align: center;
  }
  .disc h2{
    font-size: 33px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 19px;
  }
  .menu-footer {
    display: flex
;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

  .automacao {
    background-image: url(../../img/banner-mobile.jpg);
    background-size: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
  }

  .automacao__texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
  }

  .trabalhos {
    background-image: none;
    height: 100%;
    background-repeat: no-repeat;
    background-position-x: 54px;
    background-size: cover;
}

  .desenvolvido, .direitos{
    text-align: center;
  }
}