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

:root {
  --white: #fff;
  --black: #333;
  --black-bg: #0a0a0a;
  --gray: #e8e8e8;
  --custom-primary: #0a0a0a;
  --custom-secundary: #333;
}

body {
  font-family: "interstate", sans-serif;
}

h1 {
  color: var(--white);
  font-size: 44px;
  line-height: 64px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

h2 {
  color: var(--black);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
}

section {
  padding: 130px 10px;
}

.btn-custom-primary {
  background-color: var(--custom-secundary);
  border-color: var(--custom-secundary);
  color: var(--white);
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: var(--white) !important;
  filter: brightness(0.9) !important;
}

.bt a {
  display: blcok;
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 42px;
  border: 2px solid var(--black);
  border-radius: 50px;
  background-color: transparent;
  width: fit-content;
  transition: all 0.3s ease-out;
}

.bt a:hover {
  color: var(--white);
  background-color: var(--black);
}

/*  gambirra */
#mobile {
  display: none;
}

#desktop {
  display: block;
}

@media (max-width: 1024px) {
  #mobile {
    display: block;
  }

  #desktop {
    display: none;
  }
}

/*  end gambirra */

.navbar {
  padding: 1rem 0;
  background-color: var(--black-bg);
  transition: background-color 0.3s ease;
}

.logo {
  min-width: 100px;
  min-height: 40px;
}

.navbar-nav {
  margin-left: 2rem;
  gap: 24px;
}

.navbar-nav .nav-link {
  color: #E0E0E0;
  font-size: 18px;
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FFFFFF;
}

.navbar-actions {
  gap: 12px;
}

.btn-nav-primary {
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-nav-primary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-nav-primary.contact {
  background-color: var(--white);
  color: var(--black-bg);
  border-color: var(--white);
}

.btn-nav-primary.contact:hover {
  background-color: transparent;
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero-section {
  padding: 200px 0px 150px 0px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(-45deg,
      #050505,
      #0a0a0a,
      #1a1a1a,
      #0a0a0a);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.0rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  max-width: 700px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 90%;
  color: var(--gray);
}

.hero-content p.highlight {
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--white);
  padding: 0.2em 0.4em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  line-height: 1.4;
}

.btn-primary {
  background: var(--custom-primary);
  color: var(--white) !important;
  text-transform: uppercase;
  border: 2px solid var(--white) !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--white) !important;
  color: var(--custom-primary) !important;
  border: 2px solid var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
  height: 400px;
  max-width: 700px;
  margin-left: auto;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-container:hover {
  transform: perspective(1000px) rotateY(0);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.3));
  border-radius: 20px;
}

/* cases */
.cases {
  position: relative;
  overflow: hidden;
  background-color: var(--black-bg);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;

  .title {

    h2 {
      color: var(--white);
      text-transform: lowercase;

      span {
        display: block;
        font-size: 54px;
        font-weight: 900;
        text-transform: uppercase;
      }
    }

    p {
      padding: 0px 300px;
    }
  }
}

.Cases {

  .swiper {
    padding: 20px 0 50px !important;
  }

  .swiper-slide {
    height: auto;
    padding: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .swiper-slide-active {
    opacity: 1;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: var(--white) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 20px !important;
    font-weight: bold;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: rgba(43, 42, 42, 0.2);
    transform: scale(1.1);
  }

  .box-case {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;

    .box-case-video {
      width: 100%;

      iframe {
        width: 660px;
        height: 415px;
      }
    }

    .box-case-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-direction: column;
      text-align: center;

      h2,
      h3 {
        color: var(--white);
        font-weight: 700;
        text-transform: uppercase;
      }

      h2 {
        font-size: 20px;
        border: 2px solid var(--white);
        padding: 14px;
      }

      h3 {
        font-size: 18px;
        border-bottom: 2px solid var(--white);
        padding-bottom: 32px;
      }

      p {
        color: var(--white);
      }
    }
  }
}

.slide-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.splide__arrow {
  z-index: 50;
}

.video-column {
  flex: 1 1 60%;
}

.text-column {
  flex: 1 1 40%;
}

.video-column img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.splide__video {
  padding-bottom: 0 !important;
  height: 100%;
}

.splide__video iframe {
  width: 100%;
  height: 100%;
}

.text-column .productName {
  border: 2px solid #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.text-column .clientName {
  margin-bottom: 2rem;
  font-weight: bold;
}

.text-column .clientName::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin-top: 2rem;
}

.text-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

/* end cases */

/* clientes */
.clientes {
  background-color: var(--gray);
  padding-bottom: 40px;

  .title {
    h2 {
      font-size: 44px;
      font-weight: 900;
    }
  }
}

.Clientes {

  .box-clientes {
    display: grid;
    place-items: center;
    padding: 12px;
  }
}

#porqueAntidoto {
  border: none;
  border-radius: 20px;
  background-color: var(--black-bg);
  padding: 64px;

  .content {
    color: var(--white);

    h2 {
      color: var(--white);
      font-size: 30px;
      font-weight: 900;

      .enhance {
        color: var(--black-bg);
        font-weight: 900;
        background-color: var(--white);
        padding: 0.1em 0.4em;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        display: inline;
        line-height: 1.4;
      }
    }
  }
}

#rowCardsDiferenciaisOne,
#rowCardsDiferenciaisTwo {
  margin-bottom: 32px;

  .box-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: none;
    border-radius: 8px;
    background-color: var(--white);
    padding: 12px;
    height: 220px;

    .box-cards-icon {
      display: grid;
      place-items: center;
      width: 100%;
      border-right: 3px solid var(--gray);

      img {
        width: 120px;
      }
    }
  }
}

#rowCardsDiferenciaisTwo {
  padding-bottom: 140px;
  border-bottom: 3px solid var(--black-bg);
}

/* end clientes */

/* depoimentos */
.depoimentos {
  background-color: #f4f2f5;
  padding: 10px 10px 50px 10px;

  .content {

    h2 {
      font-weight: 900;
    }
  }
}

.Depoimentos {

  padding: 24px 44px;

  .swiper-button-prev,
  .swiper-button-next {
    color: var(--black-bg);
  }

  .box-testimonials {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }

  .box-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .box-name {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .user-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #ccc;
  }

  .box-name h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  .rating-stars {
    list-style: none;
    display: flex;
    gap: none;
    padding: 2px;
    background-color: var(--black-bg);
    border-radius: 20px;
    margin: 0;
  }

  .rating-stars li i {
    color: var(--black-bg);
    font-size: 14px;
    color: var(--white);
    padding: 4px 1px;
  }

  .box-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0;
  }

  .box-quote {
    text-align: right;
  }

  .box-quote img {
    width: 24px;
    opacity: 0.3;
  }

}

/* end depoimentos */

/* contact */
.contact {
  background-color: #020202;
}

.contact .col-xl-6 {
  display: grid;
  place-items: center;
}

.formulario {
  border: none;
  border-radius: 18px;
  background-color: var(--white);
  padding: 62px 24px;
  width: 75%;
}

.formulario p {
  color: var(--black);
  font-size: 28px;
  font-weight: 700;
}

.contact .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact .content {
  img {
    width: 50px;
  }

  h2,
  p {
    color: var(--white);
  }

  p {
    font-size: 18px;
    padding-right: 180px;
  }
}

/* end contact */

/* o que é a antidoto */
.antidoto {
  padding: 80px 0;
  background-color: #E5E4E7;
}

.antidoto .content {
  font-size: 16px;
  line-height: 1.7;
}

.titulo-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 38px;
  font-weight: 900;
  color: #bdbdbd;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-right: 0px;
}

.antidoto .content h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}

.antidoto .content p {
  margin-bottom: 16px;
}

.img-antidoto {
  display: grid;
  place-items: center;
}

/* end o que é a antidoto */

/* solucoes */
.solucoes {
  color: var(--white);
  background-color: #000;
}

.solucoes .content {
  padding-right: 100px;

  h2 {
    color: var(--white);
    font-size: 46px;
    font-weight: 900;
    padding-right: 90px;
  }

  p {
    padding-right: 90px;
  }

  span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
  }
}

.box-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;

  .box-img {
    display: grid;
    place-items: center;
  }

  .box-img img {
    max-width: 100%;
    width: 100%;
  }

  .box-title h3 {
    color: var(--white);
    text-transform: uppercase;
    border: 2px solid var(--white);
    padding: 14px;
  }

  .box-text {
    padding: 6px 100px 6px 100px;
  }
}

/* end solucoes */

/* beneficios */
.benef {
  background-color: #E5E4E7;
}

.benef .img-benef {
  display: grid;
  place-items: center;

  img {
    max-width: 100%;
    width: 80%;
  }
}

.benef .content {
  h2 {
    font-size: 36px;
    font-weight: 900;
  }

  p>strong {
    font-size: 22px;
  }

  p {
    font-size: 18px;
  }
}

#benefCards {
  margin-top: 82px;
}

.benef .box {
  color: var(--black);
  border: none;
  border-radius: 8px;
  background-color: var(--white);
  padding: 24px;
  height: 120px;

  p {
    border-left: 4px solid var(--black);
    padding-left: 12px;
  }
}

/*end  beneficios */

/* porque escolher */
.porque {
  background-color: #E5E4E7;

  .title>h2 {
    font-weight: 900;
  }

  .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    border: none;
    border-radius: 8px;
    background-color: var(--white);
    padding: 24px;
    height: 480px;

    img {
      max-width: 100%;
      width: 140px;
    }
  }
}

/* end porque escolher */

/* cta */
.cta {
  background-image: url('../images/banner-antidotodesign-entre-em-contato.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 10px;
}

.cta-content {
  h2 {
    font-size: 46px;
    font-weight: 900;
  }

  .bt {
    display: grid;
    place-items: center;

    a {
      color: var(--white);
      font-size: 22px;
      border: 2px solid var(--white);
    }
  }
}

/* end cta */

/* clientes */
.clientes {
  background-color: #F3F2F4;
}

/* end clientes */

/* fale conosco */
#faleConosco {
  background-image: url('../images/banner-antidotodesign-transforme-sua-experiencia-digital.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 270px 10px;
}

#faleConosco .content {
  h2 {
    font-size: 54px;
    font-weight: 900;
  }

  p {
    font-size: 20px;
  }

  .bt a {
    font-size: 20px;
    font-weight: 700;
  }
}

/* end fale conosco */

/* footer */
footer {
  color: var(--white);
  background-color: var(--custom-primary);
  width: 100%;
}

footer ul li {
  padding-left: 0px !important;
}

footer span {
  color: var(--white);
  padding-left: 14px;
}

.footer-link {
  text-decoration: none;
}

#footer_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 20px 0px 50px;
}

.footer-logo img {
  max-width: 100%;
  width: 220px;
}

#footer_social_media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  #footer_social_media {
    align-items: left;
    justify-content: left;
  }
}

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
  color: var(--white);
  background-color: var(--custom-secundary);
  border: 2px solid var(--white);
}

#footer_social_media .footer-link i {
  font-size: 1.25rem;
}

#instagram,
#facebook,
#whatsapp-footer {
  background-color: transparent;
}

#contacts li i {
  color: var(--white);
  font-size: 16px;
  padding-right: 4px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-list h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 24px;
  gap: 100px;
}

.footer-list .footer-link {
  color: var(--white);
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.footer-list .footer-link:hover {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}

#footer_copyright {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  #footer_content {
    text-align: left;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 450px) {
  #footer_content {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
}

/* end footer */

/* === Responsivo para notebooks (≤1024px) === */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  section {
    padding: 100px 20px;
  }

  .hero-section {
    padding: 130px 10px;
    text-align: center;
  }

  .formulario {
    width: 90%;
    padding: 48px 20px;
  }

  .solucoes .content {
    padding-right: 0;
    text-align: center;
  }

  .box-slide .box-text {
    padding: 0 30px;
  }

  .benef .box {
    height: auto;
    padding: 20px;
  }

  .porque .box {
    height: auto;
  }

  .cta-content h2 {
    font-size: 36px;
    text-align: center;
  }

  .cta-content .bt {
    margin-top: 20px;
  }

  #faleConosco {
    padding: 180px 20px;
    text-align: center;
  }

  #faleConosco .content h2 {
    font-size: 40px;
  }

  #faleConosco .content p {
    font-size: 18px;
  }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 100%;
}

/* === Responsivo para tablets (≤768px) === */
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    line-height: 36px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  section {
    padding: 72px 10px;
  }

  .navbar-nav {
    margin-left: 0px;
  }

  .navbar-actions {
    flex-direction: column;

    a {
      text-align: center;
      width: 100%;
    }
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .video-container {
    height: 300px;
    margin-top: 32px;
  }

  .cases {

    .title {

      h2 {
        font-size: 34px;
      }

      p {
        padding: 10px;
      }
    }
  }

  .Cases {

    .box-case {
      flex-direction: column;
      padding: 10px;

      .box-case-video {
        width: 100%;

        iframe {
          width: 100%;
          height: 315px;
        }
      }
    }
  }

  .slide-wrapper {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
  }

  .video-column,
  .text-column {
    flex-basis: 100%;
    width: 100%;
  }

  .text-column {
    text-align: center;
  }

  .text-column .productName {
    margin-left: auto;
    margin-right: auto;
  }

  .text-column .clientName::after {
    margin-left: auto;
    margin-right: auto;
  }

  #porqueAntidoto {
    padding: 10px;

    img {
      margin-bottom: 32px;
    }
  }

  #rowCardsDiferenciaisOne,
  #rowCardsDiferenciaisTwo {

    .col {
      flex: 0 0 100%;
      margin-bottom: 32px;
    }
  }

  .Depoimentos {

    .box-testimonials {
      max-width: 100%;
      width: 100%;
    }
  }

  .formulario {
    width: 100%;
    margin-bottom: 32px;
  }

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

  .contact .content p {
    padding-right: 0;
    font-size: 16px;
  }

  .bt a {
    display: block;
    font-size: 16px;
    padding: 6px 24px;
    width: 100%;
  }

  .logo {
    width: 160px;
  }

  .navbar .nav-link {
    font-size: 16px;
  }
}

/* === Responsivo para celulares (≤480px) === */
@media (max-width: 480px) {
  h1 {
    font-size: 38px;
    line-height: 36px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  section {
    padding: 72px 10px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
    margin: 50px 0px 50px 0px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .video-container {
    height: 250px;
  }

  .cases {

    .title {

      h2 {
        font-size: 34px;
      }

      p {
        padding: 10px;
      }
    }
  }

  .Cases {

    .box-case {
      flex-direction: column;
      padding: 10px;

      .box-case-video {
        width: 100%;

        iframe {
          width: 100%;
          height: 315px;
        }
      }
    }
  }

  #porqueAntidoto {
    padding: 10px;

    img {
      margin-bottom: 32px;
    }
  }

  #rowCardsDiferenciaisOne,
  #rowCardsDiferenciaisTwo {

    .col {
      flex: 0 0 100%;
      margin-bottom: 32px;
    }
  }

  .depoimentos {

    .content {

      h2 {
        font-size: 28px;
        text-align: center;
      }
    }
  }

  .formulario {
    width: 100%;
    margin-bottom: 32px;
  }

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

  .contact .content p {
    padding-right: 0;
    font-size: 16px;
  }

  .bt a {
    display: block;
    font-size: 16px;
    padding: 6px 24px;
    width: 100%;
  }

  .logo {
    width: 160px;
  }

  .navbar .nav-link {
    font-size: 16px;
  }
}