body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}



.mirante-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 565px;
  width: 100%;
  background: #f3f3f1;
  overflow: hidden;
}

.mirante-hero__left {
  background: #f3f3f1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 38px 40px 68px;
}

.mirante-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mirante-hero__menu {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4e7650;
}

.mirante-hero__menu-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
}

.mirante-hero__search,
.mirante-hero__hamburger {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #4e7650;
}

.mirante-hero__search svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mirante-hero__divider {
  width: 1px;
  height: 24px;
  background: #4e7650;
  display: block;
}

.mirante-hero__hamburger {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mirante-hero__hamburger span {
  width: 100%;
  height: 2px;
  background: #4e7650;
  border-radius: 2px;
  display: block;
}

.mirante-hero__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mirante-hero__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.mirante-hero__social a:hover {
  transform: translateY(-2px);
}

.mirante-hero__social img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  display: block;
}

.mirante-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  gap: 42px;
}

.mirante-hero__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.mirante-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mirante-hero__btn-outline {
  min-width: 151px;
  height: 43px;
  border: 2px solid #4e7650;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #4e7650;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
}

.mirante-hero__btn-outline:hover {
  background: #4e7650;
  color: #ffffff;
}

.mirante-hero__btn-play {
  width: 62px;
  height: 43px;
  border-radius: 999px;
  background: #c3b16d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.mirante-hero__btn-play:hover {
  transform: scale(1.04);
}

.mirante-hero__btn-play img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.mirante-hero__right {
  position: relative;
  background-image: url("https://ifabbre.com.br/mirante/img/img_verde.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 565px;
}

.mirante-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.mirante-hero__headline {
  position: absolute;
  top: 178px;
  left: 118px;
  z-index: 2;
  max-width: 420px;
}

.mirante-hero__headline h1 {
  margin: 0;
  color: #cfc38b;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.mirante-hero__permuta {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 180px;
  max-width: 32%;
  z-index: 2;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .mirante-hero {
    grid-template-columns: 1fr;
  }

  .mirante-hero__left {
    padding: 24px 20px 32px;
  }

  .mirante-hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .mirante-hero__content {
    padding-top: 30px;
    gap: 28px;
  }

  .mirante-hero__logo {
    max-width: 320px;
  }

  .mirante-hero__right {
    min-height: 420px;
  }

  .mirante-hero__headline {
    top: 90px;
    left: 28px;
    max-width: 280px;
  }

  .mirante-hero__headline h1 {
    font-size: 32px;
  }

  .mirante-hero__permuta {
    width: 140px;
    right: 16px;
    bottom: 16px;
    max-width: 42%;
  }
}

@media (max-width: 575px) {
  .mirante-hero__menu-text {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .mirante-hero__social img {
    width: 26px;
    height: 26px;
  }

  .mirante-hero__logo {
    max-width: 280px;
  }

  .mirante-hero__actions {
    gap: 10px;
  }

  .mirante-hero__btn-outline {
    min-width: 140px;
    height: 40px;
    font-size: 11px;
    padding: 0 16px;
  }

  .mirante-hero__btn-play {
    width: 56px;
    height: 40px;
  }

  .mirante-hero__headline {
    top: 72px;
    left: 22px;
    max-width: 240px;
  }

  .mirante-hero__headline h1 {
    font-size: 28px;
  }
}

/* =========================
   INTRO (FUNDO DOURADO)
========================= */

.mirante-intro {
  position: relative;
  padding: 90px 20px 120px;
  overflow: hidden;
}

.mirante-intro__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://ifabbre.com.br/mirante/img/bg_garantir.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* overlay dourado */
.mirante-intro__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(240, 212, 148, 0.9),
    rgba(210, 170, 95, 0.7)
  );
}

/* conteúdo */
.mirante-intro__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mirante-intro__content p {
  font-size: 26px;
  line-height: 1.4;
  color: #2f5b3a;
  font-weight: 500;
  margin-bottom: 28px;
}

.mirante-intro__content strong {
  font-weight: 800;
}

/* botão */
.mirante-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  border: 2px solid #2f5b3a;
  color: #2f5b3a;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
  margin-bottom: 50px;
}

.mirante-intro__cta:hover {
  background: #2f5b3a;
  color: #fff;
}

/* =========================
   MÉTRICAS (OVAL)
========================= */

.mirante-intro__metrics {
  margin-top: 50px;
  background: rgba(214, 199, 140, 0.9);
  border-radius: 120px;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
  background-image: url("https://ifabbre.com.br/mirante/img/bg_btn.jpg");
}

.mirante-intro__metric {
  text-align: center;
  color: #2f5b3a;
}

.mirante-intro__metric span {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.mirante-intro__metric strong {
  font-size: 26px;
  font-weight: 800;
}

/* =========================
   BLOCO VERDE
========================= */

.mirante-signature {
  background: #fff;
  margin-top: 0px; 
}  

.mirante-signature__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.mirante-signature__content {
  background: #3f6b45;
  color: #fff;
  padding: 60px;
  margin: 0px 20px 0px 0px;
}

.mirante-signature__content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.mirante-signature__content p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mirante-signature__content ul {
  margin-top: 20px;
  padding-left: 18px;
}

.mirante-signature__content li {
  margin-bottom: 10px;
  font-size: 16px;
}

.mirante-signature__logo {
  margin-top: 30px;
  width: 160px;
}

/* imagem lateral */
.mirante-signature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
  .mirante-intro__metrics {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .mirante-signature__grid {
    grid-template-columns: 1fr;
  }

  .mirante-signature__content {
    padding: 40px 24px;
  }
}

.mirante-video-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.mirante-video-trigger {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.mirante-video-trigger__image {
  display: block;
  width: 100%;
  height: auto;
}

.mirante-video-trigger__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease;
}

.mirante-video-trigger:hover .mirante-video-trigger__overlay {
  background: rgba(0, 0, 0, 0.2);
}

.mirante-video-trigger__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mirante-video-trigger__play-circle {
  width: 122px;
  height: 122px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mirante-video-trigger:hover .mirante-video-trigger__play-circle {
  transform: scale(1.06);
  background: rgba(0, 0, 0, 0.28);
}

.mirante-video-trigger__play-icon {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #ffffff;
  margin-left: 6px;
}

/* MODAL */
.mirante-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.mirante-video-modal.is-active {
  display: block;
}

.mirante-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.mirante-video-modal__dialog {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  margin: 50px auto;
  z-index: 2;
}

.mirante-video-modal__close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mirante-video-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.mirante-video-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mirante-video-modal__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.mirante-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .mirante-video-trigger__play-circle {
    width: 88px;
    height: 88px;
  }

  .mirante-video-trigger__play-icon {
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #ffffff;
    margin-left: 4px;
  }

  .mirante-video-modal__dialog {
    width: calc(100% - 20px);
    margin: 70px auto 0;
  }

  .mirante-video-modal__close {
    top: -46px;
    right: 4px;
  }
}

.mirante-life {
  background: #f1f2f4;
  padding: 72px 0 62px;
  overflow: hidden;
}

.mirante-life__container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 28px;
}

.mirante-life__top {
  position: relative;
  margin-bottom: 42px;
}

.mirante-life__title {
  margin: 0;
  text-align: center;
  color: #3f6f46;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.mirante-life__arrows {
  position: absolute;
  right: 0;
  top: -4px;
  display: flex;
  gap: 10px;
}

.mirante-life__arrow {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  padding: 0;
}

.mirante-life__arrow--prev {
  background: #e4e2de;
  color: #1c1c1c;
}

.mirante-life__arrow--next {
  background: #c4b167;
  color: #ffffff;
}

.mirante-life__arrow:hover {
  transform: translateY(-1px);
}

.mirante-life__slider {
  overflow: hidden;
}

.mirante-life__track {
  display: flex;
  gap: 26px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.mirante-life__card {
  position: relative;
  flex: 0 0 calc(33.333% - 18px);
  border-radius: 14px;
  overflow: hidden;
  min-height: 365px;
  background: #ddd;
}

.mirante-life__card img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  display: block;
}

.mirante-life__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0) 65%
  );
}

.mirante-life__caption {
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.mirante-life__caption strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.mirante-life__caption span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

.mirante-life__text {
  max-width: 910px;
  margin: 48px auto 0;
  text-align: center;
}

.mirante-life__text p {
  margin: 0 0 22px;
  color: #5a785f;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.mirante-life__text strong {
  font-weight: 800;
  color: #3f6f46;
}

.mirante-life__text ul {
  list-style: disc;
  padding-left: 28px;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.mirante-life__text li {
  color: #5a785f;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.mirante-life__text li::marker {
  color: #4f7a50;
}

.mirante-life__text li strong {
  color: #3f6f46;
  font-weight: 800;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .mirante-life {
    padding: 56px 0 50px;
  }

  .mirante-life__top {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .mirante-life__arrows {
    position: static;
    justify-content: center;
  }

  .mirante-life__card {
    flex: 0 0 calc(50% - 13px);
    min-height: 320px;
  }

  .mirante-life__card img {
    height: 320px;
  }

  .mirante-life__text p,
  .mirante-life__text li {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .mirante-life__container {
    padding: 0 18px;
  }

  .mirante-life__title {
    font-size: 22px;
  }

  .mirante-life__track {
    gap: 18px;
  }

  .mirante-life__card {
    flex: 0 0 100%;
    min-height: 280px;
    border-radius: 12px;
  }

  .mirante-life__card img {
    height: 280px;
  }

  .mirante-life__caption {
    left: 18px;
    bottom: 16px;
  }

  .mirante-life__caption strong {
    font-size: 14px;
  }

  .mirante-life__caption span {
    font-size: 13px;
  }

  .mirante-life__text {
    margin-top: 34px;
  }

  .mirante-life__text p,
  .mirante-life__text li {
    font-size: 16px;
  }

  .mirante-life__text ul {
    display: block;
    padding-left: 22px;
  }
}


.mirante-launch {
  position: relative;
  background: #3f7446;
  padding: 0 0 80px;
  overflow: hidden;
}

.mirante-launch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 165px;
  background: #f1f2f4;
  z-index: 0;
}

.mirante-launch__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 28px;
}

/* CARD MAPA */
.mirante-launch__map-card {
  background: #f7f5f2;
  border-radius: 14px;
  overflow: hidden;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mirante-launch__map {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* CONTEÚDO CENTRAL */
.mirante-launch__content {
  text-align: center;
  color: #f1e4b6;
  padding: 38px 20px 46px;
}

.mirante-launch__content h2 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.mirante-launch__sub {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.mirante-launch__content h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: #d7c48a;
}

.mirante-launch__highlight {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.mirante-launch__text {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.mirante-launch__text strong {
  font-weight: 800;
  color: #ffffff;
}

/* NEWSLETTER */
.mirante-launch__newsletter {
  background-image: url("https://ifabbre.com.br/mirante/img/bg_newsletter.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 46px 40px 52px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.mirante-launch__newsletter h4 {
  margin: 0 0 28px;
  text-align: center;
  color: #3f7446;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.mirante-launch__form {
  max-width: 470px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
}

.mirante-launch__input-wrap {
  position: relative;
  flex: 1;
  height: 42px;
  background: #ffffff;
  border-radius: 999px 0 0 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mirante-launch__mail-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mirante-launch__mail-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.mirante-launch__input-wrap input {
  flex: 1;
  height: 42px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 14px 0 0;
  color: #5a5a5a;
  font-size: 13px;
  font-family: inherit;
}

.mirante-launch__input-wrap input::placeholder {
  color: #7c7c7c;
}

.mirante-launch__form button {
  width: 128px;
  min-width: 128px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  margin-left: -12px;
  background: #3f7446;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.25s ease;
}

.mirante-launch__form button:hover {
  filter: brightness(1.05);
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .mirante-launch {
    padding: 0 0 60px;
  }

  .mirante-launch::before {
    height: 110px;
  }

  .mirante-launch__content {
    padding: 30px 10px 36px;
  }

  .mirante-launch__content h2 {
    font-size: 23px;
  }

  .mirante-launch__sub,
  .mirante-launch__text {
    font-size: 16px;
  }

  .mirante-launch__newsletter {
    padding: 34px 24px 38px;
  }
}

@media (max-width: 640px) {
  .mirante-launch__container {
    padding: 0 18px;
  }

  .mirante-launch__map-card {
    padding: 12px;
    border-radius: 12px;
  }

  .mirante-launch__content h2 {
    font-size: 20px;
  }

  .mirante-launch__content h3 {
    font-size: 18px;
  }

  .mirante-launch__sub,
  .mirante-launch__text {
    font-size: 15px;
  }

  .mirante-launch__newsletter h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .mirante-launch__form {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .mirante-launch__input-wrap {
    width: 100%;
    border-radius: 999px;
  }

  .mirante-launch__form button {
    width: 100%;
    margin-left: 0;
  }
}


/* =========================
   SESSÃO 6 - SICREDI
========================= */

.mirante-sicredi {
  background: #f4f4f4;
  padding: 58px 20px 64px;
}

.mirante-sicredi__container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mirante-sicredi__logo {
  margin-bottom: 18px;
}

.mirante-sicredi__logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.mirante-sicredi__title {
  margin: 0 0 24px;
  color: #3f7446;
  font-size: 33px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.mirante-sicredi__text {
  color: #5a785f;
}

.mirante-sicredi__text p {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.45;
}

.mirante-sicredi__text strong {
  color: #3f7446;
  font-weight: 800;
}

.mirante-sicredi__cta {
  margin-top: 28px;
}

.mirante-sicredi__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  max-width: 100%;
  height: 48px;
  padding: 0 28px;
  border: 2px solid #4d6f46;
  border-radius: 999px;
  color: #4d6f46;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.mirante-sicredi__cta a:hover {
  background: #4d6f46;
  color: #ffffff;
}

/* =========================
   SESSÃO 7 - LEGAL
========================= */

.mirante-legal {
  background: #3f7446;
  padding: 58px 20px 68px;
}

.mirante-legal__container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mirante-legal__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.mirante-legal__subtitle {
  margin: 0 0 28px;
  color: #d9c98e;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.mirante-legal__content {
  color: #ffffff;
}

.mirante-legal__content p {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.5;
}

.mirante-legal__content strong {
  font-weight: 800;
}

.mirante-legal__content ul {
  max-width: 760px;
  margin: 22px auto 26px;
  padding-left: 22px;
  text-align: left;
}

.mirante-legal__content li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}

.mirante-legal__final {
  margin-top: 8px;
  font-size: 18px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
  .mirante-sicredi,
  .mirante-legal {
    padding: 48px 20px 54px;
  }

  .mirante-sicredi__title {
    font-size: 28px;
  }

  .mirante-legal__title {
    font-size: 30px;
  }

  .mirante-legal__subtitle {
    font-size: 21px;
  }

  .mirante-sicredi__text p,
  .mirante-legal__content p,
  .mirante-legal__content li {
    font-size: 17px;
  }

  .mirante-sicredi__cta a {
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .mirante-sicredi,
  .mirante-legal {
    padding: 40px 16px 46px;
  }

  .mirante-sicredi__logo img {
    width: 180px;
  }

  .mirante-sicredi__title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .mirante-legal__title {
    font-size: 24px;
  }

  .mirante-legal__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .mirante-sicredi__text p,
  .mirante-legal__content p,
  .mirante-legal__content li,
  .mirante-legal__final {
    font-size: 15px;
  }

  .mirante-sicredi__cta a {
    height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .mirante-legal__content ul {
    padding-left: 18px;
  }
}

/* =========================
   SESSÃO 8 - LOCALIZAÇÃO
========================= */

.mirante-location {
  background: #f1f2f4;
  padding-top: 42px;
}

.mirante-location__top {
  text-align: center;
  padding: 0 20px 24px;
}

.mirante-location__title {
  margin: 0 0 6px;
  color: #3f7446;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.mirante-location__address {
  margin: 0;
  color: #3f7446;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.mirante-location__city {
  margin: 4px 0 0;
  color: #5f7863;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}

.mirante-location__map {
  width: 100%;
  overflow: hidden;
}

.mirante-location__map img {
  width: 100%;
  display: block;
  height: auto;
}

/* =========================
   SESSÃO 9 - CONTATO / RODAPÉ
========================= */

.mirante-contact {
  background: #f1f2f4;
  padding: 0 20px 18px;
}

.mirante-contact__container {
  max-width: 1180px;
  margin: 0 auto;
}

/* card sobe sobre o mapa */
.mirante-contact__card {
  position: relative;
  margin-top: -64px;
  background-image: url("https://ifabbre.com.br/mirante/img/bg_form.png");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 38px 60px 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.mirante-contact__card h3 {
  margin: 0 0 14px;
  color: #3f7446;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.mirante-contact__card p {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.mirante-contact__form {
  max-width: 880px;
  margin: 0 auto;
}

.mirante-contact__row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.mirante-contact__row input {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 13px;
  color: #5d5d5d;
  outline: none;
}

.mirante-contact__row input::placeholder {
  color: #8f8f8f;
}

.mirante-contact__checks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 2px 0 18px;
  color: #ffffff;
  font-size: 14px;
  justify-content: flex-start;
}

.mirante-contact__checks > span {
  font-weight: 500;
}

.mirante-contact__checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.mirante-contact__checks input[type="radio"] {
  accent-color: #3f7446;
}

.mirante-contact__submit {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #3f7446;
  color: #d9c98e;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.mirante-contact__submit:hover {
  filter: brightness(1.05);
}

/* FOOTER */
.mirante-footer {
  text-align: center;
  padding: 42px 20px 8px;
}

.mirante-footer__title {
  margin: 0 0 18px;
  color: #3f7446;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.mirante-footer__text {
  margin: 0;
  color: #5f7863;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.mirante-footer__logos {
  margin: 42px auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1040px;
}

.mirante-footer__logos img:first-child {
  width: 165px;
  height: auto;
}

.mirante-footer__logos img:last-child {
  width: 150px;
  height: auto;
}

.mirante-footer__copy {
  margin: 0;
  color: #8b8b8b;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* barra verde final opcional */
.mirante-footer::after {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 12px;
  background: #3f7446;
  margin: 20px -20px -18px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
  .mirante-location__title {
    font-size: 28px;
  }

  .mirante-location__address {
    font-size: 22px;
  }

  .mirante-location__city {
    font-size: 19px;
  }

  .mirante-contact__card {
    padding: 30px 24px 24px;
    margin-top: -42px;
  }

  .mirante-contact__card h3 {
    font-size: 23px;
  }

  .mirante-contact__card p {
    font-size: 15px;
  }

  .mirante-footer__title {
    font-size: 26px;
  }

  .mirante-footer__text {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .mirante-location {
    padding-top: 32px;
  }

  .mirante-location__top {
    padding: 0 16px 18px;
  }

  .mirante-location__title {
    font-size: 24px;
  }

  .mirante-location__address {
    font-size: 18px;
  }

  .mirante-location__city {
    font-size: 16px;
  }

  .mirante-contact {
    padding: 0 16px 16px;
  }

  .mirante-contact__card {
    margin-top: -24px;
    border-radius: 12px;
    padding: 24px 16px 20px;
  }

  .mirante-contact__card h3 {
    font-size: 20px;
  }

  .mirante-contact__card p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .mirante-contact__row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .mirante-contact__checks {
    gap: 12px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .mirante-footer {
    padding: 34px 10px 8px;
  }

  .mirante-footer__title {
    font-size: 22px;
  }

  .mirante-footer__text {
    font-size: 15px;
  }

  .mirante-footer__logos {
    flex-direction: column;
    align-items: center;
    margin: 30px auto 24px;
  }

  .mirante-footer__logos img:first-child,
  .mirante-footer__logos img:last-child {
    width: 135px;
  }

  .mirante-footer__copy {
    font-size: 9px;
  }
}