@import url(reset.css);

:root {
  --soft-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.05), 0px 1px 3px rgba(0, 0, 0, 0.15);
}

/** Some resets */
html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 2rem;

  @media (min-width: 768px) {
    font-size: 3rem;
  }

  @media (min-width: 1024px) {
    font-size: 3.5rem;

  }
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;

  @media (min-width: 768px) {
    font-size: 2.5rem;

  }
}

p {
  line-height: 1.4;
}

strong {
  font-weight: 700;
  color: #00204d;
}

/** Classes */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-inline: 2rem;
  padding-block: 1rem;
  min-height: 3.5rem;
  width: fit-content;
  background: #009C44;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #fff;
  border-radius: 2px;
  transition: background 300ms;

  .button-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    svg {
      width: 1.5rem;
      height: 1.5rem;
    }
  }

  &:hover {
    background: #00c17b;

    .button-icon {
      animation: shake 300ms ease-in-out;
    }
  }

  &.button-white {
    background: #ffffff;
    color: #00204d;

    &:hover {
      background: #e7e7e7;
    }
  }

  &.button-blue {
    background: #00204d;

    &:hover {
      background: #1D6BDD;
    }
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  padding-inline: 5%;

  @media (min-width: 768px) {
    padding-inline: 10%;
  }
}

/** Styles */
div[id^="site-"] {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 999999;
  background: #F0F0F0;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 300ms;

  &.hide {
    transform: translateY(-100%);
  }

  .navbar__container {
    padding-inline: 2.5%;
  }

  .navbar__nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    height: 6.25rem;
    overflow: hidden;
  }

  .navbar__nav-brand {
    display: block;
    width: 8.75rem;
    flex-shrink: 0;

    svg {
      width: 100%;
      height: 100%;
    }
  }

  .navbar__nav-social {
    display: none;
  }

  .navbar__nav-list,
  .button {
    display: none;
  }

  .navbar-mobile__open-button {
    margin-left: auto;
    background: #00204d;
    color: #fff;
    border: unset;
    border-radius: 2px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    .button-icon {
      display: flex;
      height: 2.6rem;
      width: 2.6rem;

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

  @media (min-width: 425px) {
    .navbar__nav-social {
      display: flex;
      gap: 1.5rem;

      .navbar__nav-social-link {
        display: flex;
        width: 1.5rem;
        color: #00204d;
        transition: color 300ms;

        svg {
          width: 100%;
          height: 100%;
        }

        &:hover {
          color: #009C44;
        }
      }
    }
  }

  @media (min-width: 1440px) {
    .navbar-mobile__open-button {
      display: none;
    }

    .navbar__nav-list {
      display: flex;
      gap: 2.5rem;
      margin-inline: auto;

      a {
        position: relative;
        text-decoration: none;
        color: #00204d;
        font-weight: 700;
        text-transform: uppercase;
        white-space: nowrap;
        font-size: 0.875rem;

        &::before {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          height: 2px;
          width: 0;
          background: #009C44;
          transition: width 300ms;
        }

        &:hover::before {
          width: 100%;
        }
      }
    }

    .button {
      display: flex;
      white-space: nowrap;
    }
  }
}

#navbar-mobile {
  position: fixed;
  z-index: 9999999;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  backdrop-filter: unset;
  visibility: hidden;
  transition: background 300ms, visibility 300ms;

  &.is-active {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    visibility: visible;
  }

  .navbar-mobile__container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f0f0f0;
    max-width: 25rem;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 300ms;
  }

  &.is-active .navbar-mobile__container {
    transform: translateX(0);
  }

  .navbar-mobile__content {
    overflow: auto;
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;

    .button {
      width: 100%;
    }
  }

  .navbar-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;

    a {
      color: #00204d;
      font-size: 1.75rem;
      font-weight: 700;
      text-decoration: none;
    }
  }

  .navbar-mobile__close-button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    text-transform: uppercase;
    padding: 1.5rem;
    border-radius: 0;
    border: unset;
    background: #00204d;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    transition: background 300ms;

    .button-icon {
      display: flex;
    }

    &:hover {
      background: #1D6BDD;
    }
  }
}

#imf-header {

  /** Hero Home Page */
  .hero-splide {
    .splide__slide {
      --content-color: #fff;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 45rem;
      background: #f0f0f0;
      color: #333;

      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 20%);

      }
    }

    .splide__arrows {
      display: none;
    }

    .splide__pagination {
      display: flex;
      gap: 0.5rem;

      button {
        margin: 0;
        width: .75rem;
        height: .5rem;
        border-radius: 0;
        transform: unset;
        background: #fff;
        border: 1px solid rgba(48, 53, 58, 0.1);
        opacity: .6;
        transition: opacity 300ms, width 300ms;

        &.is-active {
          width: 1.5rem;
          background: #00c17b;
        }

        &:hover {
          opacity: 1;
        }
      }
    }

    .splide__slide-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .splide__slide-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      width: 100%;
      color: var(--content-color);
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .splide__slide-title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      max-width: 43.75rem;
      line-height: 1;
    }

    .splide__slide-description {
      max-width: 43.75rem;
      margin-bottom: 2.5rem;
      font-size: 1.5rem;
      line-height: 1.2;
    }

    /*? splide content animation */
    .splide__slide-content.is-visible {
      opacity: 1;
    }

    .item-animated {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 300ms;
    }

    .item-animated.animate {
      opacity: 1;
      transform: translateY(0);
    }

    /*? Media */
    @media (min-width: 768px) {
      .splide__arrows {
        width: 100%;
        display: block;

        .splide__arrow {
          width: 2.5rem;
          height: 2.5rem;
          background: #fff;
          border: 1px solid rgba(48, 53, 58, 0.1);
          opacity: .4;
          transition: opacity 300ms;

          path {
            fill: #000;
          }

          &:hover {
            opacity: 1;
          }
        }

        .splide__arrow--prev {
          left: 2.5%;
        }

        .splide__arrow--next {
          right: 2.5%;
        }
      }
    }
  }

  /** Hero Default */
  .imf-header__hero {
    position: relative;
    min-height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.5rem;

    .imf-header__hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem;
      height: 100%;
      color: #fff;
    }

    .imf-header__hero-title {
      font-size: clamp(1.5rem, 4vw, 3.5rem);
      max-width: 50rem;
      line-height: 1.2;
    }

    .imf-header__hero-subtitle {
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.4;
      max-width: 50rem;
    }

    .imf-header__hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
}

#produtos-servicos {
  padding-block: 5rem;
  background: #fafafa;

  .produtos-servicos__heading {
    max-width: 43.75rem;
    margin-bottom: 2.5rem;
  }

  .produtos-servicos__heading-title {
    color: #00204d;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .produtos-servicos__cards {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  }

  .produtos-servicos__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 23.75rem;
    margin-inline: auto;
    width: 100%;
    height: 22.5rem;
    background: #FFFBFB;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    text-decoration: none;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border-radius: 2px;
    transition: transform 300ms;

    .produtos-servicos__card-heading {
      display: flex;
      gap: 1rem;
      align-items: center;
      color: #00204d;
      font-weight: 700;
      font-size: 1.125rem;
    }

    .produtos-servicos__card-excerpt {
      flex-grow: 1;
    }

    .produtos-servicos__card-cta {
      display: flex;
      gap: .5rem;
      color: #00204d;
      font-weight: 700;
      margin-left: auto;
    }

    &::before,
    &::after {
      content: '';
      position: absolute;
      height: 4px;
      width: 80%;
      left: 50%;
      transform: translateX(-50%);
      transition: width 300ms;
    }

    &::before {
      bottom: 0;
      background: #00204d;
    }

    &::after {
      top: 0;
      background: #FFCB1F;
    }

    &:hover {
      .icon {
        animation: shake 300ms ease-in-out;
      }
    }

    &.card-blue {
      background: #00204d;
      color: #fff;

      .produtos-servicos__card-icon {
        max-width: 6.25rem;

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

      .produtos-servicos__card-description {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        flex-grow: 1;
      }

      .produtos-servicos__card-cta {
        color: #fff;
      }

      &::before {
        background: #FFCB1F;
      }
    }

    &:hover {
      transform: translateY(-2px);

      &::before,
      &::after {
        width: 100%;
      }
    }
  }
}

#atas-de-registro {
  background: #00204d;
  background-image: url(../images/background/imf-telecom-atas-de-registro-background.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;

  .atas-de-registro__container {
    max-width: 58.75rem;
    padding-inline: 5%;
    padding-block: 5rem;
    background: linear-gradient(270deg, rgba(217, 217, 217, 0.03) 0%, rgba(217, 217, 217, 0.1) 100%);
    backdrop-filter: blur(4px);
  }

  .atas-de-registro__content {
    max-width: 38.75rem;
  }

  .atas-de-registro__content-title {
    margin-bottom: 1.5rem;
  }

  .atas-de-registro__content-description {
    margin-bottom: 1rem;
  }

  .atas-de-registro__content-cta {
    margin-bottom: 1.5rem;
  }

  .atas-de-registro__content-cta,
  .atas-de-registro__content-description {
    font-size: 1.125em;
  }

  .atas-de-registro__content-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .atas-de-registro__container {
      padding-left: 10%;
    }
  }
}

#quem-somos {
  position: relative;

  .quem-somos__container {
    flex-shrink: 1;
    padding-inline: 5%;
    padding-block: 5rem;
    width: 100%;
    max-width: 62.5rem;
  }

  .quem-somos__content {
    max-width: 37.5rem;
  }

  .quem-somos__content-brand {
    max-width: 12.5rem;
    margin-bottom: 1rem;

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

  .quem-somos__content-title {
    margin-bottom: 2.5rem;
    color: #00204d;
    font-weight: 700;
  }

  .quem-somos__content-description {
    margin-bottom: 2.5rem;
  }

  .quem-somos__content-cta {
    margin-bottom: 1rem;
    color: #00204d;
    font-weight: 600;
    font-size: 1.125rem;
  }

  .quem-somos__image {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 1;
    max-height: 25rem;

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

  .quem-somos-lines {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: .25rem;

    .quem-somos-line {
      height: 4px;
      width: 80%;
      background: #00c17b;

      &:nth-child(2) {
        background: #FFCB1F;
        width: 90%;
      }

      &:nth-child(3) {
        background: #1D6BDD;
        width: 100%
      }
    }
  }

  @media (min-width: 768px) {
    .quem-somos__container {
      padding-left: 10%;
    }
  }

  @media (min-width: 1024px) {
    display: flex;

    .quem-somos__image {
      max-height: unset;
      flex-shrink: 2;
    }
  }

}

#clientes-imf {
  padding-block: 5rem;
  background: #F0F0F0;

  .clientes-imf__content-titile {
    margin-bottom: 1rem;
    text-align: center;
    color: #00204d;
    font-weight: 700;
  }

  .clientes-imf__content-description {
    max-width: 75rem;
    margin-inline: auto;
    text-align: center;
  }

  .clientes-imf__content-list {
    margin-block: 5rem;
    max-width: 70rem;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 5rem;
    row-gap: 2.5rem;
  }

  .clientes-imf__content-logo {
    width: 100%;
    max-height: 5rem;
  }

  .clientes-imf__content-cta {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.125rem;
    color: #00204d;
  }

  .button {
    margin-inline: auto;
  }

}

#ultimos-posts {
  padding-block: 5rem;
  background: #fafafa;

  .ultimos-posts__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(2.8rem, 3vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #00204d;
    font-weight: 700;

    .icon {
      display: flex;

      svg {
        width: clamp(2rem, 2.5vw, 5rem);
      }
    }
  }

  .ultimos-posts__container {
    display: grid;
    gap: 2.5rem;
  }

  .ultimos-posts__content {
    max-width: 32.50rem;
  }

  .ultimos-posts__cta {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 2.5rem;
    color: #00204d;
  }

  .ultimos-posts__subtitle {
    font-size: 1.5rem;
    color: #00204d;
    font-weight: 700;
    margin-bottom: 1.5rem;

    strong {
      color: #1D6BDD;
      font-size: 1.125rem;
    }

    .ultimos-posts__remove-category {
      font-size: 1rem;
      text-decoration: none;
      color: #00204d;
      transition: color 300ms;

      &:hover {
        color: #FF0051;
      }
    }
  }

  .ultimos-posts__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .ultimos-posts__link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background: #f0f0f0;
    height: 100%;
    min-height: 16.25rem;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    box-shadow: var(--soft-shadow);
    transition: transform 300ms;

    .ultimos-posts__link-thumb {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #00204d;
      width: 100%;
      min-height: 16.25rem;

      .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 2.5rem;
      }

      svg {
        width: 100%;
        max-width: 12.5rem;
        height: auto;
      }

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

    .ultimos-posts__link-date {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      background: #F7B63B;
      font-size: 0.75rem;
      padding: .25rem .5rem;
      font-weight: 700;
      color: #00204d;
      border-radius: 10rem;
      white-space: nowrap;
    }

    .ultimos-posts__link-text {
      display: flex;
      flex-direction: column;
      padding: 2.5rem;
      width: 100%;
    }

    .ultimos-posts__link-title {
      color: #00204d;
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 1.125rem;
      line-height: 1.2;
    }

    .ultimos-posts__link-excerpt {
      margin-bottom: 1.5rem;
    }

    .ultimos-posts__link-cta {
      display: flex;
      align-items: center;
      color: #00204d;
      font-weight: 700;
      font-size: 1.125rem;
      margin-top: auto;

      .icon {
        display: flex;
      }


    }

    &::before,
    &::after {
      content: '';
      position: absolute;
      height: 4px;
      width: 80%;
      left: 50%;
      z-index: 2;
      transform: translateX(-50%);
      transition: width 300ms;
    }

    &::before {
      bottom: 0;
      background: #00204d;
    }

    &::after {
      top: 0;
      background: #FFCB1F;
    }

    &:hover {
      transform: translateY(-2px);

      .ultimos-posts__link-cta .icon {
        animation: shake 300ms ease-in-out;
      }

      &::before,
      &::after {
        width: 100%;
      }
    }
  }

  .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .desktop-only {
    display: none;
  }

  @media (min-width: 768px) {
    .ultimos-posts__link {
      flex-wrap: nowrap;
    }
  }

  @media (min-width: 1024px) {
    .ultimos-posts__container {
      grid-template-columns: repeat(2, 1fr);
    }

    .ultimos-posts__content {
      height: fit-content;
      position: sticky;
      top: 7.5rem;
    }

    .mobile-only {
      display: none;
    }

    .desktop-only {
      display: block;
    }

    .ultimos-posts__link {
      flex-wrap: wrap;
    }
  }

  @media (min-width: 1440px) {
    .ultimos-posts__container {
      grid-template-columns: 1fr 1.5fr;
    }

    .ultimos-posts__posts {
      max-width: 47.5rem;
      margin-inline: auto;
    }

    .ultimos-posts__link {
      flex-wrap: nowrap;
    }

    .ultimos-posts__link-thumb {
      max-width: 18.75rem;
    }
  }
}

#informacoes-contato {
  padding-block: 5rem;
  background: #00204d;
  background-image: url(../images/background/imf-telecom-background-azul.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;

  .informacoes-contato__container {
    display: grid;
    gap: 2.5rem;
  }

  .informacoes-contato__content {
    max-width: 37.5rem;

    .informacoes-contato__title {
      display: grid;
      gap: .5rem;
      margin-bottom: 1.5rem;
      font-weight: 400;

      strong {
        display: block;
        width: 100%;
        font-weight: 700;
        color: #fff;
      }
    }

    .informacoes-contato__subtitle {
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .informacoes-contato__description {
      margin-bottom: 1.5rem;
    }

    .informacoes-contato__list {
      margin-bottom: 1.5rem;
    }

    .informacoes-contato__list-title {
      margin-bottom: .5rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .informacoes-contato__list-item {
      display: flex;
      align-items: center;
      gap: .5rem;

      strong {
        font-weight: 700;
        color: #fff;
      }
    }

    .informacoes-contato__cta {
      margin-bottom: 1.5rem;
      font-weight: 700;
      font-size: 1.125rem;
    }
  }

  .informacoes-contato__formulario {
    background: #fafafa;
    color: #333;
    padding: 2rem;
    border-radius: 2px;

    br {
      display: none;
    }

    .informacoes-contato__formulario-title {
      font-weight: 700;
      margin-bottom: 2.5rem;
      font-size: 1.125rem;
      line-height: 1.2;
      text-align: center;
      color: #00204d;
    }

    input:not([type="checkbox"], [type="submit"]) {
      width: 100%;
      height: 2.5rem;
      border-radius: 10rem;
      border: 1px solid #ddd;
      background: #F0F0F0;
      padding-inline: 1rem;
    }

    .mandatory {
      color: #FF0051;
    }

    label {
      font-weight: 700;
      color: #00204d;
    }

    .label-name {
      display: inline-block;
      padding-left: 1rem;
      margin-bottom: 0.25rem;
    }

    form p {
      margin: 0;
    }

    form>p+p:not(:last-of-type) {
      margin-top: 1rem;
    }

    .wpcf7-list-item {

      &>label {
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        gap: .5rem;
      }

      input[type="checkbox"] {
        cursor: pointer;
        width: 1.25rem;
        height: 1.25rem;
      }

      a {
        text-decoration: none;
        color: #00204d;
        opacity: .5;
        transition: opacity 300ms;

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

    input[type="submit"] {
      cursor: pointer;
      background: #009C44;
      width: 100%;
      height: 3.5rem;
      border-radius: 2px;
      border: unset;
      color: #fff;
      margin-top: 2.5rem;
      font-size: 0.875rem;
      text-transform: uppercase;
      font-weight: 700;
      transition: opacity 300ms, background 300ms;

      &:disabled {
        cursor: not-allowed;
        opacity: .5;
      }

      &:hover:not(:disabled) {
        background: #00c17b;
      }
    }

    .wpcf7-not-valid-tip {
      padding-left: 1rem;
      color: #FF0051;
    }

    .wpcf7-spinner {
      display: block;
      margin-inline: auto;
      margin-top: 1rem;
    }

    .wpcf7-response-output {
      line-height: 1.2;
      margin: 0;
    }

  }

  .informacoes-contato__content,
  .informacoes-contato__formulario {
    max-width: 36rem;
    margin-inline: auto;
  }

  @media (min-width: 1024px) {
    .informacoes-contato__container {
      grid-template-columns: repeat(2, 1fr);
    }

    .informacoes-contato__content {
      position: sticky;
      max-width: 37.5rem;
      margin: unset;
      height: fit-content;
      top: 7.5rem;
    }

    .informacoes-contato__formulario {
      max-width: 36rem;
      margin-inline: auto;
    }
  }
}

#imf-footer {
  padding-block: 2.5rem;
  background: #1f1f1f;
  min-height: 100px;

  .imf-footer__brand {
    display: block;
    max-width: 12.5rem;

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

    path {
      transition: fill 300ms;
    }

    &:hover path {
      fill: #F7B63B;
    }
  }

  .imf-footer__content {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .imf-footer__content ul {
    color: #fff;

    h3 {
      display: flex;
      align-items: center;
      width: 100%;
      font-size: 1.125rem;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1.4;

      .icon {
        width: 2rem;
        height: 2rem;
        flex-shrink: 0;

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

        path:last-of-type {
          fill: #F7B63B;
        }
      }
    }
  }

  .imf-footer__sitemap {
    display: flex;
    flex-direction: column;
    column-gap: 2.5rem;
    row-gap: 1.5rem;

    .imf-footer__sitemap-link {
      position: relative;
      text-decoration: none;
      color: #fff;
      font-weight: 700;

      &::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        height: 2px;
        width: 0;
        background: #F7B63B;
        transition: width 300ms;
      }

      &:hover::before {
        width: 100%;
      }
    }
  }

  .imf-footer__atendimento {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .imf-footer__atendimento-item {
      line-height: 1.4;
    }
  }

  .imf-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    .imf-footer__social-link {
      text-decoration: none;
      color: #fff;
      display: flex;
      width: 2rem;
      height: 2rem;

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

      path {
        transition: fill 300ms;
      }

      &:hover path {
        fill: #F7B63B;
      }
    }
  }
}

#imf-copy {
  background: #00204d;
  background-image: url(../images/background/imf-telecom-background-azul.jpg);
  background-position: center;
  background-size: cover;
  padding-block: 1rem;

  .imf-copy__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .imf-copy__content {
    color: #fff;
    text-align: center;

    .imf-copy__link {
      color: #fff;
      opacity: .5;
      transition: opacity 300ms;

      &:hover {
        opacity: 1;
      }
    }
  }

  .imf-copy__menfis {
    flex-shrink: 0;
    max-width: 6.25rem;
    margin-inline: auto;

    svg {
      max-width: 100%;
      height: auto;

      path {
        fill: #fff;
      }
    }
  }

  @media(min-width: 768px) {
    .imf-copy__container {
      flex-direction: row;
    }

    .imf-copy__content {
      text-align: start;
    }

    .imf-copy__menfis {
      margin: unset;
    }
  }
}

#solucao-cta {
  padding-block: 2.5rem;
  background: #00204d;
  background-image: url(../images/background/imf-telecom-background-azul.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;

  .solucao-cta__content {
    max-width: 50rem;
    margin-inline: auto;
  }

  .solucao-cta__title {
    margin-bottom: 1rem;
  }

  .solucao-cta__description {
    margin-bottom: 1.5rem;
  }

  .solucao-cta__cta {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .button {
    margin-inline: auto;
  }
}

/*? Generic styles */
#main-content {
  .ultimos-posts__filter-wrapper {
    position: fixed;
    z-index: 9999999;
    inset: 0;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 300ms, visibility 300ms;

    .ultimos-posts__filter {
      flex-grow: 1;
    }

    &.is-active {
      visibility: visible;
      transform: translateX(0);

    }
  }

  .ultimos-posts__pagination {
    ul.page-numbers {
      margin-top: 2.5rem;
      display: flex;
      gap: 1.5rem;

      .page-numbers {
        position: relative;
        font-size: 1.125rem;
        text-decoration: none;
        color: #00204d;
        font-weight: 700;

        &.current {
          cursor: default;
          opacity: .4;
        }

        &:not(.current)::before {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          height: 2px;
          width: 0;
          background: #009C44;
          transition: width 300ms;
        }

        &:hover {
          &:not(.current)::before {
            width: 100%;
          }
        }
      }
    }
  }

  .ultimos-posts__filter form {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #ddd;

    .search-form__title {
      margin-bottom: 1rem;
      padding-left: 1rem;
      font-weight: 700;
      color: #00204d;
    }

    .search-form__search-wrapper {
      display: flex;
      background: pink;
      border-radius: 10rem;
      overflow: hidden;
      outline: 2px solid transparent;
      transition: outline 300ms;

      &:has(.ultimos-posts__search-label input:focus) {
        outline-color: #00c17b;
      }
    }

    .ultimos-posts__search-label {
      flex: 1;

      input {
        width: 100%;
        height: 100%;
        padding-inline: 1rem;
        border: unset;
        outline: unset;
      }
    }

    .ultimos-posts__search-button {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      border: unset;
      outline: unset;
      width: 2.5rem;
      height: 2.5rem;
      padding: .5rem;
      background: #009C44;
      color: #fafafa;
      transition: background 300ms;

      .button-icon {
        display: flex;
      }

      &:hover {
        background: #00c17b;

        .button-icon {
          animation: shake 300ms ease-in-out;
        }
      }
    }

    .search-suggestions {
      position: absolute;
      z-index: 99;
      background: white;
      border: 1px solid #ddd;
      width: 100%;
      list-style: none;
      margin: 0;
      margin-top: 1rem;
      padding: 0;
      box-shadow: var(--soft-shadow);

      li {
        padding: 10px;
        cursor: pointer;
        color: #00204d;

        a {
          color: #00204d;
          text-decoration: none;
          line-height: 1.2;
        }

        &.search-suggestions__not-found {
          cursor: default;
        }
      }

      li:hover {
        background-color: #f0f0f0;
      }
    }

  }

  .ultimos-posts__filter-categories {

    .ultimos-posts__categories-title {
      margin-bottom: 1rem;
      padding-left: 1rem;
      font-weight: 700;
      color: #00204d;
    }

    .ultimos-posts__categories-list {
      display: grid;
      gap: 1rem;
    }

    .ultimos-posts__categories-link {
      display: flex;
      gap: .5rem;
      align-items: center;
      text-decoration: none;
      color: #00204d;
      font-weight: 700;
      transition: color 300ms;

      svg {
        color: #009C44;
        width: 1.125rem;
        height: 1.125rem;
        flex-shrink: 0;
        animation: pulse-svg 1s ease-in-out infinite alternate;
      }

      &:hover {
        color: #009C44;
      }

    }

    .current-category .ultimos-posts__categories-link {
      color: #1D6BDD;
      font-style: italic;

      &:hover {
        color: #FF0051;
      }
    }
  }

  .ultimos-posts__filter-open {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #00204d;
    color: #fafafa;
    font-size: 1rem;
    width: fit-content;
    margin-left: auto;
    padding: .5rem 1rem;
    border: unset;
    border-radius: 2px;
    transition: background 300ms;

    .button-icon {
      display: flex;
    }

    &:hover {
      background: #1D6BDD;
    }
  }

  .ultimos-posts__filter-close {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
    background: #00204d;
    color: #fafafa;
    border: unset;
    min-height: 3rem;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
  }

  @media (min-width: 1024px) {
    .ultimos-posts__filter-wrapper {
      position: sticky;
      inset: unset;
      top: 7.5rem;
      height: fit-content;
      z-index: unset;
      display: flex;
      visibility: visible;
      transform: translateX(0);
    }

    .ultimos-posts__filter-open {
      display: none;
    }

    .ultimos-posts__filter-close {
      display: none;
    }
  }
}

/** Fixed elements */
#back-to-top {
  cursor: pointer;
  position: fixed;
  z-index: 99;
  bottom: 12.5rem;
  right: 2.125rem;
  display: flex;
  background: #00204d;
  color: #fafafa;
  width: 2.75rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid #ddd;
  opacity: .8;
  box-shadow: var(--soft-shadow);
  visibility: visible;
  transform: scale(.8);
  transition: opacity 300ms, visibility 300ms;

  &.hide {
    visibility: hidden;
    opacity: 0;
  }

  &:hover {
    opacity: 1;
  }
}

#whatsapp-button {
  position: fixed;
  z-index: 99;
  background: #25d366;
  color: #fff;
  bottom: 6.25rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;

  svg {
    width: 2rem;
    height: 2rem;
  }
}

/** KeyFrames */
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-20deg);
  }

  50% {
    transform: rotate(20deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-svg {
  0% {
    transform: scale(.8);
    opacity: .8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*? Single Produtos e Serviços */
[class*="single-produtos_servicos"] #produtos-servicos {

  .produtos-servicos__container {
    display: grid;
    gap: 5rem;
  }

  .produtos-servicos__content-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;

    .produtos-servicos__content-title {
      color: #00204d;
    }
  }

  .produtos-servicos__content-description {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .produtos-servicos__content-cta {
    color: #00204d;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }

  .produtos-servicos__notes {
    position: relative;
    background: #F0F0F0;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 2rem 1rem;
    color: #333;
    box-shadow: var(--soft-shadow);

    h3 {
      color: #00204d;
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.5rem;
      line-height: 1.2;
    }

    .produtos-servicos__notes-description {
      margin-bottom: 1.5rem;
    }

    .produtos-servicos__notes-list {
      display: grid;
      gap: 1rem;

      .produtos-servicos__notes-list-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        line-height: 1.4;
      }

      .icon {
        width: 1.5rem;
        height: 1.5rem;
        color: #00c17b;
        flex-shrink: 0;

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

    &::before,
    &::after {
      content: '';
      position: absolute;
      height: 4px;
      width: 80%;
      left: 50%;
      transform: translateX(-50%);
      transition: width 300ms;
    }

    &::before {
      bottom: 0;
      background: #00204d;
    }

    &::after {
      top: 0;
      background: #FFCB1F;
    }

    &:hover {

      &::before,
      &::after {
        width: 100%;
      }
    }
  }

  @media (min-width: 1024px) {
    .produtos-servicos__container {
      grid-template-columns: repeat(2, 1fr);
    }

    .produtos-servicos__notes {
      padding: 2rem;
      max-width: 37.5rem;
      margin-inline: auto;
    }

    .produtos-servicos__content,
    .produtos-servicos__notes {
      height: fit-content;
      position: sticky;
      top: 7.5rem;
    }
  }
}

/*? Single Sobre Nós */
[class*="page-sobre-nos"] #sobre-nos {
  padding-block: 5rem;

  .sobre-nos__container {
    display: grid;
    gap: 5rem;
  }

  .sobre-nos__content {
    .wp-block-heading {
      color: #00204d;
    }

    h2.wp-block-heading {
      margin-bottom: 1.5rem;
      font-size: clamp(1.5rem, 2vw, 2.2rem);
      line-height: 1.2;
    }

    h3.wp-block-heading {
      margin-bottom: .5rem;
      font-weight: 700;
      font-size: 1.125rem;
    }

    .wp-block-list {
      display: grid;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      padding-left: 1rem;
      padding-block: .5rem;

      li {
        position: relative;
        padding-left: 2rem;
        line-height: 1.2;

        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 1.125rem;
          height: 1.125rem;
          background: url('../images/svg/check-colored.svg') no-repeat center center;
          background-size: contain;
        }
      }
    }

    p:not([class]) {
      margin-bottom: 1.5rem;
    }

    .sobre-nos__content-cta {
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: #00204d;
      font-size: 1.125rem;
    }
  }

  .sobre-nos__gallery {
    border-radius: 2px;
    overflow: hidden;
    background: #ddd;
    border: 1px solid #ddd;
    box-shadow: var(--soft-shadow);
    height: fit-content;

    .sobre-nos__gallery-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
    }
  }

  @media (min-width: 1024px) {
    .sobre-nos__container {
      grid-template-columns: minmax(0, 43.75rem) auto;
    }

    .sobre-nos__gallery {
      position: sticky;
      top: 7.5rem;
      margin-inline: auto;
    }
  }
}

/*? Page 404 */
[class*="error404"] #error404 {
  padding-block: 5rem;
  background: #00204d;
  background-image: url(../images/background/imf-telecom-background-azul.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 75dvh;
  display: flex;
  justify-content: center;
  align-items: center;

  .error404__content {
    text-align: center;
    max-width: 43.75rem;
    margin-inline: auto;
  }

  .error404__title {
    font-size: 12rem;
    font-weight: 700;
  }

  .error404__subtitle {
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .error404__description {
    margin-bottom: 2.5rem;
  }

  .error404__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/*? Page Blog */
[class*="page-blog"] #ultimos-posts,
[class*="category"] #ultimos-posts,
[class*="search"] #ultimos-posts,
[class*="single-post"] {

  .ultimos-posts__filter {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 2px;
    border: 1px solid #ddd;
    height: fit-content;
    overflow-y: auto;
  }

  @media (min-width: 1024px) {
    .ultimos-posts__container {
      grid-template-columns: 18.75rem auto;
    }
  }

  @media (min-width: 1100px) {
    .ultimos-posts__link {
      flex-wrap: nowrap;
    }
  }

  @media (min-width: 1440px) {
    .ultimos-posts__posts {
      max-width: unset;
      margin-inline: unset;
    }

    .ultimos-posts__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    .ultimos-posts__link {
      flex-wrap: wrap;
    }

    .ultimos-posts__link-thumb {
      max-width: unset;
    }
  }

  @media (min-width: 1920px) {
    .ultimos-posts__link {
      flex-wrap: nowrap;
    }
  }
}

/*? Blog single */
[class*="single-post"] #blog-singular__post {
  padding-block: 5rem;

  .blog-singular__post-article {
    max-width: 62.5rem;
    margin-inline: auto;
  }

  .blog-singular__post-header {
    .blog-singular__title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #00204d;
    }

    .blog-singular__excerpt {
      margin-bottom: 1.5rem;
    }
  }

  .blog-singular__meta {
    background: #00204d;
    background-image: url(../images/background/imf-telecom-background-azul.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 1rem;
    border-radius: 0 0 2px 2px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;

    a {
      color: #fff;
      text-decoration: none;
      transition: color 300ms;
      font-weight: 400;

      &:hover {
        color: #25d366;
      }
    }
  }

  .blog-singular__post-thumbnail {
    display: flex;

    img {
      width: 100%;
      height: auto;
      overflow: hidden;
      box-shadow: var(--soft-shadow);
    }
  }

  & p {
    margin-bottom: 1.5rem;
  }

  strong {
    color: #00204d;
    font-weight: 600;
  }

  h3.wp-block-heading {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #00204d;
    border-left: 4px solid #0074c2;
    padding-left: 0.75rem;
  }

  h4.wp-block-heading {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0074c2;
  }

  h4.wp-block-heading img {
    width: 20px;
    height: 20px;
  }

  a {
    color: #0074c2;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  a:hover {
    color: #00204d;
  }

  hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 2.5rem 0;
  }

  .ultimos-posts__filter-wrapper {
    display: none;
  }

  .blog-singular__post-content {
    margin-top: 2rem;

    h2.wp-block-heading {
      font-size: 2rem;
      margin-top: 2.5rem;
      margin-bottom: 1.5rem;
      color: #00204d;
      font-weight: 700;
      line-height: 1.3;
      border-left: 4px solid #009C44;
      padding-left: 0.75rem;
    }

    h3.wp-block-heading {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #0074c2;
      font-weight: 700;
      padding-left: 0.5rem;
    }

    p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #333;
    }

    ul.wp-block-list {
      list-style: disc;
      padding-left: 1.5rem;
      margin-bottom: 2rem;

      li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
        color: #333;
      }
    }

    strong {
      font-weight: 700;
      color: #00204d;
    }

    a {
      color: #0074c2;
      text-decoration: underline;
      transition: 0.3s;

      &:hover {
        color: #00204d;
      }
    }

    hr.wp-block-separator {
      border: none;
      border-top: 1px dashed #ccc;
      margin: 2.5rem 0;
    }

    figure.wp-block-image {
      margin: 2rem 0;
      text-align: center;

      img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--soft-shadow);
      }
    }

    figure.wp-block-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin: 2rem 0;

      figure.wp-block-image {
        img {
          width: 100%;
          height: auto;
          border-radius: 8px;
          box-shadow: var(--soft-shadow);
        }
      }

      @media (min-width: 600px) {
        figure.wp-block-image {
          width: calc(50% - 0.5rem) !important;
        }
      }

      @media (max-width: 768px) {
        figure.wp-block-image {
          width: 100%;
        }
      }
    }
  }

  @media (min-width: 1024px) {
    .blog-singular__title {
      font-size: 2.6rem;
    }
  }

  @media (min-width: 1440px) {
    .blog-singular__post-article {
      max-width: unset;
    }

    .blog-singular__post-container {
      display: grid;
      gap: 5rem;
      grid-template-columns: minmax(0, 67.5rem) minmax(18.75rem, 1fr);
    }

    .blog-singular__post-article {
      margin-inline: unset;
      height: fit-content;
      position: sticky;
      top: 7.5rem;
    }

    .ultimos-posts__filter-wrapper {
      position: relative;
      display: flex;
      top: unset;
    }

    .ultimos-posts__filter-categories {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid #ddd;
    }

    .recent-posts__title {
      margin-bottom: 1rem;
      padding-left: 1rem;
      font-weight: 700;
      color: #00204d;
    }

    .recent-posts__item-thumb {
      border-radius: 8px;
      margin-bottom: .5rem;
      overflow: hidden;
      border: 1px solid #ddd;

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

      &:has(svg) {
        padding: 2.5rem;
        background: #00204d;
        background-image: url(../images/background/imf-telecom-background-azul.jpg);
        background-position: center;
        background-size: cover;

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

    .recent-posts__item+.recent-posts__item {
      border: none;
      border-top: 1px dashed #ccc;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
    }

    .recent-posts__item-info {
      border-left: 4px solid #ddd;
      padding-left: 0.75rem;
      line-height: 1.2;
      color: #00204d;
      transition: border-color 300ms;

      .recent-posts__item-title {
        font-weight: 700;
      }

      .recent-posts__item-excerpt {
        margin-bottom: .5rem;
        font-size: 0.875rem;
      }

      .recent-posts__item-date {
        display: block;
        font-size: 0.875rem;
      }

      .recent-posts__item-cta {
        display: block;
        text-align: right;
        font-weight: 700;
      }
    }

    .recent-posts__item-link {
      text-decoration: none;

      &:hover .recent-posts__item-info {
        border-color: #009C44;
      }
    }
  }
}

/*? Atas de registro */
[class*="atas-de-registro"] #atas-de-registro-simplificada {
  background: #fafafa;
  color: #333;
  padding-block: 2.5rem;

  .atas-de-registro-simplificada__title {
    max-width: 30rem;
    margin-inline: auto;
    color: #00204d;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;

    strong {
      font-weight: 700;
    }
  }

  .atas-de-registro-simplificada__items {
    display: grid;
    row-gap: 2.5rem;
    column-gap: 5rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }

  .atas-de-registro-simplificada__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #009C44;
    padding-left: 1.5rem;
  }

  .atas-de-registro-simplificada__item-id {
    display: flex;
    font-size: 3rem;
    font-weight: 700;
    color: #00204d;
  }
}

[class*="atas-de-registro"] #atas-simplificadas {
  padding-block: 5rem;

  .atas-simplificadas__content {
    display: grid;
    gap: 2.5rem;
  }

  .atas-simplificadas__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
  }

  .atas-simplificadas__item-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12.5rem;
    width: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    svg {
      width: 50%;
      height: 50%;
    }
  }

  .atas-simplificadas__item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .atas-simplificadas__item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .atas-simplificadas__item-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00204d;
  }

  .atas-simplificadas__item-excerpt {
    margin-bottom: 1rem;
  }

  .atas-simplificadas__item-metadados {
    padding-left: 1rem;
    border-left: 4px solid #009C44;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .atas-simplificadas__item-link {
    width: 100%;
  }

  .atas-simplificadas__item-valor {
    margin-top: auto;

    em {
      font-size: 1.25rem;
      font-weight: 700;
      color: #009C44;
    }
  }

  @media (min-width: 768px) {
    .atas-simplificadas__content {
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    }

  }
}

/*? Ata de registro Single */
[class*="atas_de_registro"] #atas-de-registro__header {
  background: #00204d;
  background-image: url(../images/background/imf-telecom-background-azul.jpg);
  background-position: center;
  background-size: cover;
  color: #fafafa;
  padding-block: 2.5rem;

  .imf-header__hero-title {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
  }
}

[class*="atas_de_registro"] #ata-simplificada {
  .ata-simplificada__container {
    display: grid;
    gap: 2.5rem;
    padding-block: 2.5rem;
  }

  .ata-simplificada__image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    img {
      width: 100%;
      height: auto;
      object-fit: cover;
      max-width: 31.25rem;
    }

    svg {
      width: 100%;
      height: auto;
      max-width: 12.5rem;
    }

    .image-not-found {
      font-weight: 700;
      color: #00204d;
    }

    .ata-simplificada__image-wrapper {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      justify-content: center;
      align-items: center;
    }
  }

  .atas-simplificadas__item-valor {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fafafa;
    margin-bottom: 1.2rem;

    strong {
      display: block;
      color: #fafafa;
      font-size: 2rem;
      font-weight: 700;
      margin-top: 0.25rem;
    }
  }

  .ata-simplificada__description {
    font-size: 1rem;
    color: #fafafa;
    background: #00204d;
    background-image: url(../images/background/imf-telecom-background-azul.jpg);
    background-position: center;
    background-size: cover;
    padding: 1.5rem 1.75rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;

    ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1rem;
    }

    li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      line-height: 1.6;

      &::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #009C44;
        font-size: 0.9rem;
        top: 2px;
      }
    }

    p:not(.ata-simplificada__info-text) {
      font-size: 0.95rem;
      color: #555;
      margin-block: 1.2rem;
      font-style: italic;
      background-color: #eef6fd;
      padding: 0.75rem 1rem;
      border-left: 4px solid #0074c2;
      border-radius: 4px;
    }

    .ata-simplificada__info-text {
      margin-bottom: 1rem;
      font-style: italic;
    }
  }

  .atas-simplificadas__item-metadados {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;

    p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      flex: 1 1 220px;
      background: #eef6fd;
      color: #00204d;
      padding: 0.75rem 1rem;
      border-radius: 6px;
      border: 1px solid #e0e0e0;
    }

    strong {
      color: #00204d;
      font-weight: 700;
      margin-right: 4px;
    }
  }


  @media (min-width: 1024px) {
    .ata-simplificada__container {
      grid-template-columns: repeat(2, 1fr);
      padding-block: 5rem;
    }
  }
}

[class*="atas_de_registro"] #veja-tambem {
  padding-block: 5rem;
  background: #fafafa;

  .veja-tambem__title {
    margin-bottom: 2.5rem;
    color: #00204d;
  }

  .veja-tambem__items {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  }

  .veja-tambem__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    text-decoration: none;
    color: #00204d;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: 2px solid transparent;
    transition: outline 300ms;

    &:hover {
      .veja-tambem__item-excerpt {
        border-color: #009C44;
      }

      outline-color: #009C44;
    }
  }

  .veja-tambem__item-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10rem;
    margin-bottom: 1rem;

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

    svg {
      width: 25%;
      height: auto;
    }
  }

  .veja-tambem__item-title {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .veja-tambem__item-excerpt {
    padding-left: 1rem;
    border-left: 4px solid #ddd;
    transition: border-color 300ms;
  }

  .veja-tambem__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;

    p {
      font-weight: 700;
      font-size: 1.125rem;
      max-width: 31.25rem;
      text-align: center;
    }
  }
}

/*? Politicas de privacidade */
[class*="privacy-policy"] {
  .page-content {
    padding-block: 5rem;
  }

  .page-content__container {
    color: #1a1a1a;
    line-height: 1.7;
    background-color: #ffffff;
  }

  .page-content__container {
    font-weight: 700;
    color: #00204d;
  }

  .page-content__container p {
    margin-bottom: 1.5rem;
    color: #333;
  }

  .page-content__container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #003865;
    /* tom institucional azul escuro */
    border-left: 4px solid #009c44;
    padding-left: 12px;
  }

  .page-content__container ul.wp-block-list {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    list-style: disc;
    color: #333;
  }

  .page-content__container ul.wp-block-list li {
    margin-bottom: 0.6rem;
  }

  .page-content__container a {
    color: #0074c2;
    text-decoration: underline;
    transition: 0.2s ease;
  }

  .page-content__container a:hover {
    color: #005499;
    text-decoration: none;
  }

  .page-content__container strong {
    font-weight: 600;
  }

  .page-content__container hr.wp-block-separator {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 2.5rem 0;
    opacity: 0.5;
  }

}