:root {
  --primary-color: #f37d3c;
  --primary-color-light: #ff9052;
  --primary-color-dark: #f37d3c;

  --primary-color-hover: #e26725;
  --dark-color: #151515;
  --text-color: rgba(21, 21, 21, 0.75);
  --white-color: #ffffff;

  --color-list-background: rgba(0, 0, 0, 0.49);
  --color-bor-input: rgba(20, 20, 20, 0.5);

  --font-family: "Inter", sans-serif;
  --font-family-headling: "Oswald", sans-serif;
  --font-family-manrope: "Manrope", sans-serif;

  --font-size: 18px;

  --transition-duration: 0.3s;
  --shadow-soft: 0 20px 48px rgba(12, 45, 78, 0.08);
  --radius-md: 16px;
  --radius-lg: 22px;
  --section-spacing: 100px 0 76px;
  --section-spacing-2: 80px 0;
  --bs-body-font-family: var(--font-family);
  --bs-body-font-size: var(--font-size);
  --bs-body-color: var(--text-color);
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: var(--text-color);
  font-size: var(--font-size);
  font-family: var(--font-family);
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--text-color);
  background-color: var(--white-color);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headling);
  margin: 0;
}

input,
label,
select,
textarea {
  font-family: "Open Sans", sans-serif;
  color: var(--dark-color);
  display: block;
  font-size: 14px !important;
  width: 100%;
  resize: none;
  font-weight: normal !important;
}

input,
textarea,
select {
  border: 1px solid var(--color-bor-input);
  color: var(--color-list-background);
  font-size: 14px;
  border-radius: 2px !important;
}

.form-label {
  font-size: 12px;
  margin-bottom: 4px;
}

.container {
  max-width: 1201px;
  width: 90%;
}

.btn {
  background: var(--primary-color);
  font-size: 14px;
  font-weight: bold;
  color: var(--white-color);
  border: 1px solid var(--primary-color-light);
  border-radius: 2px;
  padding: 16px;
  text-transform: uppercase;
  transition: all 0.7s;
  * {
    color: var(--white-color);
  }

  &:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-dark);
  }

  &.dark {
    background: transparent;
    border-color: var(--dark-color);
    color: var(--dark-color);
    * {
      color: var(--dark-color);
    }

    &:hover {
      background: var(--dark-color);
      color: var(--white-color);
      * {
        color: var(--white-color);
      }
    }
  }
}

.section-tag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  flex-shrink: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  @media (max-width: 900px) {
    font-size: 16px;
  }

  &::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
  }
}

.section-title {
  font-family: var(--font-family-headling);
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark-color);
  @media (max-width: 900px) {
    font-size: 28px;
  }
}

.badge-icon {
  width: 26px;
  height: 28px;

  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid var(--primary-color-light);
  font-size: 16px;
  border-radius: 2px;
  line-height: 1;

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

#header_principal {
  position: absolute;

  padding: 31px 37px;
  z-index: 10;

  .navbar {
    padding: 0;

    .container {
      max-width: 90%;
    }
  }

  .brand-placeholder {
    width: 80px;
    height: 48px;
    background: #d9d9d9;
    color: #6c757d;
    border-radius: 4px;
    font-size: 1.25rem;
  }

  .nav-link {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;

    &:hover,
    &:focus {
      color: var(--white-color);
    }
  }

  .btn {
    font-size: 12px;
  }

  .dropdown-menu {
    background-color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.08);
    z-index: 10;
  }

  .dropdown-item {
    color: var(--dark-color);
    font-size: 14px;
    &:hover {
      background: rgba(159, 157, 157, 0.08);
    }
  }

  @media (max-width: 991.98px) {
    padding: 16px 20px;

    .navbar {
      padding: 0;

      .container {
        max-width: 100%;
        gap: 12px;
        width: 100%;
      }
    }

    /* quadrado laranja do menu */
    .mobile-toggle {
      border: 0;
      padding: 0;
      background: transparent;
    }

    .mobile-toggle-icon {
      width: 42px;
      height: 42px;
      border-radius: 2px;
      background: var(--primary-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .mobile-toggle-icon span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
      display: block;
    }

    /* CTA mobile (dentro do menu) */
    .cta {
      font-size: 11px;
      padding: 10px 18px;
      border-radius: 2px;
      white-space: nowrap;

      i {
        font-size: 12px;
      }
    }

    /* MENU MOBILE */
    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      padding: 16px 24px 20px;
    }

    .navbar-nav {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 8px;
    }

    .nav-link {
      font-size: 14px;
      padding: 4px 0;
      color: #ffffff;

      &:hover,
      &:focus {
        color: #ffffff;
      }
    }

    .dropdown-menu {
      position: static;
      transform: none;
      box-shadow: none;
      margin-top: 4px;
      width: 100%;
      background: #ffffff;

      .dropdown-item {
        font-size: 14px;
      }
    }
  }
}

.highlight {
  position: relative;
  line-height: 1;
  display: inline-block;
  padding: 0 15px 0 5px;
  &:before {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    background: var(--primary-color);
    position: absolute;
    bottom: -10%;
    right: 0;
    z-index: -1;
  }
}

h1 {
  font-size: 52px;
  position: relative;
  margin-bottom: 17px;
  @media (max-width: 900px) {
    font-size: 26px;
  }
  .highlight {
    color: var(--white-color);
  }
  * {
    font-family: var(--font-family-headling);
  }
}

#hero-area {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 36.06%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    url(../../assets/img/bg.jpg) lightgray 50% / cover no-repeat;

  padding: 172px 0 123px !important;

  @media (max-width: 900px) {
    padding: 120px 0 80px !important;
  }

  .hero-badge {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 8px;
    align-items: center;
    .badge-title {
      color: var(--white-color);
      font-size: 12px;
    }
  }

  .lead {
    line-height: 1.4;
    max-width: 50ch;

    @media (max-width: 900px) {
      font-size: 16px;
    }
  }

  .seta {
    bottom: 3%;
    right: 13%;
    @media (max-width: 900px) {
      display: none;
    }
  }

  .hero-list {
    margin-bottom: 40px;
    max-width: 50ch;
    @media (max-width: 900px) {
      display: none;
    }
    .pill {
      background: var(--color-list-background);
      display: inline-flex;
      padding: 10px;
      gap: 8px;
      align-items: center;
      margin-bottom: 15px;
      color: var(--white-color);
      border-radius: 2px;
      font-size: 16px;
      border: 0.5px solid rgba(255, 255, 255, 0.25);
    }
  }

  @media (max-width: 900px) {
    .btn {
      margin-bottom: 56px;
    }
  }

  .form-card {
    background: var(--white-color);
    padding: 30px;
    max-width: 455px;
    width: 100%;
    border-radius: 2px;
    @media (max-width: 900px) {
      padding: 24px 16px;
    }
    h2 {
      font-family: var(--font-family-manrope);
      font-size: 28px;
      @media (max-width: 900px) {
        font-size: 22px;
      }
    }

    form {
      width: 100%;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;

      @media (max-width: 900px) {
        grid-template-columns: repeat(1, 1fr);

        .btn {
          margin-bottom: 0;
        }
      }
    }

    .col-md-6 {
      padding: 0;
      width: 100%;
    }
    .col-12 {
      grid-column: -1/1;
    }

    label {
      font-weight: 600;
      color: #25313a;
    }
  }
}

#benefits-section {
  padding: var(--section-spacing) 0;

  @media (max-width: 900px) {
    padding: 66px 0;
  }
  text-align: center;

  .benefits-icon-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .benefits-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -8px;
    overflow: hidden;
    border: 2px solid transparent;

    &.benefits-icon-center {
      width: 55px;
      height: 55px;
    }
  }

  .benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .benefits-icon-center {
    border: 1px solid var(--white-color);
    box-shadow: 0 0 0 1px var(--white-color);
    z-index: 1;
  }

  .benefits-heading {
    max-width: 700px;
    font-size: 32px;
    margin: 0 auto 59px auto;
    font-family: var(--font-family-headling);
    line-height: 1.2;
    color: var(--dark-color);
    font-weight: normal;

    @media (max-width: 900px) {
      font-size: 28px;
      margin-bottom: 50px;
    }
    b {
      color: var(--primary-color);
      font-size: 32px;
      font-family: var(--font-family-headling);
      font-weight: normal;
      @media (max-width: 900px) {
        font-size: 28px;
      }
    }
  }
  .text-highlight {
    color: var(--primary-color);
  }
  .benefits-row {
    margin-top: 10px;
  }
  .benefit-card {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }
  .benefit-title {
    position: relative;
    display: inline-block;
    font-family: var(--font-family-headling);
    font-size: 42px;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    @media (max-width: 900px) {
      font-size: 34px;
    }
    span {
      color: currentColor;
      font-size: 42px;
      font-family: var(--font-family-headling);
      color: var(--dark-color);
      @media (max-width: 900px) {
        font-size: 34px;
      }
    }
    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 20px;
      background: var(--primary-color);
      z-index: -1;
    }
  }

  .benefit-text {
    line-height: 1.5;
    color: var(--text-color);

    @media (max-width: 900px) {
      font-size: 16px;
    }
  }

  .col-md-4 {
    padding: 0;
  }

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#services {
  padding: var(--section-spacing-2);

  .container {
    max-width: 90%;
  }
  .section-services-header {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
  }

  .section-services-left {
    display: flex;
    align-items: self-start;
    gap: 53px;

    @media (max-width: 900px) {
      flex-direction: column;
      gap: 28px;
    }

    .section-title {
      max-width: 35ch;
    }
  }

  .header-cta-wrapper {
    flex-shrink: 0;
  }

  .services-grid {
    margin-top: 8px;
  }

  .service-card {
    background: var(--white-color);
    border: 1px solid rgba(21, 21, 21, 0.12);

    border-radius: 2px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    transition: all 0.7s;

    &:hover {
      border-color: var(--primary-color-light);
    }
  }

  .service-thumb {
    overflow: hidden;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }

  .service-title {
    font-family: var(--font-family-headling);
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 4px;
    font-family: var(--font-family);
    font-weight: 600;
  }

  .service-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .btn.btn-service {
    font-size: 10px;
    font-weight: bold;
    color: var(--white-color);
    background: var(--dark-color);
    max-width: 170px;
    i {
      font-size: 10px;
      color: var(--white-color);
    }

    &:hover {
      filter: brightness(90%);
    }
  }

  .col {
    @media (max-width: 900px) {
      padding: 0;
    }
    &:nth-child(even) {
      .btn {
        background: var(--primary-color);
        border-color: var(--primary-color-light);
      }
    }
  }

  .service-list {
    padding: 0;
    margin: 0 0 71px 0;

    li {
      display: grid;
      align-items: center;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 6px;
    }
  }

  .service-check {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    i {
      font-size: 9px;
      color: #ffffff;
    }
  }

  @media (max-width: 767.98px) {
    .section-services-header {
      flex-direction: column;
    }

    .section-title {
      font-size: 24px;
    }
  }
}

#cta-horizontal {
  .cta-box {
    background: linear-gradient(
        274deg,
        rgba(0, 0, 0, 0) -3.11%,
        rgba(0, 0, 0, 0.25) 23.83%,
        rgba(0, 0, 0, 0.5) 54.21%,
        rgba(0, 0, 0, 0.7) 98.75%
      ),
      url(../../assets/img/bg.jpg) lightgray 50% / cover no-repeat;

    padding: 48px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
  }

  @media (max-width: 900px) {
    .container {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
    }
  }

  background: #fafafa;
  box-shadow: 0 180px #fff inset;

  .service-title {
    color: var(--white-color);
    max-width: 20ch;
    margin-bottom: 12px;
  }

  .cta-text {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 28px;
    max-width: 27ch;
    line-height: 1.2;
  }

  @media (max-width: 991.98px) {
    .cta-box {
      grid-template-columns: 1fr;
      text-align: left;
      padding: 36px 28px;
    }
  }
}

#projects {
  padding: var(--section-spacing) 0;
  @media (max-width: 900px) {
    padding: 66px 0;
  }
  background: #fafafa;
  .container {
    max-width: 94%;
    padding: 0;
  }

  .col-lg-3.col-md-6,
  .col-lg-6.col-md-12 {
    margin: 0;
    padding: 0;
  }

  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
  }

  .service-title {
    margin-bottom: 7px;
  }

  .projects-text {
    line-height: 1.6;
    max-width: 520px;
  }

  .btn-ghost-dark {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    border-radius: 2px;
    font-size: 12px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;

    i {
      font-size: 11px;
    }

    &:hover {
      background: var(--dark-color);
      color: #ffffff;
    }
  }

  .projects-grid {
    margin-top: 8px;
  }

  .project-card {
    border-radius: 2px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  video {
    display: block;
    width: 100%;
    height: 350px;
    @media (max-width: 900px) {
      height: 190px;
    }
  }

  .project-name {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 7px;
  }

  .project-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-media {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 3px;

    img {
      height: 350px;
      object-fit: cover;
      object-position: center;
      @media (max-width: 900px) {
        height: 350px;
      }
    }
  }

  .project-card--featured .project-placeholder {
    aspect-ratio: 16 / 9;
  }

  .project-play {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);

    i {
      color: var(--primary-color);
      font-size: 18px;
      margin-left: 3px;
    }
  }

  .project-footer {
    margin-top: auto;
    padding-top: 8px;
  }

  .project-details-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 9px;
  }

  .project-details-items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-bottom: 24px;

    span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
    }

    i {
      font-size: 14px;
      color: var(--primary-color);
    }
  }

  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.7s;
    padding: 6px 3px;
    border-bottom: 1px solid var(--dark-color);

    i {
      transform: rotate(-45deg);
    }

    &:hover {
      color: var(--primary-color);
      border-color: var(--primary-color-dark);

      * {
        color: var(--primary-color);
      }
    }
  }

  @media (max-width: 991.98px) {
    .projects-header {
      flex-direction: column;
    }
  }

  @media (max-width: 767.98px) {
    .projects-title {
      font-size: 22px;
    }

    .project-card {
      padding: 16px;
    }
  }
}

#testimonials {
  padding: var(--section-spacing) 0;
  @media (max-width: 900px) {
    padding: 66px 0;
  }
  overflow-x: hidden;

  .testimonials-carousel {
    position: relative;
    mask-image: linear-gradient(to right, black 92%, transparent 100%);
  }

  .container {
    max-width: 90%;
  }

  .service-title {
    @media (max-width: 900px) {
      margin-bottom: 14px;
    }
  }

  .testimonials-intro {
    line-height: 1.6;
  }

  .rating-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 25px;
    min-height: 527px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;

    @media (max-width: 900px) {
      min-height: 465px;
    }
  }

  .rating-top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 40px;
  }

  .rating-avatars {
    display: flex;
    align-items: center;

    .avatar-circle {
      width: 57px;
      height: 57px;
      border-radius: 50%;
      overflow: hidden;
      background: #d3d3d3;
      border: 2px solid #ffffff;
      margin-right: -14px;
      position: relative;

      @media (max-width: 900px) {
        width: 45px;
        height: 45px;
      }

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

    .avatar-1 {
      z-index: 3;
    }

    .avatar-2 {
      z-index: 2;
    }

    .avatar-3 {
      z-index: 1;
    }
  }

  .rating-score {
    display: flex;
    gap: 10px;
  }

  @media (max-width: 900px) {
    .col-lg-6,
    .col-lg-8,
    .col-lg-4 {
      padding: 0;
    }
  }

  .rating-number {
    font-size: 48px;

    color: var(--dark-color);
    font-family: var(--font-family-headling);
    line-height: 1;

    @media (max-width: 900px) {
      font-size: 37px;
    }
  }

  .rating-stars {
    display: inline-flex;
    margin-right: 1px;
    line-height: 1;

    i {
      color: #ffb400;
      font-size: 12px;
      line-height: 1;
    }
  }

  .rating-label {
    display: block;
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1;
    @media (max-width: 900px) {
      font-size: 12px;
    }
  }

  .rating-bottom {
    margin-top: 12px;
  }

  .rating-percent {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-family-headling);
    margin-bottom: 4px;
  }

  .rating-highlight {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 9px;
    font-family: var(--font-family-headling);
    color: var(--dark-color);
    line-height: 1.2;
    @media (max-width: 900px) {
      font-size: 20px;
    }
  }

  .rating-text {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.3;
  }

  .testimonials-carousel {
    background: transparent;
  }

  .testimonials-swiper {
    padding-bottom: 0;
  }

  .testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 25px;
    border-radius: 2px;
    min-height: 445px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    &::after {
      content: url(../../assets/img/aspas.svg);
      position: absolute;
      z-index: -1;
      right: 26px;
      top: 40px;
    }
  }

  .testimonial-header {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    .testimonial-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      overflow: hidden;
      background: #d3d3d3;
      align-items: center;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    .testimonial-meta {
      display: grid;
    }

    .testimonial-name {
      font-family: var(--font-family);
      font-size: 20px;
      color: var(--dark-color);
      font-weight: bold;
    }
    .testimonial-location {
      font-size: 16px;
      margin-bottom: 0;
    }
  }

  .testimonial-stars {
    margin-bottom: 7px;

    i {
      color: #ffb400;
      font-size: 13px;
    }
  }

  .testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.4;
  }

  .testimonials-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 0 40px;

    @media (max-width: 900px) {
      padding: 0;
    }
  }

  .swiper {
    overflow: unset;
    .swiper-wrapper {
      padding-bottom: 50px;
    }
  }

  .testimonials-arrow {
    i {
      font-size: 30px;
      fill: rgba(21, 21, 21, 0.5);
    }
    border: none;
    position: relative;
    bottom: 20px;
    background: none;
    z-index: 100;
  }
  .testimonials-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0 0;
  }
  .testimonials-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 3px !important;
  }
  .testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
  }

  @media (max-width: 991.98px) {
    .rating-card {
      margin-bottom: 12px;
    }
  }

  @media (max-width: 767.98px) {
    .testimonials-title {
      font-size: 22px;
    }
  }
}

#cta-highlight {
  background: linear-gradient(
      274deg,
      rgba(255, 255, 255, 0) 36.39%,
      rgba(255, 255, 255, 0.2) 47.71%,
      rgba(255, 255, 255, 0.3) 53.37%,
      rgba(255, 255, 255, 0.35) 59.03%,
      rgba(255, 255, 255, 0.51) 70.59%,
      rgba(255, 255, 255, 0.59) 82.15%,
      rgba(255, 255, 255, 0.74) 105.26%
    ),
    url(../../assets/img/bg.jpg) lightgray 50% / cover no-repeat;

  padding: 113px 0;

  @media (max-width: 900px) {
    padding: 66px 0;

    .col-lg-5,
    .container {
      padding: 0;
    }
  }

  .section-tag {
    margin-bottom: 12px;
  }

  .service-title {
    font-family: var(--font-family-headling);
    color: var(--dark-color);
    margin-bottom: 22px;
  }

  /* botão outline escuro como no layout */
  .btn-ghost-dark {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    border-radius: 2px;
    font-size: 12px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    i {
      font-size: 11px;
    }

    &:hover {
      background: var(--dark-color);
      color: #ffffff;
    }
  }

  .cta-highlight-image {
    display: flex;
    justify-content: flex-end;
  }

  .placeholder-mock {
    width: 260px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #bdbdbd;
    position: relative;
    border-radius: 2px;
  }

  /* triangulo + “solzinho” só pra lembrar o mock */
  .placeholder-mock::before,
  .placeholder-mock::after {
    content: "";
    position: absolute;
  }

  .placeholder-mock::before {
    left: 22%;
    bottom: 18%;
    width: 45%;
    height: 55%;
    background: #a5a5a5;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }

  .placeholder-mock::after {
    right: 20%;
    top: 22%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #a5a5a5;
  }

  @media (max-width: 991.98px) {
    .cta-highlight-box {
      padding: 32px 24px;
    }

    .cta-highlight-image {
      justify-content: flex-start;
      margin-top: 20px;
    }

    .placeholder-mock {
      width: 210px;
    }
  }

  @media (max-width: 767.98px) {
    .cta-highlight-title {
      font-size: 22px;
    }
  }
}

#cta-final {
  padding: 90px 0;

  @media (max-width: 900px) {
    padding: 66px 0;

    .col-lg-5,
    .container {
      padding: 0;
    }
  }

  background: linear-gradient(
      274deg,
      rgba(0, 0, 0, 0) -3.11%,
      rgba(0, 0, 0, 0.25) 23.83%,
      rgba(0, 0, 0, 0.5) 54.21%,
      rgba(0, 0, 0, 0.7) 98.75%
    ),
    url(../../assets/img/bg.jpg) lightgray 50% / cover no-repeat;

  .service-title {
    text-transform: uppercase;
    color: var(--white-color);
  }
}

#site-footer {
  background: var(--dark-color);

  padding: var(--section-spacing-2) 0;

  @media (max-width: 900px) {
    padding: 66px 0 0;

    .col-lg-5,
    .container {
      padding: 0;
    }
  }

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

  .container {
    max-width: 90%;
  }

  .footer-heading {
    font-family: var(--font-family-headling);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--white-color);
  }

  .footer-about {
    color: #ffffff;
  }

  .footer-thumb {
    width: 190px;
    margin-bottom: 18px;

    img {
      width: 100%;
    }
  }

  .footer-about-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 400px;
    font-weight: 600;
  }

  .footer-social-label {
    display: block;
    font-size: 16px;

    font-family: var(--font-family-headling);
    text-transform: uppercase;
    margin-bottom: 17px;
  }

  .icon-social {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    border: 1px solid rgba(243, 125, 60, 0.1);
    background: rgba(243, 125, 60, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s;
    i {
      font-size: 16px;
      color: var(--primary-color);
    }

    &:hover {
      background: var(--primary-color-hover);
      i {
        font-size: 16px;
        color: var(--white-color);
      }
    }
  }

  .footer-social-icons {
    display: flex;
    gap: 8px;
  }

  .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      margin-bottom: 6px;
      list-style: square;
      margin-left: 20px;
      color: var(--primary-color);
      font-size: 12px;
    }

    a {
      font-size: 14px;
      text-decoration: none;
      position: relative;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  /* Coluna 3 – contato */
  .footer-contact-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 14px;

    .icon-social {
      width: 40px;
      height: 40px;

      i {
        font-size: 18px;
      }
    }
  }

  .footer-contact-label {
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
  }

  .footer-contact-text {
    font-family: var(--font-family-headling);
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 53px 0;
  }

  .footer-mini-row {
    margin-bottom: 69px;

    @media (max-width: 900px) {
      margin-bottom: 24px;
    }
  }

  .footer-mini-card {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    color: #ffffff;
  }

  .footer-mini-thumb {
    width: 100px;
    background: #c4c4c4;
    img {
      width: 100%;
      object-fit: contain;
    }
  }

  .footer-mini-title {
    font-family: var(--font-family-headling);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .footer-mini-text {
    font-size: 12px;
    margin-bottom: 9px;
  }

  .footer-mini-link {
    font-size: 8px;
    text-transform: uppercase;

    color: var(--primary-color);
    font-weight: 600;

    &:hover {
      color: var(--primary-color-hover);
      text-decoration: underline;
    }
  }

  /* Barra inferior */
  .footer-bottom {
    padding-bottom: 18px;

    .icon-social {
      width: 30px;
      height: 30px;
    }

    * {
      font-size: 12px;
    }

    .footer-bottom-link {
      &:hover {
        color: var(--primary-color);
        text-decoration: underline;
      }
    }
  }

  @media (max-width: 767.98px) {
    .footer-main {
      padding-top: 32px;
    }

    .footer-divider {
      margin: 24px 0 18px;
    }

    .footer-mini-card {
      margin-bottom: 10px;
    }

    .footer-bottom {
      padding-top: 14px;
      padding-bottom: 14px;
    }
  }
}
