@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  z-index: 999;
	bottom: 25px;
	left: 25px;
	animation-play-state: paused;
  }
  
  .btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
  }

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

#produtos {
  position:relative;
}

#image {
  position: absolute;
  bottom: 0;
  opacity: 80%;
  z-index: 0;
}

.img-post {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;

}

.img-post img{
  border-radius: 30px;
}

.img-post a {
  color: white;
  background-color: #e56620;
  font-family: "Open Sans", sans-serif;
  font-size: 33px;
  font-weight: 700;
  padding: 15px 45px;
  border-radius: 23px;
  text-align: end;
  margin-right: 9%;
  border: 2px solid white;
}

.img-post a:hover {
  color: #e56620;
  background-color: white;
  border: 2px solid #e56620;
}

.center {
  text-align: center;
  margin: -35px 0 70px;
}


/* ////////////// base style overrides ////////////// */
html {
  font-size: 10px;
}

@media screen and (max-width:400px) {
  html {
    font-size: 9.411764705882353px;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.882;
  color: #000000;
  margin: 0;
  padding: 0;
}


/* ////////////// links ////////////// */
a {
  color: #e56620;
  transition: all 0.3s ease-in-out;
}

a:hover, a:active {
  color: #000000;
}

a:hover, a:active {
  outline: 0;
}


/* ////////////// typography & general theme styles ////////////// */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000000;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width:600px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 6rem;
  }
}

h5, .h5, h6, .h6 {
  margin-top: 4.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width:600px) {
  h5, .h5, h6, .h6 {
    margin-top: 4rem;
    margin-bottom: 0.8rem;
  }

}

h1, .h1 {
  font-size: 3.6rem;
  line-height: 1.222;
  letter-spacing: -.1rem;
}

@media screen and (max-width:600px) {
  h1, .h1 {
    font-size: 3.3rem;
    letter-spacing: -.07rem;
  }

}

h2, .h2 {
  font-size: 3rem;
  line-height: 1.2;
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: 1.1667;
}

h4, .h4 {
  font-size: 2.1rem;
  line-height: 1.286;
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6, .h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .16rem;
}

p img {
  margin: 0;
}

p.lead {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 3.6rem;
  color: #000000;
}

.about-me__content {
  margin-top: -27px;
}

.about-me__content p {
  text-align: center;
}

@media screen and (max-width:1200px) {
  p.lead {
    font-size: 2.2rem;
  }

}

em, i, strong, b {
  font-size: inherit;
  line-height: inherit;
}

em, i {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

strong, b {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

/* ////////////// Lists ////////////// */
ul {
  list-style: disc;
}

li {
  display: list-item;
}

ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: .4rem;
}

ul ul {
  margin: .8rem 0 .8rem 1.6rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e56620;
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}


/* ////////////// Spacing ////////////// */
p, ul, ol, dl, form, .video-container, .ss-custom-select {
  margin-bottom: 3.2rem;
}


/* ////////////// pace.js styles - minimal ////////////// */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #e56620;
  position: fixed;
  z-index: 501;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px;
}

.oldie .pace {
  display: none;
}


/* ////////////// preloader ////////////// */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050505;
  z-index: 500;
  height: 100vh;
  width: 100%;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  margin-left: -30px;
  margin-top: -30px;
}

#loader:before {
  content: "";
  border-top: 6px solid rgba(255, 255, 255, 0.1);
  border-right: 6px solid rgba(255, 255, 255, 0.1);
  border-bottom: 6px solid rgba(255, 255, 255, 0.1);
  border-left: 6px solid #e56620;
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

}


/* ////////////// Change Autocomplete styles in Chrome ////////////// */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #e56620;
  transition: background-color 5000s ease-in-out 0s;
}


/* ////////////// Common and Reusable Styles ////////////// */
.heading-block {
  position: relative;
}

.heading-block--center {
  max-width: 940px;
}

.section-heading {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.176;
  text-transform: uppercase;
  letter-spacing: .5rem;
  margin-top: 0;
  padding-top: 3.2rem;
  margin-bottom: 8rem;
  position: relative;
}

.section-heading::before {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #e56620;
  position: absolute;
  top: 0;
  left: 0;
}

.section-heading--centerbottom {
  text-align: center;
  padding-top: 0;
  padding-bottom: 3.2rem;
}

.section-heading--centerbottom::before {
  margin-left: -75px;
  top: auto;
  bottom: 0;
  left: 50%;
}

.section-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 1.259;
  letter-spacing: -0.05rem;
  color: #000000;
}

.item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.222;
  margin-top: 0;
  color: #000000;
}

/* responsive:
 * common and reusable styles ////////////// */
@media screen and (max-width:1200px) {
  .item-title {
    font-size: 3rem;
  }

}

@media screen and (max-width:1024px) {
  .heading-block {
    max-width: 800px;
  }

  .section-desc {
    font-size: 4.8rem;
  }

}

@media screen and (max-width:800px) {
  .heading-block {
    max-width: 600px;
  }

  .section-heading {
    font-size: 1.6rem;
    padding-top: 0;
    padding-bottom: 3.2rem;
    text-align: center;
  }

  .section-heading::before {
    top: auto;
    bottom: 0;
    left: 50%;
    margin-left: -75px;
  }

}

@media screen and (max-width:657px) {
  .email {
    font-size: 4.2rem;
  }
}

@media screen and (max-width:600px) {
  .section-heading {
    margin-bottom: 6.8rem;
  }

  .section-desc {
    font-size: 4rem;
  }

}

@media screen and (max-width:535px) {
  .email {
    font-size: 3.5rem;
  }
}

@media screen and (max-width:469px) {
  .email {
    font-size: 3.3rem;
  }
}

@media screen and (max-width:445px) {
  .email {
    display: none;
  }

  .f-email {
    display: none;
  }

  .f-email-mobile {
    display: contents !important;
  }
}

@media screen and (max-width:400px) {
  .section-desc {
    font-size: 3.4rem;
  }

  .item-title {
    font-size: 2.8rem;
  }

}


/* ////////////// header //////////////  */
.s-header {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  height: 78px;
  text-align: center;
  z-index: 10;
}

.s-header.sticky {
  background-color: #000000e5;
  position: fixed;
  top: 0;
  left: 0;
}

.s-header a {
  color: white;
}

.s-header a:hover {
 color: white;
}

/* ////////////// header logo ////////////// */
.header-logo {
  display: inline-block;
  margin: 6px 0 0 0;
  padding: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  left: 40px;
}

.header-logo a {
  display: block;
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  transition: all .3s;
}

.header-logo img {
  width: 132px;
  height: 55px;
  margin: 0;
}


/* ////////////// main navigation ////////////// */
.header-nav-wrap {
  display: inline-block;
}

.header-nav-wrap ul {
  display: inline-block;
  list-style: none;
  margin-left: 0;
  margin-top: 18px;
}

.header-nav-wrap li {
  display: inline-block;
  padding-left: 0;
}

.header-nav-wrap li a {
  display: block;
  line-height: calc(78px - (18px * 2));
}

.header-main-nav {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .3rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0 4px;
  z-index: 2;
  position: static;
}

.header-main-nav li {
  margin: 0 2rem;
}

.header-main-nav a {
  position: relative;
}

.header-main-nav a:hover {
  color: #ffffff;
}

.header-main-nav .current a {
  color: #ffffff;
}

.header-social {
  font-size: 2rem;
  margin: 0;
  position: absolute;
  top: 0;
  right: 40px;
}

.header-social li {
  margin-right: 1rem;
}

.header-social li:last-child {
  margin-right: 0;
}

.header-social li a {
  color: #ffffff;
}


/* ////////////// menu trigger ////////////// */
.header-menu-toggle {
  display: none;
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all .3s;
  position: absolute;
  right: 32px;
  top: 18px;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #ffffff;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  background-color: #ffffff;
  transition: all .5s;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 9px;
  right: auto;
  bottom: auto;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  transition: all .5s;
}

.header-menu-toggle span::before {
  top: -9px;
}

.header-menu-toggle span::after {
  bottom: -9px;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  transition: all .1s;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* responsive:
 * header ////////////// */
@media screen and (max-width:1200px) {
  .header-main-nav {
    font-size: 12px;
  }

  .header-main-nav li {
    margin: 0 1.4rem;
  }

}

@media screen and (max-width:1000px) {
  .s-header {
    text-align: right;
  }

  .header-nav-wrap {
    margin-right: 36px;
  }

  .header-nav-wrap .header-social {
    display: none;
  }

}

@media screen and (max-width:800px) {
  .s-header {
    background-color: #050505;
    position: fixed;
    top: 0;
  }

  .header-logo img {
    width: 100px;
  }

  .header-nav-wrap {
    display: none;
    text-align: left;
    height: auto;
    width: 100%;
    background-color: #050505;
    padding: 120px 44px 64px;
  }

  .header-nav-wrap .header-main-nav {
    display: block;
    padding-left: 0;
    height: auto;
    margin: 0 0 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-nav-wrap .header-main-nav li a {
    padding: 18px 0;
    line-height: 20px;
  }

  .header-nav-wrap .header-social {
    display: block;
    position: static;
  }

  .header-nav-wrap .header-social li {
    font-size: 1.8rem;
    margin-right: 1.6rem;
  }

  .header-nav-wrap .header-social li a {
    line-height: 36px;
  }

  .header-menu-toggle {
    display: block;
  }

}

@media screen and (max-width:600px) {
  .header-logo {
    left: 35px;
  }

}

@media only screen and (min-width:801px) {
  .header-nav-wrap {
    display: block !important;
  }

}


/* //////////////  intro //////////////  */
.s-intro {
  width: 100%;
  height: 100vh;
  min-height: 792px;
  background-color: #050505;
}

.intro-content {
  height: 100%;
  max-width: 1500px;
  padding-top: 20vh;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.intro-pic {
  background-repeat: no-repeat;
  background-image: url(../images/intro-pic.svg);
  background-size: cover;
  position: absolute;
  top: 1%;
  right: 0;
  bottom: 0;
  left: -150%;
  width: 63%;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide 0.5s forwards;
  animation-delay: 2s;
}

@-webkit-keyframes slide {
  100% { left: 37%; }
}

@keyframes slide {
  100% { left: 37%; }
}

.intro-pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .2;
}

.intro-grid {
  background-image: url(../images/pattern-dot-grid.svg);
  background-size: 24px 24px;
  opacity: .15;
  position: absolute;
  top: 30%;
  right: 0;
  bottom: 0;
  left: 30%;
}

.intro-text {
  -webkit-transform: translate3d(0, -3.6rem, 0);
  transform: translate3d(0, -3.6rem, 0);
  position: static;
  z-index: 1;
}

.intro-text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.333;
  color: #e56620;
  margin-top: 0;
}

.intro-text h1 {
  font-size: 7.8rem;
  font-weight: 500;
  line-height: 1.179;
  color: #ffffff;
  margin-top: 0;
}

.intro-scroll {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .3rem;
  position: absolute;
  bottom: 8rem;
  left: 24px;
  z-index: 1;
}

.intro-scroll a {
  display: inline-block;
  color: white;
  position: relative;
  padding-right: 8.8rem;
}

.intro-scroll a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 72px;
  background-color: #e56620;
}

#home h3 {
  padding-left: 10px;
}

/* responsive:
 * intro ////////////// */

 @media screen and (max-width:1400px) {
  .intro-text h3 {
    font-size: 2.2rem;
  }

  .intro-text h1 {
    font-size: 7.2rem;
  }

}

@media screen and (max-width:1341px) {
  .intro-pic {
    width: 68%;
  }
}

@media screen and (max-width:1200px) {
  .intro-content {
    max-width: 1000px;
  }

 .intro-pic {
  top: 2%;
  width: 72%;
 }

 @-webkit-keyframes slide {
  100% { left: 34%; }
}

@keyframes slide {
  100% { left: 34%; }
}

  .intro-text h3 {
    font-size: 2rem;
  }

  .intro-text h1 {
    font-size: 7rem;
  }

}

@media screen and (max-width:1024px) {
  .s-intro {
    max-height: 800px;
  }

  .intro-pic {
    top: 3%;
    width: 69%;
   }

  .intro-text h1 {
    font-size: 6.2rem;
  }

  @-webkit-keyframes slide {
    100% { left: 37%; }
  }
  
  @keyframes slide {
    100% { left: 37%; }
  }

}

@media screen and (max-width:900px) {
  .intro-text h1 {
    font-size: 6rem;
  }

  .intro-pic {
    width: 69%;
  }

  .intro-text br {
    display: none;
  }

}

@media screen and (max-width:800px) {
  .intro-content {
    width: 88%;
    padding-top: 8rem;
  }

  .intro-pic {
    width: 69.7%;
    left: 200%;
  }

  .intro-pic::before {
    opacity: .4;
  }

  .intro-grid {
    top: 20%;
    opacity: .1;
  }

  .intro-text h3 {
    font-size: 1.8rem;
  }

  .intro-text h1 {
    font-size: 5.6rem;
  }

  .intro-scroll {
    display: none;
  }

  .botao img {
    width: 65%;
  }
}

@media screen and (max-width:700px) {
  .intro-text h1 {
    font-size: 5rem;
  }

  .intro-grid {
    left: 15%;
  }

}

@media screen and (max-width:600px) {
  .s-intro {
    max-height: none;
  }

  .intro-content {
    width: auto;
  }

  .intro-pic {
    width: 63%;
  }

  .intro-grid {
    left: 10%;
  }

  .intro-text {
    -webkit-transform: translate3d(0, -4.8rem, 0);
    transform: translate3d(0, -4.8rem, 0);
  }

  .intro-text h1 {
    font-size: 4.8rem;
  }

  .intro-scroll {
    font-size: 1.1rem;
    left: 30px;
  }

}

@media screen and (max-width:415px) {
  .s-intro {
    min-height: 656px;
  }

  .intro-pic {
    width: 63%;
  }

  .intro-text h1 {
    font-size: 4.5rem;
  }

}

@media screen and (max-width:353px) {
  .intro-text h1 {
    font-size: 4.2rem;
  }

}

@media screen and (max-width:331px) {
  .intro-text h1 {
    font-size: 3.8rem;
  }

}

@media screen and (max-width:304px) {
  .intro-text h1 {
    font-size: 3.5rem;
  }

}

@media screen and (max-width:284px) {
  .intro-text h1 {
    font-size: 3.3rem;
  }

}


/* ////////////// about ////////////// */
.s-about {
  padding-top: 11rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}

.s-about .row {
  max-width: 1140px;
}

.s-about > [class*="about-"] {
  margin-bottom: 15.2rem;
}

.s-about > [class*="about-"]:last-child {
  margin-bottom: 0;
}

.about-me__text {
  -webkit-columns: 2 360px;
  -moz-columns: 2 360px;
  columns: 2 360px;
  column-gap: 64px;
}

.about-me__buttons {
  margin-top: 4.8rem;
}

.about-me__buttons .column:first-child {
  padding-right: 32px;
}

.about-me__buttons .column:last-child {
  padding-left: 32px;
}

/* responsive:
 * about ////////////// */
@media screen and (max-width:1200px) {
  .s-about {
    padding-top: 17.2rem;
    padding-bottom: 15.6rem;
  }

  .about-experience__timeline .column:first-child {
    padding-right: 30px;
  }

  .about-experience__timeline .column::last-child {
    padding-left: 30px;
  }

  .timeline::after {
    width: 4.4rem;
  }

  .timeline__icon-wrap {
    left: 4.4rem;
  }

  .timeline__block {
    padding-left: 4.4rem;
  }

  .timeline__header h5 {
    font-size: 1.8rem;
  }

}

@media screen and (max-width:1024px) {
  .about-me__text {
    column-gap: 40px;
  }

  .about-me__buttons .column:first-child {
    padding-right: 20px;
  }

  .about-me__buttons .column:last-child {
    padding-left: 20px;
  }

  .about-experience__timeline .column:first-child {
    padding-right: 16px;
  }

  .about-experience__timeline .column:last-child {
    padding-left: 16px;
  }

}

@media screen and (max-width:900px) {
  .s-about .row {
    max-width: 700px;
  }

  .about-me__buttons .column:first-child {
    padding-right: 16px;
  }

  .about-me__buttons .column:last-child {
    padding-left: 16px;
  }

  .about-experience__timeline .column {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-experience__timeline .column:first-child {
    margin-bottom: 9.6rem;
  }

  .timeline::after {
    width: 5.6rem;
  }

  .timeline__icon-wrap {
    left: 5.6rem;
  }

  .timeline__block {
    min-height: 0;
    padding-left: 5.6rem;
  }

}

@media screen and (max-width:800px) {
  .s-about {
    padding-top: 16rem;
  }

  .s-about .row {
    max-width: 600px;
  }

}

@media screen and (max-width:600px) {
  .about-me__buttons .column:first-child,
  .about-experience__timeline .column:first-child {
    padding-right: 10px;
  }

  .about-me__buttons .column:last-child,
  .about-experience__timeline .column:last-child {
    padding-left: 10px;
  }

  .timeline::after {
    width: 4.4rem;
  }

  .timeline__icon-wrap {
    left: 4.4rem;
  }

  .timeline__block {
    padding-left: 4.4rem;
  }

  .timeline__header h5 {
    font-size: 1.8rem;
  }

}

@media screen and (max-width:400px) {
  .s-about > [class*="about-"] {
    margin-bottom: 14rem;
  }

  .about-me__buttons .column:first-child,
  .about-experience__timeline .column:first-child {
    padding-right: 0;
  }

  .about-me__buttons .column:last-child,
  .about-experience__timeline .column:last-child {
    padding-left: 0;
  }

  .timeline::after {
    width: 2.8rem;
  }

  .timeline__icon-wrap {
    left: 2.8rem;
  }

  .timeline__block {
    padding-left: 2.8rem;
  }

}


/* ////////////// produtos ////////////// */
.s-works {
  padding-top: 10rem;
  background-color: #ffffff;
}


/* ////////////// testimonials ////////////// */
.s-testimonials {
  padding-top: 18.4rem;
  padding-bottom: 16rem;
  background-color: #efefef;
}

.testimonials {
  position: relative;
  z-index: 9;
}

.testimonials p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.8;
  color: #000000;
}

.testimonials__slider {
  position: relative;
}

.testimonials__slider .slick-slide {
  outline: none;
}

.testimonials__slider .slick-dots {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 3.6rem;
  right: 4rem;
}

.testimonials__slider .slick-dots li {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0;
  padding: 9px;
  cursor: pointer;
}

.testimonials__slider .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.testimonials__slider .slick-dots li button:hover,
.testimonials__slider .slick-dots li button:focus {
  outline: none;
}

.testimonials__slider .slick-dots li.slick-active button,
.testimonials__slider .slick-dots li:hover button {
  background: #e56620;
}

.testimonials__slide {
  position: relative;
}

.testimonials__info {
  height: 7.2rem;
  margin-top: 8rem;
  padding-left: 10rem;
  position: relative;
}

.testimonials__avatar {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 100%;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials__cite {
  display: block;
}

.testimonials__cite strong,
.testimonials__cite span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.testimonials__cite strong {
  font-size: 2.4rem;
  line-height: 1.5;
}

.testimonials__cite span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.333;
  color: rgba(0, 0, 0, 0.7);
}

/* responsive:
 * testimonials ////////////// */
@media screen and (max-width:1400px) {
  .testimonials p {
    font-size: 3.8rem;
  }

}

@media screen and (max-width:1200px) {
  .testimonials {
    max-width: 1000px;
  }

  .testimonials p {
    font-size: 3.6rem;
  }

  .testimonials__info {
    height: 6.8rem;
    padding-left: 9.4rem;
  }

  .testimonials__avatar {
    width: 6.8rem;
    height: 6.8rem;
  }

  .testimonials__cite strong {
    font-size: 2.2rem;
  }

  .testimonials__cite span {
    font-size: 1.7rem;
  }

}

@media screen and (max-width:1000px) {
  .testimonials {
    max-width: 800px;
  }

  .testimonials p {
    font-size: 3.2rem;
  }

  .testimonials__cite strong {
    font-size: 2rem;
  }

  .testimonials__cite span {
    font-size: 1.6rem;
  }

}

@media screen and (max-width:900px) {
  .testimonials p {
    font-size: 3rem;
  }

}

@media screen and (max-width:800px) {
  .s-testimonials {
    padding-top: 16rem;
    text-align: center;
  }

  .testimonials p {
    font-size: 2.8rem;
  }

  .testimonials__slider .slick-dots {
    margin-top: 4rem;
    position: static;
  }

  .testimonials__info {
    display: inline-block;
    height: 6.4rem;
    padding-left: 9rem;
  }

  .testimonials__avatar {
    width: 6.4rem;
    height: 6.4rem;
  }

  .testimonials__cite strong {
    font-size: 1.8rem;
  }

  .testimonials__cite span {
    font-size: 1.6rem;
  }

}

@media screen and (max-width:600px) {
  .s-testimonials {
    padding-top: 13.6rem;
    padding-bottom: 13.6rem;
  }

  .testimonials p {
    font-size: 2.6rem;
  }

}

@media screen and (max-width:526px) {
  .img-post a {
    display: block;
    margin: 0 auto;
    font-size: 25px;
    padding: 15px 45px;
    border-radius: 21px;
    text-align: center;
  }

}

@media screen and (max-width:400px) {
  .testimonials p {
    font-size: 2.4rem;
  }

  .img-post a {
    font-size: 20px;
  }

}

@media screen and (max-width:325px) {
  .img-post a {
    font-size: 16px;
  }

}


/* ////////////// contact ////////////// */
.s-contact {
  padding-top: 18.4rem;
  padding-bottom: 18rem;
}

.contact-social ul li:first-child::before {
  display: none;
}

/* responsive:
 * contact ////////////// */
@media screen and (max-width:800px) {
  .s-contact {
    padding-top: 16rem;
  }

}


/* ////////////// footer ////////////// */
footer {
  position: relative;
  padding-top: 0;
  padding-bottom: 6.4rem;
  background: #181818;
}

footer p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}

footer p strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

footer a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}

footer a:hover {
  color: #e7651e;
}

footer .primeira {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 0;
}

footer .primeira div {
  display: flex;
  flex-direction: row;
}

footer .primeira div div {
  display: flex;
  flex-direction: row;
  width: 50%;
}

footer .primeira div div div {
  display: flex;
  flex-direction: column;  
}

footer .primeira div div div img{
  width: 145px;
}

.primeira div div .footer-atendimento {
  width: 300px;
}

.primeira div div .footer-atendimento p {
  margin-bottom: 2.2rem;
}

.primeira div div .footer-atendimento img {
  margin-top: 120px;
}

.footer-sobre {
  width: 550px !important;
  padding: 0 45px;
  border-left: 1px solid rgba(143, 143, 143, 0.3);
  border-right: 1px solid rgba(143, 143, 143, 0.3);
}

.footer-sites {
  padding-left: 45px;
}

footer .segunda {
  width: 100%;
  background-color: white;
  padding: 45px 20px;
}

footer .segunda div {
  max-width: 1400px;
  margin: 0 auto;
}

footer .segunda p strong {
  color: black;
}

footer .segunda div div {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: -10px;
}

footer .segunda img {
  width: 134px;
  margin-bottom: 10px;
}

footer .segunda img:last-child {
  width: 123px;
  height: 41px;
}

footer .terceira {
  display: block;
  max-width: 685px;
  text-align: center;
  margin: 45px auto -45px;
  padding: 0 20px;
}

footer .footer-atendimento .fa-brands.fa-whatsapp {
  font-size: 23px;
  align-items: center;
}

/* responsive:
 * footer ////////////// */
@media screen and (max-width:900px) {
  footer .primeira div {
    flex-direction: column;
    margin: 0 auto;
    text-align: center;  
  }

  footer .primeira div div {
    width: initial;
  }

  .primeira div div .footer-atendimento {
    margin-right: 16px;
  }

  .primeira div div .footer-atendimento img {
    margin: 5px auto 59px;
  }

  .footer-sobre {
    border: none;
  }

}

@media screen and (max-width:720px) {
  footer .primeira div div {
    flex-direction: column;
  }

  .footer-sites {
    padding-left: 0;
  }

  .footer-sobre {
    width: initial !important;
  }

  footer .segunda {
    text-align: center;
  }

  footer .segunda div div {
    justify-content: center;
  }

  footer .terceira p {
    font-size: 12px;
  }

  .primeira div div .footer-atendimento {
    margin: 0 auto;
  }

}
