/* Versão 1.4.0 */
.banner-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 94vh;
}

.hero-slider.swiper {
  position: relative;
  width: 100%;
  height: 100%;

  & .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(33deg,
          rgba(0, 0, 0, 0.87) 0%,
          rgba(0, 0, 0, 0.3) 50%,
          rgba(0, 0, 0, 1) 100%);
    }

    & .swiper-slide-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.2);
      color: #fff;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

      & .sw-titulo {
        margin: 0;
        letter-spacing: 0;
        font-weight: 300;
        font-size: 2.5rem;
        line-height: 1.2;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;

        &.active {
          opacity: 1;
          visibility: visible;
        }

        & span {
          display: block;
          line-height: 1.15;
          letter-spacing: 0;
          font-weight: 600;
          font-size: 3.25rem;
        }
      }
    }

    & img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    border: 2px solid white;
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 10px;
    background: #fff;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    &.swiper-pagination-bullet-active {
      background: var(--cor-fundo);
      width: 20px;
    }
  }

  & .swiper-button-prev,
  & .swiper-button-next {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;

    &::after {
      content: none;
    }

    & svg {
      display: block;
      width: 20px;
      height: 20px;
    }

    &:hover,
    &:focus-visible {
      background-color: rgba(0, 0, 0, 0.45);
      transform: scale(1.1);
    }
  }

  & .swiper-button-prev {
    left: 24px;

    & svg {
      transform: translateX(-1px);
    }
  }

  & .swiper-button-next {
    right: 24px;

    & svg {
      transform: translateX(1px);
    }
  }
}

#solucoes-e-servicos {
  background-image: var(--bg-secao1);
  background-repeat: no-repeat;
  background-position: center top;
  height: auto;
  transform: translate(0px, -2.787px);
  padding-top: 100px;

  & .box-servicos-home {
    margin-top: 70px;
    padding-bottom: 20px;

    & .feature-content {
      border-width: 0px 0px 0px 0px;
      position: relative;
      border-style: solid;
      overflow: hidden;

      & .core-media-image {
        line-height: 0;
        position: relative;

        & img {
          width: 100%;
          height: auto;
        }
      }

      & .core-feature-box-overlay {
        position: absolute;
        background: #000000;
        opacity: 0.01;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        transition: opacity 300ms;
        -moz-transition: opacity 300ms;
        -o-transition: opacity 300ms;
        -webkit-transition: opacity 300ms;
      }

      &:hover {
        & .core-feature-box-overlay {
          opacity: 0.4;
        }

        & .core-feature-content .core-hide-content {
          max-height: 250px;
        }
      }

      & .core-feature-content {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        padding-right: 50px;
        padding-bottom: 40px;
        padding-left: 55px;

        & .core-number {
          width: 100%;
          color: #a5a5a5;
          font-size: 13px;
          font-weight: 500;
          letter-spacing: 0px;
          text-transform: none;
        }

        & .core-title {
          font-size: 27px;
          font-weight: 600;
          letter-spacing: 0px;
          text-transform: none;
          line-height: 38px;
          margin-bottom: 18px;
          display: inline-block;
          color: #fff;
          padding-bottom: 10px;
          border-bottom-width: 1px;
          border-bottom-style: solid;
          border-color: var(--cor-fundo);
        }

        & .core-hide-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 550ms ease-out;
          -webkit-transition: max-height 550ms ease-out;
          -moz-transition: max-height 550ms ease-out;

          & p {
            color: #fff;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0px;
            text-transform: none;
          }

          & a {
            color: var(--cor-fundo);
            font-weight: bold;
          }
        }
      }
    }
  }
}

#essencia-da-eagle {
  padding-top: 50px;

  & #svg-eagle {
    background: var(--bg-eagle-flying);
    background-size: cover;
    background-position: center;
    height: auto;
    display: block;
    margin-left: -130px;
    width: calc(100% + 130px);
    height: 100%;
    max-height: 580px;
    transition: background-position 0.4s ease-in-out;

    @media only screen and (max-width: 1280px) {
      position: sticky;
      top: 20px;
      margin-left: 0;
      width: 100%;
    }

    &:hover {
      transition: background-position 0.4s ease-in-out;
      background-position: right;

      & text {
        transition: font-size .4s ease-in;
        font-size: 300px;
      }

      & .cls-2 {
        transition: fill 0.6s ease-in-out;
        fill: var(--cor-fundo);
        opacity: 0.95;
      }
    }

    & text {
      font-size: 10px;
      transition: font-size .4s ease-out;
      font-weight: 900;
      font-family: arial;
    }

    & #rect-eagle {
      opacity: 0.9;
      fill: var(--cor-fundo);
    }

    & .cls-1 {
      fill: transparent;
    }

    & .cls-2 {
      fill: transparent;
    }
  }

  & #box-quem-somos {
    padding: 40px 0px 0px 80px;
    height: auto;

    & p {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0px;
      text-transform: none;
      color: #6d6a6a;
      padding-bottom: 20px;
    }

    & ul {
      list-style: none;
      padding: 0 0 10px 0;
      margin: 20px 0 0 0;

      & li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: #000;
        font-size: 16px;
        line-height: 1.5;
      }
    }

    & .icone-check-circle {
      color: var(--cor-fundo);
      width: 19px;
      height: 19px;
      display: inline-block;
      margin-right: 10px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    & .core-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0px;
      color: #1d1d1d;
      text-transform: none;
      border-bottom: 3px solid #d8d8d8;
      margin-bottom: 40px;
      height: 55px;

      & a svg {
        color: var(--cor-fundo);
      }

      &:hover {
        color: var(--cor-fundo);
      }
    }

    @media only screen and (max-width: 600px) {
      padding: 20px 0px 0px 20px;
    }
  }
}

#essencia-da-eagle-novo {
  padding: 100px 0;
  /* background-color: #000000; */

  & .essencia-header {
    margin-bottom: 40px;

    @media only screen and (max-width: 768px) {
      margin-bottom: 30px;
    }
  }

  & .essencia-titulo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* color: #ffffff; */
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-right: 200px;

    @media only screen and (max-width: 1200px) {
      padding-right: 150px;
    }

    @media only screen and (max-width: 968px) {
      font-size: 36px;
      padding-right: 100px;
    }

    @media only screen and (max-width: 768px) {
      font-size: 28px;
      padding-right: 0;
      display: block;
    }

    & .essencia-eagle {
      color: var(--cor-fundo);
    }

    & .essencia-shape {
      position: absolute;
      right: -180px;
      top: 50%;
      transform: translateY(-50%);
      width: 200px;
      height: 60px;
      background: var(--cor-fundo);
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
      z-index: -1;

      @media only screen and (max-width: 1200px) {
        right: -130px;
        width: 150px;
        height: 50px;
      }

      @media only screen and (max-width: 968px) {
        right: -80px;
        width: 100px;
        height: 40px;
      }

      @media only screen and (max-width: 768px) {
        display: none;
      }
    }
  }

  & .essencia-texto {
    margin-bottom: 60px;
    max-width: 900px;

    @media only screen and (max-width: 768px) {
      margin-bottom: 40px;
    }

    & p {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.8;
      /* color: #ffffff; */
      margin-bottom: 20px;

      @media only screen and (max-width: 768px) {
        font-size: 16px;
        margin-bottom: 15px;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  & .essencia-imagens-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;

    @media only screen and (max-width: 968px) {
      grid-template-columns: repeat(3, 1fr);
    }

    @media only screen and (max-width: 600px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media only screen and (max-width: 420px) {
      grid-template-columns: 1fr;
      gap: 0;
    }

    & .essencia-imagem-item {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 75%;
      overflow: hidden;

      /* Primeira e última imagem encostam nas laterais */
      &:first-child {
        margin-left: 0;
      }

      &:last-child {
        margin-right: 0;
      }

      @media only screen and (max-width: 968px) {
        padding-bottom: 70%;
      }

      @media only screen and (max-width: 600px) {
        padding-bottom: 65%;
      }

      @media only screen and (max-width: 420px) {
        padding-bottom: 60%;
      }

      & img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;

        &:hover {
          transform: scale(1.05);
        }
      }
    }
  }
}

/* ============================================
   Estilos Comuns para Seções MVV
   ============================================ */
.mvv-section {
  padding: 100px 0;
  background-image: var(--bg-secao1);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  & .suptitulo {
    width: fit-content;
    margin: 0 auto 5px auto;
  }

  & .titulo {
    text-align: center;
  }

  & p {
    text-align: center;
  }

  & h4 {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cor-fundo);
    margin-bottom: 5px;
    line-height: 1;
    display: block;
    margin-bottom: 15px;

    & .circle-icon {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--cor-fundo);
      margin-right: 10px;
    }
  }

  & .mvv-texto {
    color: #6d6a6a;
    font-size: 16px;
    text-align: left;
  }
}

/* ============================================
   Layout em Timeline Vertical (Opção 2)
   ============================================ */
.mvv-layout-2 {
  & .mvv-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 40px;

    &::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--cor-fundo), rgba(182, 115, 40, 0.3));
    }

    @media only screen and (max-width: 768px) {
      padding-left: 30px;
    }
  }

  & .mvv-timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;

    @media only screen and (max-width: 768px) {
      padding-left: 30px;
    }

    @media only screen and (max-width: 420px) {
      padding-left: 10px;
    }

    &:last-child {
      margin-bottom: 0;
    }
  }

  & .mvv-timeline-marker {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cor-fundo);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(182, 115, 40, 0.2);
    transition: all 0.3s ease;

    @media only screen and (max-width: 768px) {
      left: -22px;
      width: 16px;
      height: 16px;
    }
  }

  & .mvv-timeline-item:hover .mvv-timeline-marker,
  & .mvv-timeline-item.in-view .mvv-timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(182, 115, 40, 0.1);
  }

  & .mvv-timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      transform: translateX(10px);
    }

    & h4 {
      margin-bottom: 15px;
    }

    & .mvv-texto {
      line-height: 1.8;
    }

    & .mvv-valor-item {
      margin-bottom: 12px;
      padding-left: 20px;
      position: relative;

      &::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--cor-fundo);
        font-weight: bold;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  & .mvv-timeline-item.in-view .mvv-timeline-content {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
  }
}

#nossos-numeros {
  padding: 110px 0px 120px 0px;
  background-image: var(--bg-counter);
  background-size: cover;
  background-position: center;

  & .core-numbers {
    padding-left: 20px;
    padding-right: 20px;

    & .titulo {
      font-size: 45px;
      font-weight: 500;
      letter-spacing: 0px;
      text-transform: none;
      color: #ffffff;
    }

    & .core-number-item {
      display: inline-block;
      width: 33.33%;

      @media only screen and (max-width: 600px) {
        width: 100%;
      }


      & .numero {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 0px;
        color: #fff;
      }

      & h3 {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        color: var(--cor-fundo);
      }

      & .barra {
        padding-top: 50px;
        max-width: 110px;
        margin-left: 0px;
        margin-right: auto;

        & .bar {
          background-color: var(--cor-fundo);
          height: 6px;
        }
      }
    }
  }

  & #list-numbers {
    display: flex;
    justify-content: space-between;
    width: 100%;

    @media only screen and (max-width: 600px) {
      flex-direction: column;
    }
  }
}

#produtos-e-servicos {
  padding: 100px 0;
  /* background-color: #1f1e1f; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;

  & .suptitulo {
    width: fit-content;
    margin: 0 auto 5px auto;
    color: #b67328;
    border-left-color: #b67328;
  }

  & .titulo {
    text-align: center;
  }

  & .produtos-texto {
    text-align: center;
  }

  & #produtos-e-servicos-list .coluna {
    padding: 20px;

    @media only screen and (max-width: 600px) {
      margin-left: 30px;
    }

    @media only screen and (max-width: 420px) {
      margin-left: 10px;
    }
  }

  & #produtos-e-servicos-list .coluna:last-child {
    @media only screen and (max-width: 420px) {
      margin-top: 30px;
    }
  }

  & .produto-wrapper {
    border-left: 1px solid var(--cor-cinza);
    padding-left: 20px;

    & .empty-space {
      height: 50px;
    }

    &.mt {
      margin-top: 50px;
    }

    & .produto-icon {
      & img {
        width: 100px;
        height: auto;
        -webkit-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
      }

      &.top {
        position: absolute;
        margin-top: -50px;
        margin-left: -30px;
      }

      &.down {
        position: absolute;
        margin-top: -50px;
        margin-left: -30px;
      }
    }

    & .produto-titulo {
      margin-top: 20px;
      color: #b67328;
      font-weight: 700;
    }

    & .produto-descricao {
      font-size: 14px;
      color: #6d6a6a;
    }
  }
}

#blog {
  margin-top: 100px;
  margin-bottom: 100px;

  & #link-cases-container {
    text-align: right;
    padding-top: 40px;

    @media only screen and (max-width: 600px) {
      padding-top: 0px;
      padding-bottom: 20px;
    }
  }

  & #link-cases:hover {
    color: var(--cor-fundo);
  }

  & .swiper {
    width: 100%;
    height: 100%;

    & .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 383px;
      min-height: 500px;
      padding: 10px;

      & img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      & .core-card-blog-link {
        display: block;
        width: 100%;
        height: 100%;
      }

      & .core-card-blog {
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 383px;
        padding: 20px;

        & .core-card-blog-content {
          display: flex;
          align-items: center;
          justify-content: center;
          left: 18px;
          top: 18px;
          right: 18px;
          bottom: 18px;
          text-align: center;
          opacity: 0;
          width: 100%;
          height: 100%;
          transition: all 0.5s ease;
        }

        &:hover .core-card-blog-content {
          background-color: rgba(0, 0, 0, 0.6);
          opacity: 1;
        }

        & .core-card-blog-title {
          font-size: 20px;
          font-weight: 600;
          letter-spacing: 0px;
          text-transform: none;
          color: #ffffff;
        }
      }

      & .core-card-blog-overlay {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.06);
        -moz-box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.06);
        -webkit-box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.06);
        background-color: #ffffff;
        padding: 18px 28px;
        left: 10px;
        bottom: 0px;
        position: absolute;
        width: 90%;
        min-height: 166px;
        text-align: left;
        margin-bottom: 50px;

        & h3 {
          color: #1e1e1e;
          font-size: 22px;
          font-weight: 700;
          margin-bottom: 5px;
          text-transform: none;
          text-align: left;
        }

        & a {
          color: var(--cor-fundo);
          margin-top: 10px;
          font-size: 17px;
          font-weight: 600;
        }
      }
    }

    & .swiper-pagination {
      margin-bottom: 0px;

      & .swiper-pagination-bullet {
        height: 12px;
        width: 12px;
        background-color: rgba(0, 0, 0, 0.8);

        &.swiper-pagination-bullet-active {
          height: 12px;
          background-color: var(--cor-fundo);
        }
      }
    }
  }
}

#clientes-e-parceiros {
  margin-top: 100px;

  & .img-parceiros {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
  }
}

#depoimentos {
  margin-top: 100px;
  background-color: #f3f3f3;
  padding: 100px 0;
  display: none;

  & .aspas {
    font-size: 150px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #cfcfcf;
  }

  & .depoimento-texto {
    position: relative;
    margin-top: -100px;
  }

  & .nome-cliente {
    color: var(--cor-fundo);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  & .cargo-cliente {
    color: #848484;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0px;
  }
}

#time-eagle {
  padding: 100px 0;
  background-color: #1f1e1f;
  background-image: var(--bg-secao4);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;

  & .suptitulo {
    margin-top: 100px;
    color: #b67328;
    border-left-color: #b67328;
  }

  & .titulo {
    color: #fff;
  }

  & p {
    color: #fff;
    width: 90%;
  }

  & img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

#redes-sociais {
  padding: 100px 10px;
}

#pre-section-sky {
  height: 10vh;
  background: linear-gradient(to bottom, #fff, #215d91, #215d91);
}

#cta {
  height: 100vh;

  & div {
    position: relative;
  }

  & main {
    position: relative;
    background: #fff;
    width: 100%;
    /* max-width:1200px; */
    height: 100vh;
    /* margin-bottom: 300px; */
    /* height:100%; */
    /* top:0;
    left:50%;
    transform: translateX(-50%); */
  }

  & .scrollDist {
    position: absolute;
    width: 100%;
    height: 1000px;
    margin-top: 200px;
  }

  & .texto-cta {
    font-size: 50px;
    font-weight: 700;
    font-family: arial;
    transition: font-size .4s ease-out;
  }

  & .eagle-cta {
    position: absolute;
    object-fit: cover;
    z-index: 0;
    bottom: 100px;
    width: 500px;
    margin-left: 100px;
  }
}

@media only screen and (max-width: 770px) {
  #cta{
    height: 70vh;
  }
  #cta .eagle-cta {
    bottom: initial;
    top: 100px;
  }
}

@media only screen and (max-width: 600px) {
  #cta .eagle-cta {
    margin: 10%;
  }
}

#contato {
  padding: 0 0 100px 0;
  /* background-color: #f8f9fa; */
  position: relative;

  & .contato-header {
    text-align: center;
    margin-bottom: 60px;

    & .suptitulo {
      width: fit-content;
      margin: 0 auto 10px auto;
      color: #b67328;
      border-left-color: #b67328;
    }

    & .titulo {
      color: #1f1e1f;
      margin-bottom: 20px;
    }

    & .contato-descricao {
      font-size: 18px;
      color: #6d6a6a;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
  }

  & .contato-form-wrapper {
    margin: 0 auto;
  }

  /* ============================================
     Layout em Duas Colunas (Compacto)
     ============================================ */
  & .contato-opcao-2 {
    & .contato-form {
      position: relative;
      margin-top: -250px;
      background: #ffffff;
      padding: 50px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

      @media only screen and (max-width: 768px) {
        padding: 30px 20px;
      }

      & .two.fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;

        @media only screen and (max-width: 768px) {
          grid-template-columns: 1fr;
        }
      }

      & .field {
        margin-bottom: 25px;

        & label {
          display: block;
          font-size: 14px;
          font-weight: 600;
          color: #1f1e1f;
          margin-bottom: 8px;
          text-transform: uppercase;
          letter-spacing: 0.5px;

          & .required {
            color: #e74c3c;
            margin-left: 2px;
          }
        }

        & input[type="text"],
        & input[type="email"],
        & input[type="tel"],
        & textarea {
          width: 100%;
          padding: 14px 18px;
          font-size: 16px;
          border: 2px solid #e0e0e0;
          border-radius: 8px;
          background: #ffffff;
          color: #1f1e1f;
          transition: all 0.3s ease;
          font-family: inherit;

          &:focus {
            outline: none;
            border-color: #b67328;
            box-shadow: 0 0 0 3px rgba(182, 115, 40, 0.1);
          }

          &::placeholder {
            color: #9e9e9e;
          }
        }

        & textarea {
          resize: vertical;
          min-height: 120px;
          font-family: inherit;
        }
      }

      & .core-button {
        margin-top: 10px;
        margin-bottom: 0;

        & button {
          background-color: var(--cor-fundo);
          border-radius: 33px;
          color: #ffffff;
          display: inline-block;
          font-size: 16px;
          font-weight: 700;
          height: 52px;
          letter-spacing: 0px;
          line-height: 1.7;
          padding: 3px 33px 3px 33px;
          text-align: center;
          text-transform: none;
          transition: all 0.3s ease;

          & i {
            color: var(--cor-fundo);
          }

          &:hover {
            letter-spacing: 1px;

            & i {
              transform: translateX(5px);
            }
          }
        }
      }
    }
  }

  @media only screen and (max-width: 768px) {
    & .contato-opcao-2 {
      & .contato-form {
        margin-top: 0px;
      }
    }
  }

  @media only screen and (max-width: 600px) {
    .contato-form-wrapper {
      margin: 0;
    }
  }
}
