@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*Landing Page - Marques Engenharia // @guepsd + @thpaduaagencia*/
:root {
  --preto: #001136;
  --cinza: #FFFFFFA8;
  --branco: #FAFAFA;
  --cinza-claro: #C2C2C2;
  --cinza-escuro: #04091ca6;
}

body {
  overflow-x: hidden !important;
  font-family: "poppins", serif;
  font-optical-sizing: auto;
  background-color: var(--azul);
}

h1 {
  font-size: 48px;
  font-weight: 300;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6) !important;
}

h4 {
  font-size: 12px;
  font-weight: 200;
  margin: 0;
}

p {
  font-size: 16px;
  font-weight: 200;
  line-height: 25px;
  letter-spacing: 0.32px;
}

a,
a:hover {
  text-decoration: none !important;
  color: inherit;
}

span {
  color: #a8a8a8;
  font-size: 12px;
  letter-spacing: 15px;
  font-weight: 200;
  text-transform: uppercase;
}

blockquote {
  font-size: 12px;
  opacity: 0.5;
}

b {
  font-weight: 500;
}

#deg {
  background: linear-gradient(276deg, #595E6E -46.88%, #FFF 60.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hover {
  transition: transform 0.5s;
}

.hover:hover {
  transform: scale(1.05);
  transition: transform 0.5s;
}

/* Botão */
.btn-01 {
  position: relative;
  display: inline-block;
  color: var(--preto);
  padding: 15px 45px;
  border-radius: 12px;
  background: linear-gradient(88deg, #D8D8D8 0%, #FAFAFA 49.69%, #DADADA 102.32%);
  box-shadow: 0 0 44px 0 rgba(255, 255, 255, 0.64);
  overflow: hidden;
  transition: transform 1s ease;
}

.btn-02 {
  position: relative;
  display: inline-block;
  color: var(--branco);
  padding: 15px 45px;
  border-radius: 12px;
  overflow: hidden;
  background: #001136;
  transition: background-color 0.3s, color 0.3s;
}

.btn-02:hover {
  color: var(--branco);
  background-color: #002064;
  cursor: pointer;
}

/* Brilho */
.btn-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.btn-01:hover::before {
  animation: brilho-passando 1.2s ease;
}

.btn-01:hover {
  transform: scale(1.05);
  color: var(--preto) !important;
}

@keyframes brilho-passando {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Seção-01 */
.secao-01 {
  padding: 200px 0;
  height: 100vh;
  color: var(--branco);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  animation: troca-fundo 20s infinite;
}

@keyframes troca-fundo {
  0% {
    background-image: url("../assets/banner/header-01.png");
  }

  33% {
    background-image: url("../assets/banner/header-02.png");
  }

  66% {
    background-image: url("../assets/banner/header-03.png");
  }

  100% {
    background-image: url("../assets/banner/header-01.png");
  }
}

.selo {
  height: 20px;
  margin-right: 10px;
}

.form {
  margin: 50px;
  background-color: #001136;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 73px -29px rgba(0, 0, 0, 0.2);
}

.form h4 {
  font-size: 14px;
}

.form h3 {
  font-size: 20px;
}

.border-bottom {
  border-bottom: 1px solid #ffffff18 !important;
  padding-bottom: 20px;
}

.border-bottom-2 {
  border-bottom: 1px solid #00000013 !important;
  padding-bottom: 20px;
}

label {
  font-size: 14px;
  font-weight: 300;
  color: var(--cinza);
}

button {
  border: none;
}

.form-control {
  background-color: #fafafa;
  border: 1px solid #ffffff18;
  padding: 15px;
  border-radius: 8px;
}

/* Seção-02 */
.secao-02 {
  padding: 80px 0;
  background-color: var(--branco);
  color: var(--preto);
}

.secao-02 h1 {
  font-size: 30px;
}

/* Seção-03 */
.secao-03 {
  padding: 50px 0;
  background-color: #001136;
  color: var(--branco);
}

/* Seção-04 */
.secao-04 {
  padding: 50px 0;
  background-color: #F4F4F4;
  color: var(--preto);
}

.box {
  background-color: var(--branco);
  padding: 50px 50px 100px 50px;
  border-radius: 30px;
  box-shadow: 0 4px 70.4px -12px rgba(0, 0, 0, 0.25);
}

.box .box-interna {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px;
  height: 90%;
}

.box-interna h5 {
  color: var(--cinza-escuro);
  background-color: #f4f4f4;
  font-size: 16px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
}

.pilares {
  margin-top: -25px;
  text-align: center;
}

/* Seção-05 */
.secao-05 {
  padding: 50px 0;
  background-color: #fff;
  color: var(--preto);
  margin-bottom: -300px;
}

.servicos {
  background-color: #001136;
  padding: 50px 120px;
  border-radius: 42px;
  text-align: center;
  color: var(--branco);
}

.box-servicos {
  margin-top: 15px;
  border-radius: 20px;
  padding: 50px;
  background-color: var(--branco);
  color: var(--preto);
}

/* Seção-06 */
.secao-06 {
  padding: 280px 0 50px;
  background-color: #F4F4F4;
  color: var(--preto);
}

/* Seção-07 */
.secao-07 {
  padding: 50px 0;
  background-color: var(--preto);
  color: var(--branco);
}

/* Seção-08 */
.secao-08 {
  padding: 50px 0 90px;
  background-color: #F4F4F4;
  color: var(--preto);
}

.depoimentos {
  background-color: var(--branco);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 46.9px -6px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin: 10px 0;
}

/* Seção-09 */
.secao-09 {
  padding: 100px 0;
  background: url("../assets/banner/backmove.png") center/cover no-repeat fixed;
  color: var(--branco);
}

.logo-marques {
  opacity: 0.05;
}

/* Rodapé */
.footer {
  background-color: var(--preto);
  padding: 25px 0;
  color: var(--branco);
}

.footer h5 {
  font-size: 13px;
  font-weight: 200;
  opacity: 0.5;
  line-height: 17px;
  letter-spacing: 0.32px;
  margin: 5px 0;
}

.thp {
  padding: 10px 0;
  background-color: #100d1c;
  color: #ffffff59;
}

.thp p {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.32px;
}

.thp a {
  font-weight: 300;
  letter-spacing: 0.32px;
}

.btn-wpp {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 200, 0, 1);
  color: white;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  font-size: 50px;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
  z-index: 9000;
}

.btn-wpp:hover {
  color: green;
}

.btn-wpp i {
  position: absolute;
  font-size: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }

  70% {
    -webkit-box-shadow: 0 0 0 13px rgba(0, 200, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}