.section_hero {
  background-image: url("../images/hero/background-hero.png");

  .top_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 24px;
  }

  .nav_wrapper {
    transition: box-shadow 0.3s ease;
  }

  .nav_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    animation: navSlideDown 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    nav {
      border-radius: 0;
    }
  }

  nav {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 24px;
    border-radius: 8px;
    background: var(--White, #fff);

    .right_header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;

      ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 16px;
      }
    }
  }

  .content_hero {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    margin-top: 64px;

    .buttons_hero {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
  }

  .container_hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_hero {
    .top_header {
      padding: 16px 20px;
    }

    .right_top_header {
      display: none !important;
    }

    nav {
      padding: 16px 20px;
      border-radius: 0;

      .right_header {
        display: none !important;
      }
    }

    .container_hero {
      padding: 0 20px;
    }

    .content_hero {
      max-width: 600px;
      margin-top: 48px;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_hero {
    .top_header {
      padding: 12px 16px;

      .left_top_header {
        gap: 12px;
      }
    }

    nav {
      padding: 14px 16px;
      border-radius: 0;

      .logo img {
        height: 32px;
        width: auto;
      }
    }

    .content_hero {
      max-width: 100%;
      margin-top: 40px;
      padding: 0 4px;
      text-align: left;

      .buttons_hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

    .container_hero {
      padding: 0 16px;
      padding-bottom: 0;

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

/* Small mobile */
@media (max-width: 480px) {
  .section_hero {
    .content_hero {
      margin-top: 32px;
    }
  }
}
.section_about {
  padding: 100px 0px;

  .container {
    border-radius: 8px;
    background: #e9f2f5;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap-reverse;

    .left_about {
      width: 100%;
      max-width: 449px;

      img {
        width: 100%;
      }
    }

    .right_about {
      width: 100%;
      max-width: 664px;

      ul li {
        display: flex;
        align-items: center;
        gap: 8px;
      }
    }
  }

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

    .container {
      justify-content: center;
    }
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_about {
    padding: 80px 0;

    .container {
      padding: 32px;
      gap: 32px;
      flex-direction: column-reverse;
      align-items: center;
    }

    .left_about {
      max-width: 100%;
    }

    .right_about {
      max-width: 100%;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_about {
    padding: 60px 0;

    .container {
      padding: 24px 16px;
      gap: 24px;
    }
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .section_about {
    .container {
      padding: 20px 12px;
    }
  }
}
.section_who {
  padding: 100px 0px;
  background-image: url("../images/who/background-image.png");

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    .left_who {
      width: 100%;
      max-width: 608px;
    }

    .right_who {
      width: 100%;
      max-width: 500px;
      flex-shrink: 0;

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

    .cards_who {
      width: 100%;
      display: flex;
      align-items: start;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;

      .card_who {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        max-width: 296px;

        img {
          width: 16px;
          height: 16px;
          margin-top: 4px;
          flex-shrink: 0;
        }
      }
    }
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_who {
    padding: 80px 0;

    .container {
      flex-direction: column;
      gap: 40px;
    }

    .left_who {
      max-width: 100%;
    }

    .right_who {
      max-width: 400px;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_who {
    padding: 60px 0;

    .container {
      gap: 32px;
    }

    .cards_who {
      .card_who {
        max-width: 100% !important;
      }
    }

    .right_who {
      max-width: 100%;
    }
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .section_who {
    padding: 48px 0;
  }
}
.section_solutions {
  padding: 100px 0px;
  background: #fff;

  .text_color {
    color: #2d49ab;
  }

  .top_solutions {
    width: 100%;
    text-align: center;
  }

  .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 48px;
  }

  .tab {
    cursor: pointer;
    padding: 8px 12px;
    border: none;
    background: none;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .tab:hover {
    color: #2d49ab;
  }

  .tab_active {
    color: #2d49ab !important;
    font-weight: 500 !important;
  }

  /* Divisor entre tabs: border-right em todas exceto a ultima */
  .tab:not(:last-child) {
    border-right: 1px solid #cad1e2;
  }

  .bottom_solutions {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .card_solutions {
    width: 100%;
    max-width: 288px;
    padding: 0px 34px;
    min-height: 456px;
    border-radius: 8px;
    border: 2px solid var(--Stroke-Color, #e9e9e9);
    background: var(--White, #fff);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    .text {
      padding: 24px 6px;
    }

    p {
      border-radius: 8px;
      background: var(--Primary-Light-Blue, #eaedf7);
      padding: 2px 8px;
      width: fit-content;
    }

    a {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 0.32px;

      img {
        width: 16px;
        height: 16px;
      }
    }

    > img {
      width: 100%;
    }
  }

  .card_solutions:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .big_card_solutions {
    max-width: 597px;
  }

  .green {
    color: #279e64;
  }

  .blue_light {
    color: #2d49ab;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_solutions {
    padding: 80px 0;

    .tabs {
      gap: 0;
    }

    .big_card_solutions {
      max-width: 100%;
    }

    .card_solutions {
      max-width: 48%;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_solutions {
    padding: 60px 0;

    .tabs {
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 8px;
    }

    .tabs::-webkit-scrollbar {
      display: none;
    }

    .card_solutions {
      max-width: 100%;
      min-height: fit-content;
    }

    .big_card_solutions {
      max-width: 100%;
    }
  }
}
.section_destaque {
  padding: 64px 0px;

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;

    .right_destaque {
      width: 100%;
      max-width: 446px;

      h2 {
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 52px; /* 144.444% */
        letter-spacing: -0.72px;
      }
    }
  }

  .buttons_destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}

.blue_destque {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(90deg, #284199 29.02%, #0d1633 100%);
  flex-wrap: wrap;
  text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .section_destaque {
    .container {
      gap: 48px;
    }

    .left_destaque img {
      max-width: 400px;
      width: 100%;
      height: auto;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_destaque {
    padding: 40px 0;

    .container {
      flex-direction: column;
      gap: 32px;
      text-align: left;
    }

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

    .right_destaque {
      max-width: 100% !important;

      .tag {
        margin-bottom: 24px;
      }

      h2 {
        font-size: 28px !important;
        line-height: 38px !important;
      }
    }

    .buttons_destaque {
      flex-direction: column;
      gap: 16px;
    }
  }

  .blue_destque {
    padding: 16px;

    p {
      font-size: 28px;
      line-height: 36px;
    }
  }
}
.section_marcas {
  padding: 40px 0px;
  background: #fff;

  .marcas_container {
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .left_marcas {
    width: 100%;
    max-width: 392px;
    flex-shrink: 0;
  }

  .right_marcas {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .marca_slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
  }

  .marca_slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .marca_slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_marcas {
    .marcas_container {
      flex-direction: column;
      gap: 32px;
    }

    .left_marcas {
      max-width: 100%;
      text-align: center;
    }

    .right_marcas {
      width: 100%;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_marcas {
    padding: 32px 0;

    .marca_slide {
      height: 48px;
    }
  }
}
.section_testimonials {
  padding: 100px 0;
  background: #edf4f7;

  .testimonials_title {
    text-align: center;
  }

  .margin64 {
    margin-bottom: 64px;
  }

  .testimonials_slider {
    margin-bottom: 64px;
  }

  .testimonial_card {
    width: 100%;
    max-width: 392px;
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(33, 37, 41, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    min-height: 280px;
  }

  .stars {
    display: flex;
    gap: 4px;
  }

  .testimonial_text {
    flex: 1;
  }

  .testimonial_author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .testimonials_cta {
    display: flex;
    justify-content: center;
  }

  /* Swiper pagination dots */
  .swiper-pagination {
    position: relative;
    margin-top: 32px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b0c4d0;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #2d49ab;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_testimonials {
    padding: 80px 0;

    .margin64 {
      margin-bottom: 48px;
    }

    .testimonials_slider {
      margin-bottom: 48px;
    }

    .testimonial_card {
      min-height: 260px;
      padding: 24px;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_testimonials {
    padding: 60px 0;

    .margin64 {
      margin-bottom: 40px;
    }

    .testimonials_slider {
      margin-bottom: 40px;
    }

    .testimonial_card {
      max-width: 100%;
      min-height: auto;
    }
  }
}
.section_contact {
  background-image: url("../images/contato/background-contato.png");
  padding: 80px 0px;

  .container {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;

    .left_contact {
      width: 100%;
      max-width: 477px;

      img {
        display: flex;
      }
    }

    .right_contact {
      width: 100%;
      max-width: 667px;
    }
  }

  .contact_form_card {
    border-radius: 18px;
    border: 1.5px solid #fff;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 18.75px 19.5px 75px 0 rgba(41, 95, 131, 0.08);
    backdrop-filter: blur(24.75px);
    padding: 42px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .form_field {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .form_field input,
  .form_field textarea {
    min-height: 57px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .form_field input::placeholder,
  .form_field textarea::placeholder {
    color: #9e9e9e;
  }

  .form_field input:focus,
  .form_field textarea:focus {
    border-color: #2d49ab;
  }

  .form_field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form_field .input_error {
    border-color: #f44336;
  }

  .field_error {
    font-size: 13px;
    color: #f44336;
    font-weight: 400;
  }

  .form_success {
    text-align: center;
    padding: 40px 0;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_contact {
    .container {
      flex-direction: column;
      align-items: flex-start;
    }

    .left_contact {
      max-width: 600px !important;
    }

    .right_contact {
      max-width: 600px !important;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_contact {
    padding: 60px 0;

    .contact_form_card {
      padding: 24px 16px;
    }

    .left_contact {
      max-width: 100% !important;
    }

    .right_contact {
      max-width: 100% !important;
    }
  }
}
.section_footer {
  padding: 80px 0 32px;
  background: #fff;

  .footer_top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9e9e9;
  }

  .footer_brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 260px;
    flex-shrink: 0;
  }

  .footer_logo {
    height: 40px;
    width: auto;
  }

  .footer_col {
    min-width: 120px;

    ul {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
  }

  .footer_email_label {
    margin-top: 8px;
  }

  .footer_social {
    display: flex;
    gap: 12px;

    img {
      width: 24px;
      height: 24px;
    }
  }

  .footer_bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer_link_inline {
    display: inline;
    text-decoration: underline;
  }

  .footer_renove {
    height: 22px;
    width: auto;
  }

  .footer_renove_link {
    white-space: nowrap;
  }

  .footer_col:nth-child(3) {
    max-width: 196px;
    min-width: auto;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section_footer {
    padding: 60px 0 24px;

    .footer_top {
      flex-wrap: wrap;
      gap: 32px;
    }

    .footer_brand {
      max-width: 100%;
      width: 100%;
    }

    .footer_col {
      min-width: calc(50% - 16px);
    }

    .footer_bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section_footer {
    padding: 48px 0 20px;

    .footer_top {
      flex-direction: column;
      gap: 32px;
    }

    .footer_col {
      min-width: 100%;
    }

    .footer_bottom {
      flex-direction: column;
      gap: 12px;
    }
  }
}
