/* Theme author: Publi */

:root {
  --primary-color: #f0530d;
  --primary-light: #fd7401;
  --white-text: #fff;
  --primary-text: #1a2b49;
  --darkblue: #1a2b49;
  --transition: all 0.3s ease;
  --light-gray: #f8f9fb;
  --border-color: #e3e6ec;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  display: inline-block;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  width: 100%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}

ul {
  list-style: none;
}

ol {
  padding-left: 1.5rem;
}

.top-strip {
  width: 100%;
  height: 62px;
  background-color: var(--primary-color);
  color: var(--white-text);
  padding: 0 1rem;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 200;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  a {
    color: var(--white-text);
    text-decoration: underline;
    margin-left: 12px;
    font-weight: 300;
  }
}

.center-content {
  width: 100%;
  margin: 0 auto;
  /* max-width: 1600px; */
  display: block;

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

  @media screen and (min-width: 1024px) {
    max-width: 990px;
  }
  @media screen and (min-width: 1366px) {
    max-width: 1200px;
  }
  @media screen and (min-width: 1440px) {
    max-width: 1300px;
  }
  @media screen and (min-width: 1600px) {
    max-width: 1400px;
  }
  @media screen and (min-width: 1920px) {
    max-width: 1660px;
  }
}

/* header + nav */
.header {
  height: 142px;

  @media screen and (max-width: 1024px) {
    height: auto;
    text-align: center;
  }

  .center-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    /* max-width: 1400px; */
    margin-bottom: 2rem;
    @media screen and (max-width: 1024px) {
      background-color: #f9f9f9;
      grid-template-columns: auto auto;
      height: auto;
      max-width: 100%;
      text-align: center;
      padding: 2rem;
      justify-content: space-between;
    }
    .btn {
      margin: 0 auto;
    }
  }

  .show-mobile-menu,
  .close-mobile-menu {
    font-size: 2rem;
    color: var(--primary-color);
    display: none;
    @media screen and (max-width: 1024px) {
      display: block;
    }
  }
  .close-mobile-menu {
    display: none;
    @media screen and (max-width: 1024px) {
      display: block;
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 100;
    }
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 1024px) {
      flex-direction: column;
      gap: 1rem;
      position: fixed;
      z-index: 100;
      background-color: #fff;
      top: 0;
      width: 100%;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 0;

      transition: var(--transition);

      opacity: 0;
      /* width: 0; */
      height: 0;
      overflow: hidden;
      visibility: hidden;

      &.active {
        opacity: 1;
        height: 100%;
        visibility: visible;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
      }
    }
  }

  nav {
    flex: 1;
    padding: 0 3rem;
    @media screen and (max-width: 1024px) {
      padding: 1rem 2rem;
      flex: 0 0 auto;
      width: 100%;
    }
    ul {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      @media screen and (max-width: 1024px) {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
      }
    }
    a {
      color: var(--primary-text);
      text-decoration: none;
      font-size: large;
      font-weight: 500;

      @media screen and (max-width: 1024px) {
        display: block;
        padding: 1rem;
      }

      &:hover {
        text-decoration: underline;
      }
    }
  }
  .cta-button {
    max-width: 322px;
    padding: 0 1.5rem;
  }
}

/* hero */
.hero-section,
.blog-section {
  .center-content {
  }
  .hero-section__container,
  .blog-section__container {
    display: flex;
    gap: 3rem;
    align-items: center;
    @media screen and (max-width: 1024px) {
      flex-direction: column;
      padding: 0 2rem 1rem 2rem;
      align-items: flex-start;
    }
  }
  .hero-section__content,
  .blog-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    @media screen and (max-width: 1024px) {
      gap: 2rem;
    }
  }
  .hero-section__tag,
  .blog-section__tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light-gray);
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    span {
      font-weight: 600;
    }
    a {
      text-decoration: none;
      color: var(--primary-text);
      &:hover {
        text-decoration: underline;
      }
    }
  }
  .blog-section__tag {
    align-self: center;
  }
  .hero-section__title,
  .blog-section__title {
    color: var(--primary-text);
    font-size: 68px;
    font-weight: bold;
    line-height: 1.1;
    @media screen and (max-width: 768px) {
      font-size: 48px;
    }
  }

  .hero-section__description,
  .blog-section__description {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-text);
    line-height: 1.5;

    .blog-section__subtitle {
      color: var(--primary-color);
      display: block;
      font-size: 32px;
      font-weight: 700;
    }
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-size: 18px;
      font-weight: 400;
      display: inline;
    }
    a {
      color: var(--primary-color);
      text-decoration: underline;
    }
    img {
      max-width: 100%;
      height: auto;
      /* object-fit: cover; */
      display: block;
      margin: 0 auto;
      border-radius: 12px;
    }
  }
  .hero-section__cta,
  .blog-section__cta {
  }
  .hero-section__image {
    flex: 1;
    margin-bottom: 2rem;
    @media screen and (max-width: 768px) {
      margin-top: 1rem;
      margin-bottom: 0;
    }
    img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }
  }

  .hero-section__phrase {
    padding: 1.2rem 2rem;
    background: var(--light-gray);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 200px;
    color: var(--primary-text);

    @media screen and (max-width: 768px) {
      font-size: 1rem;
      max-width: 100%;
    }
  }

  &.single {
    .hero-section__content {
      align-items: center;
    }
    .blog-section__content {
      align-items: flex-start;
    }
    .hero-section__title,
    .blog-section__title,
    .hero-section__description {
      text-align: center;
    }
    .blog-section__description {
      text-align: left;
    }
  }
}

/* marquee */
.hero-section__marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff;
  max-width: 700px;

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

.marquee-container {
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  gap: 20px;

  @media screen and (max-width: 600px) {
    max-width: 380px;
    animation: marquee 10s linear infinite;
  }
  @media screen and (max-width: 400px) {
    max-width: 280px;
    animation: marquee 5s linear infinite;
  }
  @media screen and (max-width: 320px) {
    max-width: 220px;
    animation: marquee 3s linear infinite;
  }
}

.marquee-item {
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  padding: 7px 12px;
  border: solid 1px #e3e6ec;
  border-radius: 4px;
  color: var(--primary-text);
}

/* Esmaecimento nas laterais */
.hero-section__marquee::before,
.hero-section__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-section__marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.hero-section__marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

/* Animação */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* why-us */
.why-us-section {
  margin-top: 90px;
  width: 100%;
  background: var(--light-gray);
  padding: 90px 0;

  @media screen and (max-width: 1024px) {
    padding: 2rem 0;
    margin-top: 2rem;
  }
  .center-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
    @media screen and (max-width: 1024px) {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
    }
  }
  .why-us-section__video-container {
    flex: 1;
    .why-us-section__video-wrapper {
      position: relative;
      width: 100%;
      height: auto;
      max-width: 478px;
      margin: 0 auto;
      background-color: #eee;
      z-index: 1;
      cursor: pointer;

      .video-square {
        width: 224px;
        height: 224px;
        background-color: #fff;
        position: absolute;
        bottom: 150px;
        left: -112px;
        display: block;
        z-index: 0;
      }

      .video-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
        transition: var(--transition);
        display: none;
        &.active {
          display: block;
        }
      }

      &:hover {
        .video-mask {
          background: rgba(0, 0, 0, 0.5);
        }
      }
      video {
        width: 100%;
        height: auto;
        object-fit: cover;
        position: relative;
        transition: var(--transition);
        transform: scale(1);
        background-color: #f5f5f5;
        /* &:hover {
          transform: scale(1.05);
        } */
      }

      &:hover {
        /* video {
          transform: scale(1.05);
        } */
      }
      .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 100px;
        height: 100px;
        z-index: 10;
        display: block;
        cursor: pointer;

        display: none;
        &.active {
          display: block;
        }

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

      .video-art {
        position: absolute;
        top: 6rem;
        right: -83px;
        z-index: -1;
        transition: all 0.9s ease-in-out;
      }

      &:hover {
        .video-art {
          transform: translateY(-10px);
        }
      }
    }
    overflow: hidden;
    position: relative;
  }
  .why-us-section__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
    @media screen and (max-width: 768px) {
      gap: 1rem;
    }
    li {
      padding: 1.7rem;
      border: solid 1px #e3e6ec;
      background: var(--white-text);
      transition: var(--transition);
      color: var(--primary-text);
      &:hover {
        transform: translateX(10px);
      }
      span {
        font-weight: 600;
      }
    }
  }
  .why-us-section__text-container {
    flex: 1;
    .why-us-section__title {
      @media screen and (max-width: 1024px) {
        font-size: 48px;
        line-height: 1.2;
      }
    }
  }
}

/* portfolio */
.portfolio-section {
  padding: 90px;
  background-color: var(--primary-color);

  @media screen and (max-width: 1024px) {
    padding: 2rem;
  }

  .portfolio-section__title {
    color: var(--white-text);
  }
  .portfolio-section__description {
    color: var(--white-text);
    font-size: 1.125rem;
    font-weight: 300;
  }
  .center-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .portfolio-section__logos-container {
    display: flex;
    /* gap: 165px; */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
    @media screen and (max-width: 1024px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      align-items: center;
      justify-content: center;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
    }
  }
}

/* testimonials */
.testimonials-section {
  margin-top: 90px;
  @media screen and (max-width: 1024px) {
    margin-top: 2rem;
  }
  .center-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 1024px) {
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
    }
  }
  .testimonials-section__text {
    flex: 1;
  }
  .testimonials-section__testimonials {
    flex: 1;
  }
  .testimonials-section__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 4rem;
    @media screen and (max-width: 1024px) {
      gap: 2rem;
    }
  }

  .testimonial-row {
    /* display: flex;
    align-items: center; */
    display: grid;
    /* grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto; */
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-flow: dense; */
    gap: 2rem;

    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: masonry; */

    @media screen and (max-width: 1024px) {
      flex-direction: column;
      gap: 2rem;
    }

    &.start {
      align-items: flex-start;
    }
  }
  .testimonials-art {
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .testimonial-item {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 1rem;
    transition: all 0.5s ease-in-out;
    height: auto;
    min-width: 100%;

    &:hover {
      background-color: rgb(246, 246, 247);
    }

    /* &.first {
      animation: float2 5s ease-in-out infinite;
    }

    &.second {
      animation: float1 3s ease-in-out infinite;
    }

    &.third {
      animation: float1 3s ease-in-out infinite;
    }
    &.fourth {
      animation: float2 5s ease-in-out infinite;
    } */

    @media screen and (min-width: 1024px) {
      /* padding: 40px; */
    }
    /* @media screen and (min-width: 1690px) {
      padding: 60px;
    } */

    .testimonial-item__content {
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--primary-text);
      line-height: 1.6;
    }
    .testimonial-item__author {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--primary-text);
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: solid 1px #e3e6ec;
    }
  }

  .testimonial-row__content:nth-child(1),
  .testimonial-row__content:nth-child(2) {
    transform: translateX(40px);
    @media screen and (max-width: 900px) {
      transform: none;
    }
  }
  .testimonial-row__content:nth-child(4) {
    transform: translate(40px, 0px);
    /* transform: translateX(40px); */
    @media screen and (max-width: 900px) {
      transform: none;
    }
  }
  .testimonial-row__content:nth-child(5) {
    transform: translate(40px, -50px);
    /* transform: translateX(40px); */
    @media screen and (min-width: 1800px) {
      transform: translate(40px, -10px);
    }
    @media screen and (max-width: 900px) {
      transform: none;
    }
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* services */
.services-section {
  background-color: var(--primary-color);
  padding: 90px 0;
  margin-top: 90px;
  &.light {
    background-color: #f8f9fb;
  }
  @media screen and (max-width: 768px) {
    padding: 2rem;
    margin-top: 2rem;
  }
  .center-content {
    /* display: flex;
    align-items: flex-start; */
    gap: 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    @media screen and (max-width: 1024px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width: 767px) {
      flex-direction: column;
      gap: 2rem;
      display: flex;
    }
  }
  .services-section__card {
    padding: 30px;
    border-radius: 12px;
    background-color: var(--white-text);
    flex: 1;
    transition: var(--transition);
    text-decoration: none;
    &:hover {
      transform: translateY(-5px);
    }
  }
  .services-section__card-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
  }
  .services-section__card-title {
    font-size: 40px;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 700;
    min-height: 98px;
  }
  &.light {
    .services-section__card-title {
      height: auto;
      min-height: auto;
    }
  }
  .services-section__card-description {
    font-size: 1.125rem;
    color: var(--primary-text);
    font-weight: 300;
    line-height: 1.5;
  }
}

.grid-container {
  display: grid;
  /* grid-auto-rows: 50px; */
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

[short] {
  grid-row: span 1; /* 5 */
  /* background-color: green; */
}

[tall] {
  grid-row: span 2;
  /* background-color: crimson; */
}

[taller] {
  grid-row: span 3;
  /* background-color: blue; */
}

[tallest] {
  grid-row: span 4;
  /* background-color: gray; */
}

/* news */
.news-section {
  padding: 90px 0;
  @media screen and (max-width: 768px) {
    padding: 2rem;
  }
  .center-content {
  }
  .news-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 44px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .news-section__header-title {
    flex: 1;
  }
  .news-section__items {
    display: grid;
    /* flex-wrap: wrap; */
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    grid-template-columns: repeat(3, 1fr);

    @media screen and (max-width: 1024px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width: 767px) {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .news-section__item {
    border: solid 1px var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    &:hover {
      transform: translateY(-5px);
    }
  }
  .news-section__item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .news-section__item-description {
    padding: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* steps */
.section-steps {
  padding: 90px 0 0;
  @media screen and (max-width: 768px) {
    padding: 2rem 0 0;
  }
  .center-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    @media screen and (max-width: 768px) {
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .btn {
      /* margin-top: 90px; */
      align-self: center;
    }
  }

  .section-steps__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    background-color: #ccc;
    padding: 2rem;
    border-radius: 12px;

    position: relative;

    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;

    /* Respeita usuários com redução de movimento */
    @media (prefers-reduced-motion: reduce) {
      transition: none;
      transform: none;
      opacity: 1;
    }

    &.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* create a wide down arrow to put in each box */
    &::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      z-index: -1;
      border-left: 120px solid transparent; /* Adjust for desired width */
      border-right: 120px solid transparent; /* Adjust for desired width */
      border-top: 60px solid black; /* Adjust for desired height and color */
    }

    &:nth-child(1) {
      background-color: #5687dc;
      &::after {
        border-top-color: #5687dc;
      }
    }
    &:nth-child(2) {
      background-color: #4268ab;
      &::after {
        border-top-color: #4268ab;
      }
    }
    &:nth-child(3) {
      background-color: #2b4676;
      &::after {
        border-top-color: #2b4676;
      }
    }
    &:nth-child(4) {
      background-color: #1a2b49;
      &::after {
        display: none;
      }
    }
  }
  .section-steps__item-title {
    color: var(--white-text);
    font-size: 36px;
    font-weight: 600;
  }
  .section-steps__item-description {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-text);
  }

  .steps-footer {
    margin-top: 90px;
    text-align: center;
    gap: 3rem;
    @media screen and (max-width: 768px) {
      margin-top: 2rem;
    }
    .steps-footer__title {
      margin-top: 0;
    }
  }
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 0;

  @media screen and (max-width: 768px) {
    padding: 2rem 0;
  }
}

/* benefits */
.benefits-section {
  padding: 90px 0 0;

  .center-content {
    @media screen and (max-width: 768px) {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  .benefits-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 2;
    gap: 1.5rem;

    @media screen and (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width: 480px) {
      grid-template-columns: 1fr;
    }
    .benefits-section__item {
      display: flex;
      gap: 2rem;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      border: solid 1px var(--border-color);
      border-radius: 12px;
      transition: var(--transition);

      @media screen and (max-width: 480px) {
        flex-direction: column;
      }
      &:hover {
        transform: translateY(-10px);
      }
      .grid-item__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .benefits-section__icon {
        img {
          max-width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }
      }
      .benefits-section__title {
        display: block;
        color: var(--primary-text);
        font-weight: 600;
        @media screen and (max-width: 480px) {
          text-align: center;
        }
      }
      .benefits-section__description {
        @media screen and (max-width: 480px) {
          text-align: center;
        }
      }
    }
  }
}

/* featured */
.featured-content {
  padding: 90px;
  background-color: var(--light-gray);
  margin-top: 90px;
  @media screen and (max-width: 768px) {
    padding: 2rem;
    margin-top: 2rem;
  }
  .featured-content__title {
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--white-text);

    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: 12px;
  }
}

/* footer */
.footer {
  width: 100%;
  background-color: var(--darkblue);
  padding: 90px 0 80px 0;
  @media screen and (max-width: 768px) {
    padding: 4rem 2rem;
  }
  .footer-logo {
    @media screen and (max-width: 768px) {
      max-width: 100px;
    }
  }
  .footer__col {
    /* border: solid 1px red; */
    &:first-child {
      flex: 0 0 auto;
    }
    &:nth-child(2) {
      flex: 1;
    }
    &:nth-child(3) {
      flex: 1;
    }
  }
  .footer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    @media screen and (max-width: 768px) {
      /* gap: 1rem; */
    }
    li {
      font-size: 18px;
      font-weight: 200;
      color: #fff;
      &:first-child {
        margin-bottom: 1rem;
        font-weight: 500;
      }
      a {
        color: #fff;
        text-decoration: none;
        transition: var(--transition);
        &:hover {
          opacity: 0.8;
        }
      }
    }
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-text);
  }
  .footer-text {
    font-size: 18px;
    font-weight: 200;
    color: var(--white-text);
    line-height: 1.7;
  }
  .center-content {
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    gap: 160px;
    @media screen and (max-width: 768px) {
      gap: 4rem;
      flex-direction: column;
    }
  }
}

.footer-copyright {
  width: 100%;
  color: var(--white-text);
  font-size: 14px;
  font-weight: 200;
  margin-top: 90px;
  @media screen and (max-width: 480px) {
    margin-top: 2rem;
  }
  .center-content {
    flex-direction: row;
  }
  a {
    color: var(--white-text);
    font-size: 20px;
    transition: var(--transition);
    &:hover {
      transform: translateY(-5px);
    }
  }

  .center-content {
    display: flex;
    justify-content: space-between;
  }
}

.btn-back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  z-index: 1000;
  width: 4rem;
  height: 4rem;
  border: solid 1px var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* mix-blend-mode:; */
  img {
    transform: rotate(-90deg);
  }
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.whatsapp-float {
  bottom: 12rem;
  background-color: #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 5px 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Helpers */
.text-orange {
  color: var(--primary-color);
}

.btn {
  height: 52px;
  padding: 0 3rem;
  border-radius: 67px;
  display: inline-block;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 45px;

  transition: var(--transition);
  font-weight: 600;
  border: solid 1px transparent;

  &.has-icon {
    gap: 1rem;

    .icon-arrow path {
      transition: fill 0.3s ease;
      color: var(--primary-color);
    }

    .icon-arrow {
      transition: fill 0.3s ease;
    }

    &:hover {
      .icon-arrow path {
        color: var(--white-text);
        fill: var(--white-text);
      }
    }
  }

  &.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-text);

    &:hover {
      background-color: white;
      color: var(--primary-color);
      border-color: var(--primary-color);
    }
  }
  &.btn-nude {
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    &:hover {
      background-color: var(--primary-color);
      color: var(--white-text);
    }
  }
  &.btn-blue {
    background-color: var(--darkblue);
    color: var(--white-text);
    &:hover {
      opacity: 0.92;
    }
  }
}

.title-1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-text);

  @media screen and (max-width: 768px) {
    font-size: 48px;
    line-height: 1.2;
  }
}
.title-2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-text);

  &.text-orange {
    color: var(--primary-color);
  }
}

.title-3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-text);
}

.regular-text {
  font-size: 1.125rem;
  color: var(--primary-text);
  line-height: 1.5;
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 400;
    font-size: 1.125rem;
    display: inline;
  }
}

.text-bold {
  font-weight: 600;
}

.tac {
  text-align: center;
  display: inline-block;
}
