:root {
  --off-white: #faf9f6;
  --off-black: #333131;
  --accent-color: #00a859;
  --accent-color-light: #02bf67;
  --blue-color: #17155e;
  --blue-color-light: #2a2784;
  --bg-light: #faf9f6;

  --border-radius: 1.5rem;

  --transition: all 0.3s ease-in-out;
  --section-spacing: 7.5rem;
  --site-width: 1350px;
  --gap: 1.5rem;
  --spacing: 1.5rem;
  --base-spacing: 0.5rem;
  --padding: 45px;

  @media screen and (max-width: 1024px) {
    --section-spacing: 5rem;
  }
}

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

button {
  background-color: transparent;
  cursor: pointer;
  border: none;
}

html {
  line-height: 1.5;
  tab-size: 4;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}
body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  border: none;
  outline: none;
}

body {
  margin: 0;
  background-color: #fff;
  overflow-x: hidden;
}

.center-content {
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 1rem;

  @media screen and (min-width: 1200px) {
    padding: 0;
  }
}

.hero,
.hero-single {
  width: 100%;
  position: relative;

  height: 776px;

  .hero__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;

    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 0%,
      black 50%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 0%,
      black 50%,
      transparent 100%
    );
  }

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

  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .center-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 60px;
    max-width: 800px;
    flex: 1;

    &.about {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      width: 100%;
      max-width: 100%;
      @media screen and (max-width: 768px) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
      }
      .hero-title,
      .hero-text {
        flex: 1;
      }
    }
  }
  .hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.1;

    .light {
      display: block;
      font-weight: 100;
    }
  }
  .hero-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--off-white);
  }
  .hero-btn {
    font-size: 16px;
  }
}

.hero-single {
  height: auto;

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 0;
    padding-bottom: 0;
  }
  .hero-title {
    font-size: 3.25rem;
    color: var(--off-black);
  }
  .hero-text {
    font-size: 1rem;
    color: var(--off-black);
  }
}

header {
  --glass-blur: 3px;
  --glass-bg: rgba(
    255,
    255,
    255,
    0.45
  ); /* branco translúcido (ajuste a opacidade) */
  --glass-border: rgba(255, 255, 255, 0.3);

  display: flex;
  gap: var(--spacing);
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing);
  border-radius: var(--border-radius);

  background-color: rgba(255, 255, 255, 0.1);
  height: 100px;
  padding: 0 45px;
  margin-top: var(--spacing);

  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%); /* Safari */
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;

  /* open menu */
  .open-menu {
    display: none;

    img {
      max-width: 2rem;
    }

    @media screen and (max-width: 768px) {
      display: block;
    }
  }
  /* ----------- */

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

  @media screen and (max-width: 768px) {
    padding: 1rem;
    /* height: 100%; */
    /* margin: 1rem; */

    &.visible {
      height: 100%;
      background-color: #fff;
      backdrop-filter: unset;
      /* transition: all 0.1s ease; */
    }
  }

  /* close */
  .close-menu,
  .close-submenu {
    display: none;
    img {
      max-width: 2rem;
    }
    @media screen and (max-width: 768px) {
      display: block;
      position: absolute;
      top: 2rem;
      right: 1rem;
    }
  }

  nav {
    height: 100%;
    flex: 1;
    gap: var(--spacing);
    @media screen and (max-width: 768px) {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1000;
      background-color: #fff;
      flex-direction: column;
      justify-content: flex-start;
      gap: 3rem;
      width: 0;
      height: 0;
      overflow: hidden;
      padding: 0;
      z-index: 1000;

      transition: all 0.1s ease-in-out;

      &.visible {
        padding: 1rem;
        padding-top: 2rem;
        width: 100%;
        height: 100%;
        z-index: 1000;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        background-color: rgba(250, 249, 246, 0.7);
      }
    }
    ul {
      height: 100%;
      display: flex;
      gap: var(--spacing);
      align-items: center;
      justify-content: center;

      @media screen and (max-width: 768px) {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        gap: 3rem;
        padding-top: 5rem;
      }
      li {
        height: 100%;
        @media screen and (max-width: 768px) {
          height: auto;
        }
        a {
          transition: var(--transition);
          font-weight: 400;
          font-size: 1rem;
          color: var(--off-white);
          text-decoration: none;

          height: 100%;
          display: flex;
          align-items: center;

          &:hover {
            color: var(--accent-color);
          }

          @media screen and (max-width: 768px) {
            color: var(--off-black);
          }
        }

        &.has-submenu {
          position: relative;
          z-index: 1000;
          ul {
            width: 300px;
            position: absolute;
            display: none;
            top: 100%;
            left: 0;
            height: auto;
            gap: 0;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            border-radius: var(--spacing);
            background-color: var(--off-white);
            overflow: hidden;

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

            li {
              width: 100%;
              a {
                transition: var(--transition);
                width: 100%;
                display: block;
                color: var(--off-black);
                padding: 1rem;
                height: auto;

                @media screen and (max-width: 768px) {
                  text-align: center;
                }
                &:hover {
                  background-color: var(--accent-color);
                  color: var(--off-white);

                  @media screen and (max-width: 768px) {
                    background: none;
                    color: var(--accent-color);
                  }
                }
              }
            }

            @media screen and (max-width: 768px) {
              position: fixed;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              width: 0%;
              height: 0%;
              overflow: hidden;
              align-items: center;
              justify-content: flex-start;
              padding-top: 5rem;

              transition: all 0.1s ease-in-out;

              &.visible {
                width: 100%;
                height: 100%;
                overflow: visible;
                display: block;
              }
            }
          }
          &:hover {
            > ul {
              display: flex;

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

        .btn {
          display: none;
          @media screen and (max-width: 768px) {
            display: block;
          }
        }
      }
    }
  }
  .btn {
    min-width: 200px;
    text-align: center;
    font-weight: 400;
    padding: 0.8rem 2rem;

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

.about-quads {
  display: flex;
  gap: 1.5rem;
  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
  .about-quad:nth-child(1) {
    order: 1;
    flex: 1;
    @media screen and (max-width: 768px) {
    }
  }
  .about-quad:nth-child(2) {
    order: 2;
    flex: 1.5;
    @media screen and (max-width: 768px) {
      flex: 1;
    }
  }

  img {
    border-radius: 1.5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 477px;
    @media screen and (max-width: 768px) {
      max-height: 300px;
    }
  }
}

.about-disclaimer {
  width: 100%;
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
  font-size: 34px;
  color: var(--off-black);
  font-weight: 100;
  line-height: 1.5;
  max-width: 900px;

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

.commitment-section {
  display: flex;
  width: 100%;
  gap: var(--padding);
  justify-content: space-between;
  height: 400px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    height: auto;
  }
  .commitment-section__content,
  .commitment-section__image {
    flex: 1;
  }
  .commitment-section__content {
    height: 100%;
    border-radius: 1.5rem;
    color: var(--off-black);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--padding);
    .commitment-section__title {
      font-size: 34px;
      font-weight: 500;
    }
    .commitment-section__text {
      font-size: 1rem;
      font-weight: 100;
      line-height: 1.5;
    }
  }
  .commitment-section__image {
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.why-choose-us-section {
  width: 100%;
  display: flex;
  gap: var(--spacing);
  margin-top: 110px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
  .why-choose-us-section__content {
    flex: 1;
    padding: var(--padding);
    background-color: var(--blue-color);
    color: var(--off-white);
    display: flex;
    gap: var(--spacing);
    border-radius: var(--gap);
    flex-direction: column;
  }
  .why-choose-us-section__content-title {
    font-size: 38px;
    color: var(--off-white);
    font-weight: 700;
    line-height: 1.1;
  }
  .why-choose-us-section__content-list {
    ul {
      display: flex;
      gap: 2rem;
      flex-direction: column;

      transition: opacity 0.3s ease-in-out;

      &:hover {
        li {
          opacity: 0.5;
        }
        li:hover {
          opacity: 1;
        }
      }
    }

    li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;

      transition: opacity 0.3s ease-in-out;

      .list-ico-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .list-title {
        font-size: 22px;
        color: var(--off-white);
        font-weight: 600;
        line-height: 1.1;
      }
      .list-ico {
      }
      .list-text {
        font-size: 1rem;
        font-weight: 100;
        line-height: 1.5;
      }
    }
  }
  .why-choose-us-section__image {
    flex: 0.5;
    border-radius: 1.5rem;
    overflow: hidden;
    @media screen and (max-width: 768px) {
      flex: 1;
      height: 300px;
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      @media screen and (max-width: 768px) {
        max-height: 300px;
      }
    }
  }
}

.form-quads {
  display: flex;
  gap: 45px;
  align-items: flex-start;

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

  .form-quads__content {
    flex: 1;
    padding: var(--padding);
    background-color: #fafafa;
    border-radius: var(--spacing);
    display: flex;
    gap: var(--spacing);
    flex-direction: column;

    .form-quads__content-title {
      font-size: 52px;
      color: var(--off-black);
      line-height: 1.1;
      .light {
        font-weight: 100;
        display: block;
      }
    }
    .form-quads__content-text {
      font-size: 1rem;
      line-height: 1.5;
      font-weight: 300;
    }
    .form-quads__content-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;

      @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
      }
    }
    .form-quads__content-grid__item {
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
      .contact-type {
        font-size: 1.125rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--off-black);
      }
      .contact-info {
        font-size: 1rem;
        font-weight: 300;
      }
    }
  }
  .form-quads__form {
    flex: 1;
    max-width: 100%;

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;

      .btn {
        min-width: 140px;
      }

      .form-group,
      .form-item {
        width: 100%;
      }

      .form-control {
        min-width: unset;
        width: 100%;
      }
      textarea {
        min-height: 200px;
      }
    }
  }
}

.hero-single {
  header {
    background-color: var(--off-white);
    li,
    li a {
      color: var(--off-black);
    }
  }
}

.below-hero-cta {
  padding: 52px 0;
  background-color: var(--off-white);
  .center-content {
    .buttons-container {
      display: flex;
      gap: 24px;
      justify-content: center;
      align-items: center;

      .btn {
        padding: 1.5rem 2rem;
        font-size: 20px;
        font-weight: 600;
      }

      @media screen and (max-width: 600px) {
        flex-direction: column;
        .btn {
          width: 100%;
          padding: 1.1rem 1.5rem;
        }
      }
    }
  }
}

.section-header {
  .center-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 600px) {
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }
  }

  .header-title {
    font-size: 38px;
    line-height: 1.1;
    color: var(--off-black);
    font-weight: 700;
    .light {
      display: block;
      font-weight: 100;
    }
  }
  .header-text {
    /* flex: 1; */
    max-width: 65%;
    font-size: 18px;
    color: var(--off-black);
    font-weight: 300;
  }

  &.centered .header-text {
    width: 100%;
    max-width: 100%;
  }
}

.services-section {
  margin: 110px auto;
}

body.single {
  .services-section {
    margin-top: 60px;
  }
}

.services-container {
  --slide-spacing: 1.5rem;
  --slide-size: 365px;

  margin-top: 45px;
  height: 475px;
  width: 100%;

  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 10%,
    black 90%,
    transparent 100%
  );
  /* -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 10%,
    black 90%,
    transparent 100%
  ); */

  position: relative;

  .nav-right,
  .nav-left {
    width: 50px;
    height: 50px;
    border: solid 1px var(--accent-color);
    display: block;
    z-index: 9;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.5);
    background-color: var(--off-white);
    padding: 0.5rem;
    border: solid 1px rgba(247, 247, 247, 0.4);
    cursor: pointer;
    img {
      width: 100%;
      height: auto;
    }
    transform: translateY(-50%);
    position: absolute;
    opacity: 0.8;
  }

  .nav-right {
    right: 5rem;
    top: 50%;
  }
  .nav-left {
    left: 5rem;
    top: 50%;
  }

  .services-container__track {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.service-card {
  height: 475px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  overflow: hidden;

  > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  margin-left: var(--slide-spacing);

  position: relative;
  z-index: 1;

  .card-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);

    transition: var(--transition);

    mask-image: linear-gradient(
      to top,
      transparent 0%,
      black 0%,
      black 70%,
      transparent 100%
    );
  }

  &:hover {
    opacity: 0.95;
    .card-mask {
      background-color: rgba(0, 0, 0, 0.6);
    }
  }
  .service-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    /* background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0) 100%
    ); */
  }
  .service-card__content--title {
    color: var(--off-white);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
  }
  .service-card__content--text {
    color: var(--off-white);
    font-size: 1rem;
    line-height: 1.5;
  }
}

.about-section {
  .center-content {
    display: flex;
    justify-content: space-between;
    gap: 45px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      justify-content: flex-start;
    }
  }
  .about-image {
    border-radius: var(--spacing);
  }
  .about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
    align-items: flex-start;
    .about-title {
      font-size: 38px;
      line-height: 1.1;
      color: var(--off-black);
      font-weight: 700;
      .light {
        display: block;
        font-weight: 100;
      }
    }
    .about-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      li {
        display: flex;
        gap: 1rem;
      }
    }
  }
}

.mid-cta {
  background-color: var(--blue-color);
  padding: 52px 0;
  margin-top: 110px;
  .mid-cta__header {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .mid-cta__title {
    color: var(--off-white);
    font-size: 38px;
    font-weight: 700;
  }
  .mid-cta__text {
    color: var(--off-white);
    font-weight: 300;
  }
  .mid-cta__icons {
    display: flex;
    gap: var(--spacing);
    justify-content: space-between;
    max-width: 80%;
    align-items: center;
    margin: 0 auto;
    margin-top: 45px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      max-width: 100%;
      /* justify-content: flex-start;
      align-items: flex-start; */
    }
  }
  .cta-icon__item {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--off-white);

    @media screen and (max-width: 768px) {
      width: 60%;
      gap: 1.5rem;
    }

    .cta__icon {
      padding: 0.8rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: var(--transition);
    }
    .cta__icon--content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      @media screen and (max-width: 768px) {
        align-items: flex-start;
      }
      .cta-icon__content--title {
        font-size: 64px;
        font-weight: 700;
        transition: var(--transition);
      }
      .cta-icon__content--text {
        font-size: 1rem;
        font-weight: 300;
        transition: var(--transition);
      }
    }

    &:hover {
      .cta-icon__content--title {
        transform: translateY(5px);
      }
      .cta-icon__content--text {
        transform: translateY(-3px);
      }
      .cta__icon {
        transform: translateY(-5px);
      }
    }
  }
}

.below-cta {
  background-color: var(--blue-color);
  padding: 110px 0;
  margin-top: 110px;

  .below-cta__header {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
    .btn {
      margin-top: 1rem;
      align-self: center;
    }
  }
  .below-cta__title {
    color: var(--off-white);
    font-size: 38px;
    font-weight: 700;
  }
  .below-cta__text {
    color: var(--off-white);
    font-weight: 300;
  }
}

body.single {
  .below-cta,
  .below-hero-cta {
    margin-top: 0;
  }
  .services-section {
  }
}

.breadcrumbs {
  margin-top: 45px;

  display: flex;
  gap: 0.5rem;
  align-items: center;
  /* justify-content: space-between; */
  li {
    font-size: 12px;
    a {
      color: var(--off-black);
      text-decoration: none;
      &:hover {
        color: var(--accent-color);
      }
    }
  }
}

.service-banner {
  height: 354px;
  border-radius: var(--spacing);
  overflow: hidden;

  margin: 60px auto;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.site-container {
  margin-top: 60px;
  margin-bottom: 110px;
  display: flex;
  gap: 45px;
  justify-content: space-between;

  @media screen and (max-width: 768px) {
    flex-direction: column-reverse;
  }
}
.services-sidebar {
  flex: 0 0 30%;
  background-color: var(--off-white);
  border-radius: var(--spacing);
  padding: 45px;
  .divider {
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 45px auto;
  }
}
.sidebar-header {
  font-size: 38px;
  font-weight: 700;
  color: var(--off-black);
  line-height: 1.1;
  .light {
    display: block;
    font-weight: 100;
  }
}

.services-sidebar__list {
  gap: 1rem;
  flex-direction: column;
  display: flex;
  li {
    a {
      display: block;
      color: var(--off-black);
      background-color: #eaeaea;
      text-decoration: none;
      padding: 0.8rem 1.7rem;
      display: block;
      text-align: center;
      border-radius: 50px;
      transition: var(--transition);
      font-weight: 300;

      &:hover {
        background-color: var(--accent-color);
        color: var(--off-white);
      }
    }
    &.active {
      a {
        background-color: var(--accent-color-light);
        color: var(--off-white);
      }
    }
  }
}

.main-content {
  flex: 1;
}

.medium-title {
  font-size: 38px;
  font-weight: 500;
  color: var(--off-black);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-content {
  font-size: 1rem;
  color: var(--off-black);
  line-height: 1.5;
  font-weight: 300;

  .service-content__mid-banner {
    border-radius: 1.5rem;
    display: block;
    margin: 1rem 0;
    max-width: 100%;
    height: 350px;
  }

  .service-content__list {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    li {
      display: flex;
      align-items: center;
    }

    &.with-marks li {
      &::before {
        content: '•';
        margin-right: 0.5rem;
      }
    }
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 300;
    display: inline;
  }
  a {
    color: var(--off-black);
    text-decoration: none;
    &:hover {
      color: var(--accent-color);
    }
  }
}

.office-section {
  padding: 110px;
  background-color: var(--off-white);
  @media screen and (max-width: 768px) {
    padding: 110px 1rem;
  }
  .center-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .office-section__content {
    display: flex;
    gap: 45px;
    align-items: flex-end;
    @media screen and (max-width: 768px) {
      flex-direction: column;
    }
  }
  .office-section-header {
    font-size: 38px;
    line-height: 1.1;
    color: var(--off-black);
    font-weight: 700;
    margin-bottom: 45px;
    .light {
      display: block;
      font-weight: 100;
    }
  }
  .office-section__text {
    font-size: 1rem;
    color: var(--off-black);
    font-weight: 400;
    /* max-width: 38%; */
    flex: 1;
    @media screen and (max-width: 768px) {
      max-width: 100%;
    }
    .office-section__items {
      gap: 1rem;
      display: flex;
      flex-direction: column;

      /* img, */
      iframe {
        border-radius: var(--border-radius);
        width: 100%;
        height: 380px;
        object-fit: cover;
        margin-top: var(--spacing);
      }
    }
    a {
      color: var(--off-black);
      text-decoration: none;
    }
    .office-section__text--item {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
  }
  .office-section__image {
    flex: 1;
    height: 380px;
    background-color: #aaa;
    border-radius: 1.5rem;
    margin-top: var(--spacing);

    img,
    iframe {
      display: block;
      border-radius: 1.5rem;
      width: 100%;
      height: auto;
      object-fit: cover;
      height: 380px;
    }
  }
}

.faq-section {
  margin-top: 110px;
  .center-content {
    display: flex;
    gap: 45px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
    }
  }
  .faq-image {
    flex: 1;

    img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 1.5rem;
    }
  }
  .faq-header {
    flex: 1;
    font-size: 38px;
    line-height: 1.2;
    color: var(--off-black);
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 40%;

    @media screen and (max-width: 768px) {
      max-width: 100%;
    }
    .light {
      display: block;
      font-weight: 100;
    }
  }
  .faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    .faq-items__item {
      display: flex;
      padding: 1.5rem;
      border-radius: 1.5rem;
      border: solid 1px rgba(0, 0, 0, 0.2);
      flex-direction: column;
      cursor: pointer;
      transition: var(--transition);

      &:hover,
      &.active {
        background-color: var(--off-white);
      }
      .faq-item__title {
        font-size: 1.5rem;
        color: var(--off-black);
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .faq-title__icon {
          transition: var(--transition);
        }
      }
      .faq-item__text {
        font-size: 1rem;
        font-weight: 200;
        line-height: 1.5rem;
        opacity: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
        transition: var(--transition);
        max-height: 0;
        visibility: hidden;
      }

      &.active {
        gap: 1rem;
        .faq-item__text {
          opacity: 1;
          height: auto;
          max-height: 1000px;
          visibility: visible;
        }
        .faq-item__title {
          .faq-title__icon {
            transform: rotate(180deg);
          }
        }
      }
    }
  }
}

.contact-form-section {
  padding: 110px 0;
  .section-header {
    margin-bottom: 45px;
    * {
      width: 100%;
      text-align: center;
    }
    .header-title {
      margin-bottom: 1rem;
    }
  }
}
.full-map {
  margin: 110px 0;
  max-width: 100%;
  border-radius: var(--spacing);
  iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--spacing);
    object-fit: cover;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--padding);

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  .blog-grid__item {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    transition: var(--transition);
    color: var(--off-black);
    text-decoration: none;

    &:hover {
      transform: translateY(-5px);
      opacity: 0.95;
    }
    .blog-grid__item-image {
      border-radius: var(--spacing);
      overflow: hidden;
      position: relative;
      height: 300px;

      @media screen and (max-width: 768px) {
        height: 200px;
      }
      .mask {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: rgba(0, 0, 0, 0.2);
        mask-image: linear-gradient(
          to top,
          transparent 0%,
          black 0%,
          black 50%,
          transparent 100%
        );
      }
      img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }
    .blog-grid__item-content {
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
      .blog-grid__item-title {
        font-size: 1.5rem;
        font-weight: 500;
      }
      .blog-grid__item-text {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 300;
      }
    }
  }
}

.blog-single-intro {
  margin: 60px auto;
  .center-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .blog-single-intro__title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .blog-single-intro__text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
  }
}

.blog-single-content {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  a:not(.btn) {
    color: var(--accent-color);
    text-decoration: none;
    &:hover {
      text-decoration: underline;
    }
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 1rem;
    font-weight: 400;
    display: inline;
  }
  img {
    border-radius: var(--spacing);
    max-width: 100%;
    display: block;
  }
}

.form-container__row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;

  .copy {
    font-size: 12px;
    opacity: 0.4;
    font-style: italic;
    padding-top: 1rem;
  }

  @media (max-width: 768px) {
    flex-direction: column;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  /* width: 100%; */

  label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--off-black);
  }
}
.form-control {
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  color: var(--off-black);
  outline: none;
  border: none;
  height: 62px;
  padding-left: 0.875rem;
  min-width: 460px;
  max-width: 100%;

  &::placeholder {
    color: #ccc;
    font-weight: 300;
  }
  &.ddd {
    min-width: 82px;
  }
  &.phone {
    min-width: 200px;
  }
}
.form-container__actions {
  margin-top: 2rem;

  @media screen and (max-width: 768px) {
    .btn {
      width: 100%;
    }
  }
}
.buttons-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  span,
  a {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--off-black);
    text-decoration: none;
    color: var(--off-black);
  }
}

/* Footer */
.footer {
  padding: 60px 0 0;
  /* margin-top: 110px; */
  background: var(--bg-light);
  img {
    display: block;
    margin-bottom: 1rem;
  }
  .center-content {
    display: flex;
    justify-content: space-between;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 3rem;
      align-items: flex-start;
      text-align: flex-start;
    }

    .footer-text {
      color: rgba(135, 131, 131, 0.7);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2;
    }

    .footer-col {
      flex: 0 0 auto;

      &.first {
        max-width: 25%;
        @media screen and (max-width: 768px) {
          max-width: 100%;
          text-align: center;
          img {
            display: block;
            margin: auto;
            margin-bottom: 1rem;
          }
        }
      }
      &.last {
        flex: 0 0 25%;
        @media screen and (max-width: 768px) {
          flex: 0 0 100%;
          width: 100%;
        }
      }
      ul {
        display: flex;
        gap: 10px;
        flex-direction: column;
      }
      ul li,
      a {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        color: rgba(135, 131, 131, 0.7);
      }
      ul li {
        display: flex;
        gap: 0.5rem;
        .footer-col__icon {
          max-width: 1.2rem;
          opacity: 0.7;
          img {
            width: 100%;
            margin: 0;
          }
        }

        &:first-child {
          font-weight: 600;
        }
        a {
          text-decoration: none;
          &:hover {
            color: var(--accent-color);
          }
        }
      }
    }

    .newsletter-form {
      display: flex;
      gap: 1rem;
      height: 52px;
      .btn {
        height: 100%;
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
      }
      input {
        height: 45px;
        flex: 1;
        border-radius: var(--border-radius);
        background-color: #ededed;
        padding-left: 12px;
        border: none;
        outline: none;
        height: 100%;
        font-family: 'Manrope', sans-serif;
      }
    }
  }
  .footer-bottom {
    color: rgba(135, 131, 131, 0.7);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2rem;
    border-top: solid 1px rgba(135, 131, 131, 0.1);
    padding-top: 2rem;
    .socials {
      display: flex;
      gap: 8px;
      justify-content: space-between;
      a {
        transition: var(--transition);
        &:hover {
          transform: translateY(-5px);
        }
      }
    }
    a {
      color: rgba(135, 131, 131, 0.7);
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
    .copy {
      width: 100%;
      text-align: center;
      padding: 0 1rem;
      padding: 1rem;
      background: #fff;
      opacity: 0.6;
    }
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  background-color: #444;
  color: var(--off-white);
  border-radius: 4rem;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.03rem;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;

  &.btn-accent {
    background-color: var(--accent-color);
    color: var(--off-white);
    /* text-transform: uppercase; */

    &:hover {
      background-color: var(--accent-color-light);
      color: var(--off-white);
    }
  }

  &.btn-blue {
    background-color: var(--blue-color);
    color: var(--off-white);
    &:hover {
      background-color: var(--blue-color-light);
    }
  }

  &.btn-nude-blue {
    background-color: var(--off-white);
    color: var(--blue-color);
    border: solid 1px var(--off-white);
    &:hover {
      background-color: var(--blue-color);
      color: var(--off-white);
    }
  }
}

.flex {
  display: flex;

  &.column {
    flex-direction: column;
  }

  .flex-1 {
    flex: 1;
  }
  .flex-auto {
    flex: auto;
  }
  .flex-initial {
    flex: 0 auto;
  }

  &.gap-1 {
    gap: var(--base-spacing);
  }
  &.gap-2 {
    gap: calc(var(--base-spacing) * 2);
  }
  &.gap-3 {
    gap: calc(var(--base-spacing) * 3);
  }
  &.gap-4 {
    gap: calc(var(--base-spacing) * 4);
  }
  &.gap-5 {
    gap: calc(var(--base-spacing) * 5);
  }
  &.justify-center {
    justify-content: center;
  }
  &.align-center {
    align-items: center;
  }
  &.align-start {
    align-items: flex-start;
  }
  &.align-end {
    align-items: flex-end;
  }
  &.justify-start {
    justify-content: flex-start;
  }
  &.justify-between {
    justify-content: space-between;
  }
  &.justify-around {
    justify-content: space-around;
  }
  &.justify-end {
    justify-content: flex-end;
  }
}

.w-10 {
  width: calc(10 * var(--base-spacing));
}
.w-15 {
  width: calc(15 * var(--base-spacing));
}
.w-20 {
  width: calc(20 * var(--base-spacing));
}
.w-30 {
  width: calc(30 * var(--base-spacing));
}
.w-40 {
  width: calc(40 * var(--base-spacing));
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  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;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@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 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;

  z-index: -1;

  &.visible {
    overflow: visible;
    display: flex;

    opacity: 1;
    z-index: 9999;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }

  .modal-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 45px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  p {
    text-align: center;
    display: block;
  }
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.min-100 {
  min-width: 100px;
}
