/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --color-bg-light: #f8f9fa;
  --color-bg-subtle: #edeeef;
  --color-bg-about: #f3f4f5;
  --color-dark: #2e3132;
  --color-green: #00964e;
  --color-orange: #f37021;
  --color-text-body: #434748;
  --color-text-dark: #191c1d;
  --color-text-muted: #555;
  --color-text-green: #3e4a3d;
  --color-border: #bdcaba;
  --color-white: #fff;

  --font-display: "Archivo Narrow", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-card: 48px;
  --radius-pill: 9999px;

  --shadow-card: 0 20px 40px 0 rgba(0, 0, 0, 0.04);
  --shadow-image: 0 20px 40px 0 rgba(0, 0, 0, 0.12);

  --transition-opacity: opacity 0.2s ease;
  --padding-section: 128px 0;
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   SHARED
   ============================================================ */
.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.15;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin-bottom: 0;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  border-radius: var(--radius-pill);
  transition: width 0.25s ease;
}

.nav__link svg {
  display: none;
}

.nav__link:hover {
  color: var(--color-green);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__mobile-cta {
  display: none;
}

.nav__cta {
  display: inline-block;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: var(--transition-opacity);
}

.nav__cta:hover {
  opacity: 0.88;
  color: var(--color-white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: var(--radius-pill);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 999px) {
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin-bottom: 0;
  }

  .nav__links.is-open {
    display: flex;
    animation: menuOpen 0.25s ease forwards;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links li + li:not(:last-child) {
    border-top: 1px solid var(--color-border);
  }

  .nav__links li:nth-last-child(2) {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
  }

  .nav__link {
    width: 100%;
    padding: 16px 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link svg {
    display: block;
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      color 0.2s ease;
  }

  .nav__link:hover {
    color: var(--color-green);
    background: none;
  }

  .nav__link:hover svg {
    color: var(--color-green);
    transform: translateX(4px);
  }

  .nav__mobile-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    margin-top: 8px;
    transition: var(--transition-opacity);
  }

  .nav__mobile-cta:hover {
    opacity: 0.88;
    color: var(--color-white);
  }

  @keyframes menuOpen {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-color: var(--color-bg-light);
  padding-top: 53px;
  padding-bottom: 88px;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 90px;
  letter-spacing: -1.44px;
  margin: 0px;
}

.hero__card {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px;
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  width: 384px;
}

.hero__card-icon {
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00964e1a;
}

.hero__card-icon img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.hero__card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* lado direito */
.hero__image-wrapper {
  position: relative;
  flex-shrink: 0;
  margin-top: 44px;
}

.hero__image {
  width: 560px;
  height: 420px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-image);
  background-image: url("/assets/images/fachada.webp");
}

/* badge branco — metade pra fora na esquerda inferior */
.hero__badge {
  position: absolute;
  bottom: -35px;
  left: -30px;
  width: 196.63px;
  height: 120px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__badge-avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  object-fit: cover;
  margin-left: -8px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar-count {
  font-size: 10px;
  font-weight: 700;
  color: #f37021;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-text {
  font-size: 12px;
  color: #3e4a3d;
  line-height: 12px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero__inner {
    flex-direction: column;
    align-items: start;
  }

  .hero__image-wrapper {
    width: 100%;
    margin-top: 0px;
  }

  .hero__image {
    width: 100%;
    height: 400px;
  }

  .hero__badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__card {
    width: 100%;
  }
}

/* ============================================================
   PARTNERS & PARTNERS MODAL
   ============================================================ */
.partners {
  background-color: var(--color-white);
  padding: var(--padding-section);
  overflow: hidden;
}

.partners__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.partners__track-wrapper {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partners__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: none;
}

.partners__track.is-ready {
  animation: partnersScroll 30s linear infinite;
}

.partners__track.is-ready:hover {
  animation-play-state: paused;
}

/* Card configurado como botão interativo */
.partners__card--clickable {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.partners__card--clickable:hover {
  transform: scale(1.03);
}

.partners__card-img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.partners__card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 200px;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--partners-width, 2240px) * -1));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track.is-ready {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   ESTILOS DA DIALOG (MODAL CENTRALIZADA)
   ============================================================ */
.partners-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 600px;
  width: calc(100% - 32px);
  overflow: visible;

  /* Centralização Absoluta */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

/* Fundo desfocado e escurecido */
.partners-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Caixa principal branca */
.partners-modal__container {
  background-color: var(--color-white, #ffffff);
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

/* Cabeçalho da Modal */
.partners-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e5e7eb;
}

/* Título da Modal (Nome do Cliente/Parceiro) */
.partners-modal__header-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Botão de Fechar */
.partners-modal__close {
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  margin-right: -4px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.partners-modal__close:hover {
  opacity: 0.6;
  transform: scale(1.1);
}

/* Corpo da Modal com Rolagem se Necessário */
.partners-modal__body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Alinhamento Lado a Lado em telas maiores */
@media (min-width: 480px) {
  .partners-modal__body {
    flex-direction: row;
  }
}

.partners-modal__img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md, 8px);
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.partners-modal__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partners-modal__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted, #666666);
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background-color: var(--color-bg-about);
  padding: var(--padding-section);
}

.about__inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.about__image-wrapper {
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.about__image {
  width: 461px;
  height: 576px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-image);
  background-image: url("/assets/images/about-image.webp");
}

.about__badge {
  position: absolute;
  bottom: -35px;
  left: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--color-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.about__heading-highlight {
  color: var(--color-green);
}

.about__text {
  font-size: 18px;
  color: var(--color-text-green);
  line-height: 1.6;
  max-width: 305px;
}

.about__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about__card {
  display: flex;
  gap: 12px;
  width: 220px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about__card:first-child {
  border-left: 3px solid var(--color-green);
}

.about__card:last-child {
  border-left: 3px solid var(--color-orange);
}

.about__card img {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.about__card-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0px;
}

.about__card-label {
  min-width: 130px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-green);
  margin: 0px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background-color: var(--color-bg-light);
  padding: var(--padding-section);
}

.stats__inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.stats__card-main {
  flex: 0 0 45%;
  background-color: var(--color-green);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.stats__card-main-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.15;
}

.stats__card-main-icon img {
  width: 80px;
  height: 80px;
  display: block;
}

.stats__main-label {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.48px;
  margin-bottom: 8px;
}

.stats__main-value {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
}

.stats__main-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  max-width: 220px;
  margin-bottom: 0px;
}

.stats__cards-secondary {
  flex: 1;
  display: flex;
  gap: 32px;
}

.stats__card {
  flex: 1;
  background-color: var(--color-white);
  border-radius: 32px;
  border-top: 3px solid var(--color-orange);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stats__card-icon {
  margin-bottom: 16px;
}

.stats__card-icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.stats__card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

.stats__card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  min-height: 65px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background-color: var(--color-orange);
  padding: var(--padding-section);
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.services__header-text {
  flex: 1;
}

.services__eyebrow {
  color: #fff;
}

.services__heading {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.services__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.services__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--color-white);
}

.services__carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.services__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.services__track::-webkit-scrollbar {
  display: none;
}

.services__card {
  scroll-snap-align: start;
  flex: 0 0 362.66px;
  display: flex;
  flex-direction: column;
}

.services__card-img {
  width: 362.66px;
  height: 362.66px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.services__card-body {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}

.services__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  padding-bottom: 8px;
}

.services__card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.services__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.services__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.services__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-color: var(--color-bg-light);
  padding: var(--padding-section);
}

.faq__header {
  text-align: center;
  margin-bottom: 96px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-left-color 0.2s ease;
}

.faq__item[open] {
  border-left-color: var(--color-orange);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  font-size: 16px;
  color: var(--color-text-green);
  line-height: 1.7;
  padding: 0 24px 20px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background-color: var(--color-bg-subtle);
  padding: var(--padding-section);
}

.location__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.location__content {
  flex: 0 0 362.67px;
  display: flex;
  flex-direction: column;
}

.location__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 32px;
  font-style: normal;
}

.location__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.location__contact-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.location__contact-text a {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  line-height: 1.5;
}

.location__contact-text a:hover {
  text-decoration: underline;
}

.location__contact-text span {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.location__btn {
  display: inline-block;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-opacity);
  width: fit-content;
}

.location__btn:hover {
  opacity: 0.88;
}

.location__map {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--color-white);
  align-self: stretch;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background-color: var(--color-bg-light);
  padding: 70px 0;
}

.cta__box {
  background-color: var(--color-dark);
  border-radius: var(--radius-card);
  padding: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 31px;
  position: relative;
  overflow: hidden;
}

.cta__blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.1);
  filter: blur(64px);
  pointer-events: none;
}

.cta__blob--tr {
  top: -80px;
  right: -80px;
}

.cta__blob--bl {
  bottom: -80px;
  left: -80px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
}

.cta__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cta__btn {
  font-family: var(--font-display);
  display: inline-block;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  padding: 21px 48px;
  border-radius: var(--radius-pill);
  transition: var(--transition-opacity);
}

.cta__btn:hover {
  opacity: 0.88;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 90px 0 25px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.footer__logo {
  width: 90px;
  height: 90px;
}

.footer__slogan {
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 420px;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
}

.footer__socials {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-opacity);
}

.footer__social-icon:hover {
  opacity: 0.8;
}

.footer__social-icon img {
  width: 20px;
  height: 20px;
}

.footer__copy {
  font-size: 16px;
  color: var(--color-text-body);
  text-align: end;
  opacity: 0.8;
}

.footer-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 999px) {
  .about__inner {
    flex-direction: column;
    gap: 56px;
  }

  .about__image {
    width: 100%;
    height: 320px;
  }

  .about__image-wrapper {
    width: 100%;
  }

  .about__heading {
    font-size: 36px;
  }

  .about__badge {
    display: none;
  }

  .stats__main-label {
    font-size: 22px;
    line-height: 32px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__meta {
    align-items: flex-start;
  }

  .footer__socials {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .footer__copy {
    text-align: start;
  }

  .stats__inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 36px;
  }

  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__cta {
    width: 100%;
    justify-content: center;
  }

  .services__card {
    flex: 0 0 280px;
  }

  .services__card-img {
    width: 280px;
    height: 280px;
  }

  .location__inner {
    flex-direction: column;
    gap: 40px;
  }

  .location__content {
    flex: unset;
    width: 100%;
  }

  .location__map {
    width: 100%;
  }

  .cta__box {
    padding: 64px 32px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__btn {
    width: 100%;
    padding: 21px;
  }
}

@media (max-width: 480px) {
  .stats__cards-secondary {
    flex-direction: column;
  }

  .about__cards {
    flex-direction: column;
  }

  .footer-item {
    flex-direction: column;
    gap: 4px;
    align-items: start;
  }

  .hero__heading {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 1300px) {
  .about__badge {
    display: none;
  }
}

@media (max-width: 530px) {
  .about__card {
    width: 100%;
    justify-content: start;
  }
}

/* links do footer com classe própria, sem herdar estilos do nav */
.footer__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-green);
}
