:root {
  --red-primary: #ed1847;
  --red-strong: #ff1147;
  --gray-soft: #f7f8fa;
  --text-dark: #575756;
  --white: #ffffff;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  background: var(--red-primary);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand img {
  width: 96px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.flip-card {
  width: 180px;
  height: 64px;
  perspective: 700px;
  text-decoration: none;
}

.flip-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-visible .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 18px;
  backface-visibility: hidden;
  border: 0;
  color: var(--white);
}

.flip-front {
  font-size: 28px;
  font-weight: 400;
}

.flip-back {
  transform: rotateY(180deg);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: var(--white);
}

.menu-btn span + span {
  margin-top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--red-strong);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 22px;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.close-btn {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-logo {
  width: 165px;
}

.mobile-nav {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 35px;
  font-weight: 400;
}

.hero {
  min-height: 650px;
  margin-top: 73px;
  background-image: url("./assets/images/2023/08/Background_mude_home.jpg");
  background-size: cover;
  background-position: center bottom;
}

.manifesto {
  padding: 34px 0;
  display: grid;
  place-items: center;
}

.manifesto p {
  max-width: 880px;
  margin: 0;
  text-align: center;
  font-size: 44px;
  line-height: 1.12;
  color: var(--red-primary);
}

.ecosystem {
  width: 100%;
  padding: 0;
  background: #f7f8fa;
}

.eco-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  max-width: none;
  margin: 0 auto;
}

.eco-card {
  background: transparent;
  padding: 120px 80px;
  height: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.eco-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.eco-image {
  min-height: 760px;
}

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

.impact {
  padding: 48px 0 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.impact-item {
  text-align: center;
  padding: 10px 8px;
}

.impact-number {
  margin: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--text-dark);
}

.impact-label {
  margin: 12px auto 0;
  max-width: 240px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer {
  background: var(--red-strong);
  color: var(--white);
  padding: 42px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr 1.2fr;
  gap: 24px;
  align-items: flex-start;
}

.footer-logo {
  width: 128px;
  display: block;
}

.footer-sublogo {
  width: 130px;
  display: block;
  margin-top: 14px;
}

.copyright {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.simple-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.simple-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.simple-links a:hover {
  text-decoration: underline;
}

.app-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.store-badge {
  display: block;
  margin-top: 12px;
}

.store-badge img {
  width: 170px;
  display: block;
}

@media (max-width: 1024px) {
  .flip-card {
    width: 160px;
    height: 58px;
  }

  .flip-front {
    font-size: 24px;
  }

  .flip-back {
    font-size: 15px;
  }

  .manifesto p {
    font-size: 36px;
  }

  .eco-card {
    padding: 44px;
  }

  .eco-card h2 {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    min-height: 74px;
  }

  .brand img {
    width: 108px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    margin-top: 74px;
    min-height: 570px;
    background-position: 36% 0;
  }

  .manifesto {
    padding: 30px 0;
  }

  .manifesto p {
    font-size: 31px;
    line-height: 1.4;
  }

  .eco-grid {
    grid-template-columns: 1fr;
  }

  .eco-card {
    order: 1;
    padding: 42px 20px;
  }

  .eco-card h2 {
    font-size: 20px;
    text-align: center;
  }

  .eco-image {
    order: 2;
  }

  .impact {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .impact-item {
    padding: 10px 0;
  }

  .impact-number {
    font-size: 65px;
  }

  .impact-label {
    font-size: 15px;
  }

  .site-footer {
    padding: 30px 0 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .store-badge img {
    width: 164px;
  }
}

.flip-card.is-active .flip-face {
  border-color: rgba(255, 255, 255, 0.65);
}

.media-page {
  background: #ffffff;
}

.media-page .topbar-inner {
  min-height: 74px;
}

.media-page .brand img {
  width: 96px;
}

.media-page .desktop-nav {
  gap: 36px;
}

.media-page .flip-card {
  width: auto;
  height: auto;
  perspective: none;
}

.media-page .flip-card-inner {
  transform: none;
  transition: none;
}

.media-page .flip-face {
  position: static;
  inset: auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.media-page .flip-front {
  font-size: 20px;
  font-weight: 500;
}

.media-page .flip-back {
  display: none;
}

.media-hero {
  margin-top: 74px;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 30px 0 22px;
}

.media-hero-content {
  color: #aa183c;
  max-width: 100%;
}

.media-kicker {
  display: none;
}

.media-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 60px;
  line-height: 67px;
  font-weight: 500;
  text-align: left;
}

.media-local-nav {
  background: #ffffff;
  border-bottom: 0;
  padding-top: 10px;
  padding-bottom: 24px;
}

.media-local-nav-inner {
  display: flex;
  align-items: center;
  gap: 38px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  justify-content: flex-start;
}

.media-local-nav-inner::before {
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 8px;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23575756' d='M143%20352.3L7%20216.3c-9.4-9.4-9.4-24.6%200-33.9l22.6-22.6c9.4-9.4%2024.6-9.4%2033.9%200l96.4%2096.4%2096.4-96.4c9.4-9.4%2024.6-9.4%2033.9%200l22.6%2022.6c9.4%209.4%209.4%2024.6%200%2033.9l-136%20136c-9.2%209.4-24.4%209.4-33.8%200z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.media-local-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.media-local-nav a:hover {
  color: var(--red-primary);
}

.media-impact-intro {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 60%),
    url("./assets/images/2024/08/web-estacoes-mercado-livre-maracana.jpg");
  background-size: cover;
  background-position: center center;
  color: var(--white);
  padding: 0;
}

.media-impact-grid {
  min-height: 920px;
  display: flex;
  align-items: flex-start;
  padding-top: 78px;
}

.media-impact-grid h2 {
  margin: 0;
  font-size: 57px;
  line-height: 62px;
  font-weight: 400;
  max-width: 420px;
}

.media-metrics {
  padding: 0;
}

.media-metrics.primary {
  background: linear-gradient(90deg, #7f0f36 0%, #ea1847 100%);
  color: var(--white);
}

.media-metrics.primary .impact-number,
.media-metrics.primary .impact-label {
  color: var(--white);
}

.media-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.media-metric-item {
  text-align: center;
  padding: 30px;
}

.media-metrics .impact-number {
  font-size: 61px;
  line-height: 1;
}

.media-metrics .impact-label {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0;
}

.media-ooh {
  background: #f1f1f1;
  padding: 52px 0;
}

.media-ooh h2 {
  margin: 0 0 24px;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 500;
}

.media-dual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.media-info-card {
  background: #f1f1f1;
  padding: 16px;
}

.media-info-card img {
  width: 100%;
  display: block;
}

.media-info-card h3 {
  margin: 16px 0 20px;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 550;
}

.media-info-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  background: #575756;
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 10px;
}

.media-metrics.secondary {
  background: #ffffff;
  padding: 40px 0;
}

.media-metrics.secondary .impact-number,
.media-metrics.secondary .impact-label {
  color: var(--red-primary);
}

.brand-experience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-image {
  min-height: 600px;
  background-image: url("./assets/images/2023/07/img_background_media.jpg");
  background-size: cover;
  background-position: center center;
}

.brand-copy {
  background: linear-gradient(43deg, #8f0f36 0%, #e91846 100%);
  color: var(--white);
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-copy h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 500;
}

.brand-copy p {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

.brand-copy .cta-button {
  margin-top: 26px;
  background: #ffffff;
  color: var(--red-primary);
  align-self: flex-start;
  width: fit-content;
}

.media-showcase {
  --showcase-gap: 69px;
  background: #ffffff;
  padding: 60px 0 72px;
}

.media-showcase .container {
  width: min(1140px, calc(100% - 2.5rem));
  overflow: visible;
}

.showcase-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.showcase-btn {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212121;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.showcase-btn svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.showcase-btn.next svg {
  transform: rotate(180deg);
}

.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--showcase-gap)) / 2);
  gap: var(--showcase-gap);
  margin: 0;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  background: transparent;
  scroll-snap-align: start;
  width: auto;
  position: relative;
}

.showcase-card img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.showcase-card h3 {
  margin: 0;
  min-height: 56px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  background: #aa183c;
  letter-spacing: 0.04em;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-card h3::after {
  content: "+";
  position: static;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

.media-metrics.tertiary {
  background: #f1f1f1;
  padding: 27px 0;
}

.media-metrics.tertiary .impact-number,
.media-metrics.tertiary .impact-label {
  color: var(--text-dark);
}

.partners {
  padding: 25px 0;
  background: #706f6f;
}

.partners .container {
  width: min(1140px, calc(100% - 2.5rem));
}

.partners h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

.partners-carousel {
  --partners-gap: 40px;
  --partners-visible: 7;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.partners-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.partners-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.partners-btn.next svg {
  transform: rotate(180deg);
}

.partners-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--partners-gap) * (var(--partners-visible) - 1))) / var(--partners-visible));
  gap: var(--partners-gap);
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-track::-webkit-scrollbar {
  display: none;
}

.partners-logo-item {
  margin: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
}

.partners-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

.products {
  background: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.product-card::before {
  background-image: var(--card-front);
  opacity: 1;
}

.product-card::after {
  background-image: var(--card-back, var(--card-front));
  opacity: 0;
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 0;
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 1;
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.62) 100%);
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.product-card:hover .product-overlay,
.product-card:focus-within .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-overlay h3 {
  margin: 0;
  max-width: 84%;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.product-overlay p {
  margin: 8px 0 0;
  max-width: 84%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.22;
}

.media-page .purpose {
  background: #f1f1f1;
  padding: 60px 0;
  color: #575756;
}

.media-page .purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.media-page .purpose-copy {
  padding: 25px 25px 0;
}

.media-page .purpose h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  color: #575756;
  white-space: nowrap;
}

.media-page .purpose p {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.35;
  color: #575756;
}

.media-page .purpose p strong {
  font-weight: 600;
}

.media-page .purpose-ods {
  width: min(500px, 100%);
  display: block;
  justify-self: end;
  padding: 28px;
}

.media-page .contact {
  background: #ffffff;
  border-top: 1px solid #ececec;
  padding: 80px 0;
}

.media-page .contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.95fr;
  gap: 20px;
  align-items: center;
}

.media-page .contact-copy {
  padding: 20px;
}

.media-page .contact-copy h2 {
  margin: 0;
  font-size: 60px;
  line-height: 61px;
  font-weight: 500;
  color: #575756;
}

.media-page .contact-copy p {
  margin: 22px 0 0;
  font-size: 28px;
  line-height: 1.32;
  color: #575756;
  max-width: 420px;
}

.media-page .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: #575756;
}

.media-page .contact-link-icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.media-page .contact-link-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.media-page .contact-link:hover,
.media-page .contact-link:focus-visible {
  color: #ed1847;
}

.media-page .contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 5px;
}

.media-page .jotform-embed {
  grid-column: 1 / -1;
  width: 100%;
}

.media-page .jotform-embed iframe[id^="JotFormIFrame-"] {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 1000px;
  border: 0 !important;
}

.media-page .contact-form .field-full {
  grid-column: 1 / -1;
}

.media-page .contact-form input[type="text"],
.media-page .contact-form input[type="email"],
.media-page .contact-form input[type="tel"],
.media-page .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9b9b9;
  padding: 11px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: #000000;
}

.media-page .contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.media-page .checkline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #414141;
}

.media-page .checkline input {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #8a8a8a;
  border-radius: 50%;
  margin: 3px 0 0;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.media-page .checkline input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #575756;
}

.media-page .contact-form button {
  margin-top: 10px;
  width: min(100%, 270px);
  border: 0;
  border-radius: 10px;
  background: #ec1847;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  justify-self: start;
}

.media-page .form-note {
  margin: 4px 0 0;
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  text-transform: uppercase;
  grid-column: 1 / -1;
  max-width: 670px;
  width: 100%;
  justify-self: center;
  margin-left: 0;
  text-align: center;
}

.media-page .site-footer {
  background: #ff1147;
  color: #ffffff;
  padding: 30px 0 20px;
}

.media-page .media-footer-grid {
  display: grid;
  grid-template-columns: 14.5% 24% 8.5% 16% 21% 14%;
  gap: 0;
  align-items: start;
}

.media-page .footer-brand {
  padding: 6px;
}

.media-page .footer-brand .footer-logo {
  width: 100%;
  max-width: 130px;
}

.media-page .footer-brand .footer-sublogo {
  width: 100%;
  max-width: 124px;
  margin-top: 10px;
}

.media-page .footer-meta {
  padding: 10px 0;
}

.media-page .footer-meta .copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.media-page .footer-social {
  display: grid;
  grid-template-columns: repeat(2, min-content);
  gap: 11px 11px;
  padding: 6px 5px;
}

.media-page .footer-social a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}

.media-page .footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.media-page .footer-social a:hover {
  color: #262626;
}

.media-page .footer-links-col {
  padding: 10px 0;
}

.media-page .footer-policy-links {
  gap: 13px;
}

.media-page .footer-policy-links a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.media-page .footer-policy-links a:hover {
  color: #262626;
}

.media-page .footer-app-copy {
  padding: 10px 10px;
}

.media-page .footer-app-copy .app-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #ffffff;
}

.media-page .footer-stores {
  padding-top: 6px;
}

.media-page .footer-stores .store-badge {
  margin-top: 0;
}

.media-page .footer-stores .store-badge + .store-badge {
  margin-top: 12px;
}

.media-page .footer-stores .store-badge img {
  width: 100%;
  max-width: 174px;
}

@media (max-width: 1024px) {
  .media-hero h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  .media-impact-grid h2 {
    font-size: 46px;
    line-height: 1.15;
  }

  .media-impact-grid {
    min-height: 760px;
  }

  .media-ooh h2,
  .brand-copy h2 {
    font-size: 42px;
  }

  .brand-copy p {
    font-size: 20px;
  }

  .media-showcase {
    --showcase-gap: 44px;
  }

  .showcase-card img {
    height: 420px;
  }

  .partners-carousel {
    --partners-visible: 5;
    --partners-gap: 28px;
    grid-template-columns: 44px 1fr 44px;
  }

  .product-card {
    min-height: 400px;
  }

  .product-overlay {
    padding: 36px;
  }

  .media-page .purpose h2 {
    font-size: 45px;
    white-space: normal;
  }

  .media-page .purpose p {
    font-size: 25px;
  }

  .media-page .contact-copy h2 {
    font-size: 52px;
    line-height: 1.05;
  }

  .media-page .contact-copy p {
    font-size: 22px;
  }

  .media-page .media-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .media-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .media-hero {
    margin-top: 74px;
    min-height: auto;
    padding: 20px 0 16px;
  }

  .media-page .brand img {
    width: 108px;
  }

  .media-kicker {
    font-size: 18px;
  }

  .media-hero h1,
  .media-impact-grid h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .media-local-nav {
    padding-top: 6px;
    padding-bottom: 16px;
  }

  .media-local-nav-inner {
    padding: 0;
    gap: 14px;
    letter-spacing: 0.04em;
  }

  .media-local-nav-inner::before {
    width: 18px;
    height: 18px;
    margin-right: 2px;
  }

  .media-local-nav a {
    font-size: 13px;
  }

  .media-impact-grid {
    min-height: 620px;
    padding-top: 30px;
  }

  .media-metrics .impact-number {
    font-size: 65px;
  }

  .media-showcase {
    --showcase-gap: 22px;
    padding: 42px 0 54px;
  }

  .media-showcase .container {
    width: min(1140px, calc(100% - 1.4rem));
  }

  .showcase-track {
    grid-auto-columns: 86%;
  }

  .showcase-card img {
    height: 375px;
  }

  .showcase-card h3 {
    min-height: 48px;
    padding: 0 12px;
    font-size: 12px;
  }

  .partners {
    padding: 30px 0;
  }

  .partners .container {
    width: min(1140px, calc(100% - 1.4rem));
  }

  .partners h2 {
    font-size: 20px;
  }

  .partners-carousel {
    --partners-visible: 2;
    --partners-gap: 22px;
    grid-template-columns: 36px 1fr 36px;
    gap: 4px;
    margin-top: 16px;
  }

  .partners-btn {
    width: 36px;
    height: 36px;
  }

  .partners-btn svg {
    width: 24px;
    height: 24px;
  }

  .partners-logo-item {
    min-height: 48px;
  }

  .partners-logo-item img {
    max-height: 34px;
  }

  .media-metrics-grid,
  .media-dual-cards,
  .media-page .purpose-grid,
  .media-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-page .contact-grid {
    align-items: start;
  }

  .media-metric-item {
    padding: 10px 0;
  }

  .media-ooh {
    padding: 36px 0;
  }

  .media-ooh h2,
  .brand-copy h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  .media-info-card p {
    font-size: 17px;
  }

  .brand-experience {
    grid-template-columns: 1fr;
  }

  .brand-image {
    min-height: 280px;
  }

  .brand-copy {
    padding: 22px;
  }

  .brand-copy p {
    font-size: 18px;
  }

  .showcase-controls {
    margin-top: 10px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 360px;
  }

  .product-overlay {
    padding: 22px;
  }

  .product-overlay h3 {
    font-size: 31px;
    max-width: 90%;
  }

  .product-overlay p {
    font-size: 19px;
    max-width: 90%;
  }

  .media-page .purpose {
    padding: 42px 0;
  }

  .media-page .purpose-copy {
    padding: 0;
  }

  .media-page .purpose h2 {
    font-size: 45px;
  }

  .media-page .purpose p {
    font-size: 28px;
  }

  .media-page .purpose-ods {
    padding: 0;
    justify-self: start;
  }

  .media-page .contact {
    padding: 54px 0;
  }

  .media-page .contact-copy {
    padding: 0;
  }

  .media-page .contact-copy h2 {
    font-size: 38px;
  }

  .media-page .contact-copy p {
    font-size: 18px;
  }

  .media-page .contact-form {
    grid-template-columns: 1fr;
    border-radius: 0;
    padding: 0;
  }

  .media-page .contact-form .field-full {
    grid-column: 1;
  }

  .media-page .contact-form button {
    width: min(100%, 240px);
  }

  .media-page .media-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .media-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    padding-left: 0;
  }

  .media-page .footer-stores .store-badge img {
    max-width: 160px;
  }
}

.wellness-page {
  background: #ffffff;
  --wellness-top-max-width: 1040px;
}

.wellness-page .topbar .container,
.wellness-page .wellness-intro .container,
.wellness-page .wellness-local-nav .container {
  width: min(var(--wellness-top-max-width), calc(100% - 2.5rem));
}

.wellness-page .topbar {
  background: #ed1847;
}

.wellness-page .topbar-inner {
  min-height: 64px;
}

.wellness-page .brand img {
  width: 92px;
}

.wellness-page .desktop-nav {
  gap: 36px;
}

.wellness-page .flip-card {
  width: auto;
  height: auto;
  perspective: none;
}

.wellness-page .flip-card-inner {
  transform: none;
  transition: none;
}

.wellness-page .flip-card:hover .flip-card-inner,
.wellness-page .flip-card:focus-visible .flip-card-inner {
  transform: none;
}

.wellness-page .flip-face {
  position: static;
  inset: auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.wellness-page .flip-front {
  font-size: 20px;
  font-weight: 500;
}

.wellness-page .flip-back {
  display: none;
}

.wellness-page .wellness-intro {
  margin-top: 64px;
  padding: 30px 0 8px;
  background: #ffffff;
}

.wellness-page .wellness-intro-title {
  margin: 0;
  font-size: 53px;
  line-height: 67px;
  font-weight: 475;
  color: #f26927;
}

.wellness-page .wellness-local-nav {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  margin-top: 0;
  position: relative;
  z-index: 4;
}

.wellness-page .wellness-local-nav-inner {
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 25px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.wellness-page .wellness-nav-arrow {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wellness-page .wellness-nav-arrow svg {
  width: 24px;
  height: 24px;
  fill: #575756;
}

.wellness-page .wellness-local-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #575756;
}

.wellness-page .wellness-local-nav a:hover {
  color: #f26927;
}

.wellness-page .wellness-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 70px;
  background-image: url("./assets/images/2023/08/site_OP07-D_Wellness_backogrund.jpg");
  background-size: cover;
  background-position: bottom left;
}

.wellness-page .wellness-hero-grid {
  display: grid;
  grid-template-columns: 28.42% 1fr;
  gap: 30px;
  align-items: end;
}

.wellness-page .wellness-hero-app {
  background: #f26927;
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 8px;
  color: #ffffff;
}

.wellness-page .wellness-hero-app h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  color: #ffffff;
  padding: 0 10px 10px;
}

.wellness-page .wellness-app-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.wellness-page .wellness-app-badges img {
  width: 100%;
  display: block;
}

.wellness-page .wellness-hero-copy p {
  margin: 0;
  text-align: right;
  font-size: 36px;
  line-height: 47px;
  font-weight: 500;
  color: #ffffff;
}

.wellness-page .wellness-metrics {
  background: linear-gradient(90deg, #ed1b45 0%, #f26927 100%);
  padding: 10px 0;
  color: #ffffff;
}

.wellness-page .wellness-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.wellness-page .wellness-metric-item {
  text-align: center;
  padding: 30px;
}

.wellness-page .wellness-impact-number {
  margin: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 55px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.wellness-page .wellness-impact-label {
  margin: 5px 0 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.wellness-page .wellness-modalidades {
  background: #f1f1f1;
  padding: 45px 0 40px;
  scroll-margin-top: 110px;
}

.wellness-page .wellness-modalidades-head {
  display: grid;
  grid-template-columns: 37% 63%;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
}

.wellness-page .wellness-modalidades-head h2 {
  margin: 0;
  font-size: 52px;
  line-height: 64px;
  font-weight: 500;
  color: #575756;
}

.wellness-page .wellness-modalidades-head p {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 400;
  color: #606060;
}

.wellness-page .wellness-modalities-slider {
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  max-width: none;
}

.wellness-page .wellness-modalities-btn {
  position: absolute;
  bottom: -5px;
  border: 0;
  background: transparent;
  width: 37px;
  height: 37px;
  line-height: 37px;
  margin-top: calc(-37px / 2);
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #212121;
  z-index: 2;
}

.wellness-page .wellness-modalities-btn svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.wellness-page .wellness-modalities-btn[data-scroll="-1"] {
  left: 47%;
  right: auto;
}

.wellness-page .wellness-modalities-btn[data-scroll="1"] {
  right: 47%;
  left: auto;
}

.wellness-page .wellness-modalities-btn[data-scroll="1"] svg {
  transform: rotate(180deg);
}

.wellness-page .wellness-modalities-track {
  display: flex;
  gap: 2px;
  overflow: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0;
}

.wellness-page .wellness-modalities-track::-webkit-scrollbar {
  display: none;
}

.wellness-page .wellness-modal-card {
  flex: 0 0 50%;
  min-width: 50%;
  scroll-snap-align: start;
}

.wellness-page .wellness-modal-card-inner {
  position: relative;
  width: min(1000px, calc(100% - 0.1px));
  margin: 0 auto;
  height: 550px;
  transition: opacity 0.5s ease;
}

.wellness-page .wellness-modal-face {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
}

.wellness-page .wellness-modal-front {
  background-image: var(--modal-front);
  opacity: 1;
  z-index: 1;
}

.wellness-page .wellness-modal-back {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), var(--modal-back);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 80px;
  opacity: 0;
  z-index: 2;
}

.wellness-page .wellness-modal-back h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
  color: #ffffff;
  text-align: center;
}

.wellness-page .wellness-modal-card:hover .wellness-modal-front,
.wellness-page .wellness-modal-card:focus-within .wellness-modal-front {
  opacity: 0;
}

.wellness-page .wellness-modal-card:hover .wellness-modal-back,
.wellness-page .wellness-modal-card:focus-within .wellness-modal-back {
  opacity: 1;
}

.wellness-page .wellness-where {
  background: #ffffff;
  padding: 30px 0 40px;
}

.wellness-page .wellness-where h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 67px;
  color: #f26927;
}

.wellness-page .wellness-where p {
  margin: 20px 0 0;
  max-width: 1100px;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 400;
  color: #606060;
}

.wellness-page .wellness-app-banner {
  background-image: url("./assets/images/2023/07/background_baixe_o_APP.jpg");
  background-size: cover;
  background-position: bottom right;
  padding: 0;
}

.wellness-page .wellness-app-banner-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.wellness-page .wellness-app-banner-left {
  width: 100%;
}

.wellness-page .wellness-app-banner-right {
  min-height: 1px;
}

.wellness-page .wellness-app-banner-title {
  margin: 0;
  max-width: 104.91%;
  font-size: 64px;
  line-height: 76px;
  font-weight: 500;
  color: #ffffff;
}

.wellness-page .wellness-app-banner-badges {
  display: grid;
  width: 30%;
  gap: 10px;
  margin-top: 40px;
}

.wellness-page .wellness-app-banner-badges img {
  width: 100%;
  display: block;
  border-radius: 10px;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.wellness-page .wellness-partners {
  background: linear-gradient(34deg, #ed1946 0%, #f26927 61%);
  color: #ffffff;
  padding: 50px 0;
}

.wellness-page .wellness-partners h2 {
  margin: 10;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
}

.wellness-page .wellness-partners-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.wellness-page .wellness-partners-grid img {
  width: 90%;
  display: block;
}

.wellness-page .wellness-partners-grid p {
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 45px;
  font-weight: 400;
  color: #ffffff;
}

.wellness-page .wellness-apply {
  background: #ffffff;
  padding: 80px 0;
}

.wellness-page .wellness-apply-grid {
  display: grid;
  grid-template-columns: 39.911% 60.089%;
  gap: 0;
  align-items: start;
}

.wellness-page .wellness-apply-copy h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 600;
  line-height: 68px;
  color: #575756;
}

.wellness-page .wellness-apply-copy p {
  margin: 26px 0 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.38;
  color: #575756;
}

.wellness-page .wellness-apply-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 0 50px 15px;
}

.wellness-page .wellness-apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 5px;
}

.wellness-page .jotform-embed {
  grid-column: 1 / -1;
  width: 100%;
}

.wellness-page .jotform-embed iframe[id^="JotFormIFrame-"] {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 1000px;
  border: 0 !important;
}

.wellness-page .wellness-apply-form .field-full {
  grid-column: 1 / -1;
}

.wellness-page .wellness-apply-form input[type="text"],
.wellness-page .wellness-apply-form input[type="email"],
.wellness-page .wellness-apply-form input[type="tel"],
.wellness-page .wellness-apply-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9b9b9;
  padding: 11px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: #000000;
}

.wellness-page .wellness-apply-form textarea {
  min-height: 112px;
  resize: vertical;
}

.wellness-page .wellness-radio-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #414141;
}

.wellness-page .wellness-radio-line input {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #8a8a8a;
  border-radius: 50%;
  margin: 3px 0 0;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.wellness-page .wellness-radio-line input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #575756;
}

.wellness-page .wellness-apply-form button {
  margin-top: 30px;
  width: min(33%, 270px);
  min-width: 160px;
  border: 0;
  border-radius: 10px;
  background: #ed1847;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  justify-self: start;
}

.wellness-page .wellness-form-note {
  margin: 10px 0 0;
  margin-left: 28px; /* move para a direita */
  max-width: 560px;  /* encurta a linha */
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
  text-transform: uppercase;
  color: #282828;
}

.wellness-page .site-footer {
  background: #ff1147;
  color: #ffffff;
  padding: 30px 0 20px;
}

.wellness-page .wellness-footer-grid {
  display: grid;
  grid-template-columns: 14.5% 24% 8.5% 16% 21% 14%;
  gap: 0;
  align-items: start;
}

.wellness-page .footer-brand {
  padding: 6px;
}

.wellness-page .footer-brand .footer-logo {
  width: 100%;
  max-width: 130px;
}

.wellness-page .footer-brand .footer-sublogo {
  width: 100%;
  max-width: 124px;
  margin-top: 10px;
}

.wellness-page .footer-meta {
  padding: 10px 0;
}

.wellness-page .footer-meta .copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.wellness-page .footer-social {
  display: grid;
  grid-template-columns: repeat(2, min-content);
  gap: 11px 11px;
  padding: 6px 5px;
}

.wellness-page .footer-social a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}

.wellness-page .footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.wellness-page .footer-social a:hover {
  color: #262626;
}

.wellness-page .footer-links-col {
  padding: 10px 0;
}

.wellness-page .footer-policy-links {
  gap: 25px;
}

.wellness-page .footer-policy-links a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.wellness-page .footer-policy-links a:hover {
  color: #262626;
}

.wellness-page .footer-app-copy {
  padding: 10px 10px;
}

.wellness-page .footer-app-copy .app-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #ffffff;
}

.wellness-page .footer-stores {
  padding-top: 6px;
}

.wellness-page .footer-stores .store-badge {
  margin-top: 0;
}

.wellness-page .footer-stores .store-badge + .store-badge {
  margin-top: 12px;
}

.wellness-page .footer-stores .store-badge img {
  width: 85%;
  max-width: 174px;
}

@media (max-width: 1200px) {
  .wellness-page .wellness-intro-title {
    font-size: 52px;
    line-height: 1.2;
  }

  .wellness-page .wellness-local-nav-inner {
    gap: 30px;
  }

  .wellness-page .wellness-local-nav a {
    font-size: 15px;
  }

  .wellness-page .wellness-hero-copy p {
    font-size: 30px;
    line-height: 1.35;
  }

  .wellness-page .wellness-modal-back h3 {
    font-size: 34px;
  }

  .wellness-page .wellness-where h2 {
    font-size: 55px;
    line-height: 1.2;
  }

  .wellness-page .wellness-where p {
    font-size: 25px;
  }

  .wellness-page .wellness-app-banner-title {
    font-size: 55px;
    line-height: 1.2;
  }

  .wellness-page .wellness-partners h2 {
    font-size: 37px;
  }

  .wellness-page .wellness-partners-grid p {
    font-size: 19px;
    line-height: 1.5;
  }

  .wellness-page .wellness-apply-copy h2 {
    font-size: 40px;
    line-height: 1.25;
  }

  .wellness-page .wellness-apply-copy p {
    font-size: 25px;
  }

  .wellness-page .wellness-apply-form-wrap {
    padding: 0 20px 20px;
  }

  .wellness-page .wellness-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .wellness-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .wellness-page .topbar-inner {
    min-height: 74px;
  }

  .wellness-page .brand img {
    width: 122px;
  }

  .wellness-page .wellness-intro {
    margin-top: 74px;
    padding: 20px 0 24px;
  }

  .wellness-page .wellness-intro-title {
    font-size: 35px;
    line-height: 1.2em;
  }

  .wellness-page .wellness-local-nav {
    margin-top: 0;
    padding-bottom: 10px;
  }

  .wellness-page .wellness-local-nav-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    align-items: start;
    overflow: visible;
    white-space: normal;
    padding: 8px 0;
  }

  .wellness-page .wellness-local-nav a {
    font-size: 13px;
    line-height: 1.25;
    display: block;
  }

  .wellness-page .wellness-nav-arrow {
    display: none;
  }

  .wellness-page .wellness-nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .wellness-page .wellness-hero {
    padding: 301px 0 0;
    background-position: -81px 0;
    position: relative;
  }

  .wellness-page .wellness-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(253, 0, 0, 0) 0%, rgba(0, 0, 0, 0.63) 100%);
    opacity: 0.5;
  }

  .wellness-page .wellness-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wellness-page .wellness-hero-copy {
    order: 1;
  }

  .wellness-page .wellness-hero-copy p {
    text-align: left;
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.25;
  }

  .wellness-page .wellness-hero-app {
    order: 2;
    justify-self: center;
    width: min(100%, 320px);
    margin: 10px 0 18px;
    margin-inline: auto;
    text-align: center;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .wellness-page .wellness-app-badges {
    grid-template-columns: 1fr;
    width: min(150px, 32vw);
    gap: 10px;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wellness-page .wellness-app-badges a {
    display: block;
    width: 100%;
  }

  .wellness-page .wellness-app-badges img {
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  }

  .wellness-page .wellness-metrics-grid {
    grid-template-columns: 1fr;
  }

  .wellness-page .wellness-impact-number {
    font-size: 65px;
  }

  .wellness-page .wellness-modalidades-head {
    grid-template-columns: 1fr;
  }

  .wellness-page .wellness-modalidades-head h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .wellness-page .wellness-modalidades-head p {
    font-size: 25px;
  }

  .wellness-page .wellness-modalities-slider {
    padding-bottom: 0;
  }

  .wellness-page .wellness-modalities-btn {
    display: none;
  }

  .wellness-page .wellness-modal-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .wellness-page .wellness-modal-card-inner {
    width: 100%;
    height: 388px;
  }

  .wellness-page .wellness-modal-back {
    padding: 50px 20px;
  }

  .wellness-page .wellness-modal-back h3 {
    font-size: 30px;
  }

  .wellness-page .wellness-where h2 {
    font-size: 55px;
    line-height: 1.2;
  }

  .wellness-page .wellness-where p {
    font-size: 25px;
  }

  .wellness-page .wellness-app-banner-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 0 20px;
    position: relative;
    z-index: 1;
  }

  .wellness-page .wellness-app-banner {
    position: relative;
    background-position: center center;
  }

  .wellness-page .wellness-app-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
  }

  .wellness-page .wellness-app-banner-title {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    max-width: 72%;
  }

  .wellness-page .wellness-app-banner-badges {
    width: min(250px, 74vw);
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .wellness-page .wellness-app-banner-badges img {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    filter: none;
  }

  .wellness-page .wellness-partners h2 {
    font-size: 37px;
    line-height: 1.2;
  }

  .wellness-page .wellness-partners-grid {
    grid-template-columns: 1fr;
  }

  .wellness-page .wellness-partners-grid p {
    font-size: 19px;
    line-height: 1.5;
  }

  .wellness-page .wellness-apply {
    padding: 50px 0;
  }

  .wellness-page .wellness-apply-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wellness-page .wellness-apply-copy h2 {
    font-size: 38px;
    line-height: 1.2;
  }

  .wellness-page .wellness-apply-copy p {
    font-size: 22px;
  }

  .wellness-page .wellness-apply-form {
    grid-template-columns: 1fr;
  }

  .wellness-page .wellness-apply-form .field-full {
    grid-column: 1;
  }

  .wellness-page .wellness-apply-form button {
    width: min(100%, 240px);
    min-width: 0;
  }

  .wellness-page .wellness-apply-form-wrap {
    padding: 0 8px 16px;
    border-radius: 14px;
  }

  .wellness-page .wellness-form-note {
    margin-left: 0;
    max-width: 100%;
  }

  .wellness-page .jotform-embed iframe[id^="JotFormIFrame-"] {
    min-height: 1120px;
  }

  .wellness-page .wellness-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wellness-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    padding-left: 0;
  }

  .wellness-page .footer-stores .store-badge img {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .wellness-page .wellness-local-nav-inner {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wellness-page .wellness-local-nav a {
    font-size: 12px;
  }

  .wellness-page .wellness-hero-copy p {
    font-size: clamp(20px, 9vw, 28px);
    line-height: 1.2;
  }

  .wellness-page .wellness-hero-app {
    width: min(100%, 280px);
    margin-top: 10px;
  }

  .wellness-page .wellness-hero-app h2 {
    font-size: 15px;
    line-height: 1.2;
    padding: 0 0 6px;
    text-align: center;
  }

  .wellness-page .wellness-app-banner-grid {
    padding: 20px 0 18px;
  }

  .wellness-page .wellness-app-banner-title {
    max-width: 78%;
    font-size: clamp(30px, 10.5vw, 40px);
    line-height: 1.12;
  }

  .wellness-page .wellness-app-banner-badges {
    width: min(220px, 72vw);
    gap: 8px;
  }

  .wellness-page .wellness-app-badges {
    width: min(280px, 84vw);
    gap: 9px;
  }

  .wellness-page .jotform-embed iframe[id^="JotFormIFrame-"] {
    min-height: 1060px;
  }
}
.faas-page {
  background: #ffffff;
  --faas-content-max-width: 1416px;
}

.faas-page .faas-hero .container,
.faas-page .faas-nav .container {
  width: min(var(--faas-content-max-width), calc(100% - 2.5rem));
}

.faas-page .topbar {
  background: #ed1847;
}

.faas-page .topbar-inner {
  min-height: 74px;
}

.faas-page .brand img {
  width: 96px;
}

.faas-page .desktop-nav {
  gap: 36px;
}

.faas-page .flip-card {
  width: auto;
  height: auto;
  perspective: none;
}

.faas-page .flip-card-inner {
  transform: none;
  transition: none;
}

.faas-page .flip-face {
  position: static;
  inset: auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.faas-page .flip-front {
  font-size: 20px;
  font-weight: 500;
}

.faas-page .flip-back {
  display: none;
}

.faas-hero {
  margin-top: 74px;
  display: flex;
  align-items: center;
  padding: 52px 0 24px;
  padding-left: 170px;
  background: #ffffff;
  color: #e50080;
}

.faas-hero-content h1 {
  margin: 0;
  max-width: 1100px;
  font-size: 60px;
  line-height: 1.12;
  font-weight: 500;
  color: #e50080;
}

.faas-kicker {
  display: none;
}

.faas-nav {
  background: #ffffff;
  border-bottom: 0;
}

.faas-nav-inner {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 18px 0 90px;
  padding-left: 150px;
  overflow-x: auto;
  white-space: nowrap;
  letter-spacing: 0;
}

.faas-nav-inner::before {
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 8px;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23575756' d='M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.faas-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #575756;
}

.faas-nav a:hover {
  color: #e50080;
}

.faas-about {
  background: #ffffff;
}

.faas-about .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.faas-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.faas-about-card {
  background: linear-gradient(43deg, #ec164a 0%, #e5007f 100%);
  color: #ffffff;
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faas-about-card h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 670;
  padding-left: 25px;
}

.faas-about-card p {
  margin: 0 0 70px;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 300;
  padding-left: 25px;
}

.faas-about-image {
  background-image: url("./assets/images/2023/08/background_FAAS_Mude_V03.jpg");
  background-size: cover;
  background-position: center right;
}

.faas-pillars {
  background: #ffffff;
  padding: 28px 0 32px;
}

.faas-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faas-pillars-grid p {
  margin: 0;
  font-size: 25px;
  line-height: 1.5;
  color: #494949;
  width: 285px;
}

.faas-metrics {
  background: #f1f1f1;
  padding: 20px 0;
}

.faas-metrics .container {
  width: min(var(--faas-content-max-width), calc(100% - 2.5rem));
}

.faas-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.faas-metric {
  text-align: center;
  padding: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faas-metric .impact-number {
  margin: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 61px;
  font-weight: 600;
  line-height: 1;
  color: #e50080;
}

.faas-metric .impact-label {
  margin: 6px auto 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #e50080;
  padding-left: 0;
}

.faas-how {
  background: #ffffff;
  padding: 80px 0 60px;
}

.faas-how-header {
  margin-bottom: 50px;
}

.faas-how-header h2 {
  margin: 0;
  font-size: 50px;
  line-height: 61px;
  font-weight: 500;
  color: var(--text-dark);
}

.faas-how-header p {
  display: none;
}

.faas-how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 20px;
}

.faas-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 17px;
  align-items: start;
}

.faas-step-number {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: #e50080;
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faas-step p {
  margin: 0;
  font-size: 19px;
  line-height: 28px;
  color: #575756;
  max-width: 460px;
}

.faas-platform {
  background-color: #f1f1f1;
  background-image: url("./assets/images/2023/07/2_app-mude-copy-copiar-2_21312321.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.faas-platform .container {
  width: min(var(--faas-content-max-width), calc(100% - 2.5rem));
}

.faas-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.faas-platform-image {
  min-height: 0;
}

.faas-platform-copy {
  max-width: 640px;
  text-align: left;
  will-change: transform, opacity;
}

.faas-platform-copy.motion-ready {
  transition: transform 220ms ease-out, opacity 220ms ease-out;
}

.faas-platform-copy h2 {
  margin: 0 0 20px;
  font-size: 43px;
  line-height: 46px;
  font-weight: 500;
  color: #575756;
}

.faas-platform-copy p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  color: #575756;
}

.faas-platform-copy p:last-child {
  margin-bottom: 0;
}

.faas-equipment {
  background: #f1f1f1;
  padding: 75px 0;
}

.faas-equipment h2 {
  margin: 0 0 12px;
  font-size: 50px;
  font-weight: 500;
}

.faas-equipment p {
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.5;
  color: #575756;
}

.faas-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faas-equipment-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #575756;
  min-height: 70px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-size: 16px;
}

.faas-contact {
  background: #ffffff;
  padding: 60px 0 80px;
}

.faas-contact .container {
  width: min(var(--faas-content-max-width), calc(100% - 2.5rem));
}

.faas-contact-grid {
  display: grid;
  grid-template-columns: 34.474% 65.526%;
  gap: 0;
  align-items: center;
}

.faas-contact h2 {
  margin: 0;
  font-size: 50px;
  line-height: 68px;
  font-weight: 500;
  color: #575756;
}

.faas-contact-grid > div {
  padding: 0 13px 13px;
}

.faas-contact-grid > div > p {
  margin: 11px 0 0;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  color: #575756;
  max-width: 560px;
}

.faas-mail {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 21px;
  font-size: 18px;
  font-weight: 500;
  line-height: 15px;
  color: #666666;
  text-decoration: none;
}

.faas-mail-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #666666;
  color: #ffffff;
}

.faas-mail-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.faas-mail:hover,
.faas-mail:focus-visible {
  color: #e50080;
}

.faas-contact .contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 50px 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 5px;
  align-items: start;
}

.faas-page .jotform-embed {
  grid-column: 1 / -1;
  width: 100%;
}

.faas-page .jotform-embed iframe[id^="JotFormIFrame-"] {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 1000px;
  border: 0 !important;
}

.faas-contact .contact-form input,
.faas-contact .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9b9b9;
  padding: 11px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: #000000;
}

.faas-contact .contact-form input::placeholder,
.faas-contact .contact-form textarea::placeholder {
  color: #757575;
}

.faas-contact .contact-form input[name="nome"] {
  grid-column: 1 / -1;
}

.faas-contact .contact-form textarea,
.faas-contact .contact-form .checkline,
.faas-contact .contact-form button,
.faas-contact .contact-form .form-note {
  grid-column: 1 / -1;
}

.faas-contact .contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.faas-contact .checkline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #414141;
}

.faas-contact .checkline input {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #8a8a8a;
  border-radius: 50%;
  margin: 3px 0 0;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.faas-contact .checkline input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #575756;
}

.faas-contact .contact-form button {
  margin-top: 10px;
  width: min(100%, 270px);
  border: 0;
  border-radius: 10px;
  background: #e50080;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  justify-self: start;
}

.faas-contact .form-note {
  margin: 10px auto 0;
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  text-transform: uppercase;
  text-align: center;
  justify-self: center;
  max-width: 670px;
  width: 100%;
}

@media (max-width: 1024px) {
  .faas-hero-content h1 {
    max-width: 980px;
    font-size: 58px;
  }

  .faas-about-card {
    padding: 44px;
  }

  .faas-pillars-grid {
    grid-template-columns: 1fr;
  }

  .faas-equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .faas-page .brand img {
    width: 108px;
  }

  .faas-hero {
    margin-top: 74px;
    padding: 30px 0 16px;
  }

  .faas-hero-content h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .faas-nav-inner {
    gap: 24px;
    padding: 12px 0 34px;
  }

  .faas-nav-inner::before {
    width: 18px;
    height: 18px;
    margin-right: 0;
  }

  .faas-nav a {
    font-size: 14px;
  }

  .faas-about-grid,
  .faas-platform-grid,
  .faas-contact-grid {
    grid-template-columns: 1fr;
  }

  .faas-about-card {
    padding: 28px;
  }

  .faas-about-card h2 {
    font-size: 22px;
  }

  .faas-about-card p {
    font-size: 14px;
  }

  .faas-pillars-grid p {
    font-size: 14px;
  }

  .faas-metrics-grid {
    grid-template-columns: 1fr;
  }

  .faas-metric {
    padding: 10px 0;
  }

  .faas-metric .impact-number {
    font-size: 65px;
  }

  .faas-how-grid {
    grid-template-columns: 1fr;
  }

  .faas-how-header h2 {
    font-size: 35px;
    line-height: 1.4em;
  }

  .faas-step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .faas-step-number {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .faas-platform-image {
    min-height: 0;
  }

  .faas-platform {
    padding: 0 0 90px;
  }

  .faas-platform-copy h2 {
    font-size: 35px;
    line-height: 1.4em;
  }

  .faas-platform-copy p {
    font-size: 20px;
    line-height: 1.5em;
  }

  .faas-contact {
    padding: 40px 0;
  }

  .faas-contact-grid > div {
    padding: 10px 10px 10px;
  }

  .faas-contact h2 {
    font-size: 35px;
    line-height: 1.4em;
  }

  .faas-contact-grid > div > p {
    font-size: 22px;
    line-height: 1.5em;
  }

  .faas-contact .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* Header padronizado para páginas internas */
.media-page .topbar .container,
.wellness-page .topbar .container,
.faas-page .topbar .container {
  width: min(var(--max-width), calc(100% - 2.5rem));
}

.media-page .topbar,
.wellness-page .topbar,
.faas-page .topbar {
  background: #ed1847;
}

.media-page .topbar-inner,
.wellness-page .topbar-inner,
.faas-page .topbar-inner {
  min-height: 74px;
}

.media-page .brand img,
.wellness-page .brand img,
.faas-page .brand img {
  width: 96px;
}

.media-page .desktop-nav,
.wellness-page .desktop-nav,
.faas-page .desktop-nav {
  gap: 36px;
}

.media-page .flip-card,
.wellness-page .flip-card,
.faas-page .flip-card {
  width: 180px;
  height: 64px;
  perspective: 700px;
}

.media-page .flip-card-inner,
.wellness-page .flip-card-inner,
.faas-page .flip-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.media-page .flip-card:hover .flip-card-inner,
.media-page .flip-card:focus-visible .flip-card-inner,
.wellness-page .flip-card:hover .flip-card-inner,
.wellness-page .flip-card:focus-visible .flip-card-inner,
.faas-page .flip-card:hover .flip-card-inner,
.faas-page .flip-card:focus-visible .flip-card-inner {
  transform: rotateY(180deg);
}

.media-page .flip-face,
.wellness-page .flip-face,
.faas-page .flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 18px;
  backface-visibility: hidden;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.media-page .flip-front,
.wellness-page .flip-front,
.faas-page .flip-front {
  font-size: 28px;
  font-weight: 400;
}

.media-page .flip-back,
.wellness-page .flip-back,
.faas-page .flip-back {
  display: flex;
  transform: rotateY(180deg);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .media-page .brand img,
  .wellness-page .brand img,
  .faas-page .brand img {
    width: 108px;
  }
}

.media-page .site-footer,
.wellness-page .site-footer,
.faas-page .site-footer {
  background: #ff1147;
  color: #ffffff;
  padding: 30px 0 20px;
}

.media-page .wellness-footer-grid,
.wellness-page .wellness-footer-grid,
.faas-page .wellness-footer-grid {
  display: grid;
  grid-template-columns: 14.5% 24% 8.5% 16% 21% 14%;
  gap: 0;
  align-items: start;
}

.media-page .footer-brand,
.wellness-page .footer-brand,
.faas-page .footer-brand {
  padding: 6px;
}

.media-page .footer-brand .footer-logo,
.wellness-page .footer-brand .footer-logo,
.faas-page .footer-brand .footer-logo {
  width: 100%;
  max-width: 130px;
}

.media-page .footer-brand .footer-sublogo,
.wellness-page .footer-brand .footer-sublogo,
.faas-page .footer-brand .footer-sublogo {
  width: 100%;
  max-width: 124px;
  margin-top: 10px;
}

.media-page .footer-meta,
.wellness-page .footer-meta,
.faas-page .footer-meta {
  padding: 10px 0;
}

.media-page .footer-meta .copyright,
.wellness-page .footer-meta .copyright,
.faas-page .footer-meta .copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.media-page .footer-social,
.wellness-page .footer-social,
.faas-page .footer-social {
  display: grid;
  grid-template-columns: repeat(2, min-content);
  gap: 11px 11px;
  padding: 6px 5px;
}

.media-page .footer-social a,
.wellness-page .footer-social a,
.faas-page .footer-social a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}

.media-page .footer-social svg,
.wellness-page .footer-social svg,
.faas-page .footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.media-page .footer-social a:hover,
.wellness-page .footer-social a:hover,
.faas-page .footer-social a:hover {
  color: #262626;
}

.media-page .footer-links-col,
.wellness-page .footer-links-col,
.faas-page .footer-links-col {
  padding: 10px 0;
}

.media-page .footer-policy-links,
.wellness-page .footer-policy-links,
.faas-page .footer-policy-links {
  gap: 25px;
}

.media-page .footer-policy-links a,
.wellness-page .footer-policy-links a,
.faas-page .footer-policy-links a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.media-page .footer-policy-links a:hover,
.wellness-page .footer-policy-links a:hover,
.faas-page .footer-policy-links a:hover {
  color: #262626;
}

.media-page .footer-app-copy,
.wellness-page .footer-app-copy,
.faas-page .footer-app-copy {
  padding: 10px 10px;
}

.media-page .footer-app-copy .app-text,
.wellness-page .footer-app-copy .app-text,
.faas-page .footer-app-copy .app-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #ffffff;
}

.media-page .footer-stores,
.wellness-page .footer-stores,
.faas-page .footer-stores {
  padding-top: 6px;
}

.media-page .footer-stores .store-badge,
.wellness-page .footer-stores .store-badge,
.faas-page .footer-stores .store-badge {
  margin-top: 0;
}

.media-page .footer-stores .store-badge + .store-badge,
.wellness-page .footer-stores .store-badge + .store-badge,
.faas-page .footer-stores .store-badge + .store-badge {
  margin-top: 12px;
}

.media-page .footer-stores .store-badge img,
.wellness-page .footer-stores .store-badge img,
.faas-page .footer-stores .store-badge img {
  width: 85%;
  max-width: 174px;
}

@media (max-width: 1200px) {
  .media-page .wellness-footer-grid,
  .wellness-page .wellness-footer-grid,
  .faas-page .wellness-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .media-page .footer-social,
  .wellness-page .footer-social,
  .faas-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .media-page .wellness-footer-grid,
  .wellness-page .wellness-footer-grid,
  .faas-page .wellness-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .media-page .footer-social,
  .wellness-page .footer-social,
  .faas-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    padding-left: 0;
  }

  .media-page .footer-stores .store-badge img,
  .wellness-page .footer-stores .store-badge img,
  .faas-page .footer-stores .store-badge img {
    max-width: 160px;
  }
}

.home-page .site-footer {
  background: #ff1147;
  color: #ffffff;
  padding: 30px 0 20px;
}

.home-page .wellness-footer-grid {
  display: grid;
  grid-template-columns: 14.5% 24% 8.5% 16% 21% 14%;
  gap: 0;
  align-items: start;
}

.home-page .footer-brand {
  padding: 6px;
}

.home-page .footer-brand .footer-logo {
  width: 100%;
  max-width: 130px;
}

.home-page .footer-brand .footer-sublogo {
  width: 100%;
  max-width: 124px;
  margin-top: 10px;
}

.home-page .footer-meta {
  padding: 10px 0;
}

.home-page .footer-meta .copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.home-page .footer-social {
  display: grid;
  grid-template-columns: repeat(2, min-content);
  gap: 11px 11px;
  padding: 6px 5px;
}

.home-page .footer-social a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}

.home-page .footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.home-page .footer-social a:hover {
  color: #262626;
}

.home-page .footer-links-col {
  padding: 10px 0;
}

.home-page .footer-policy-links {
  gap: 25px;
}

.home-page .footer-policy-links a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.home-page .footer-policy-links a:hover {
  color: #262626;
}

.home-page .footer-app-copy {
  padding: 10px 10px;
}

.home-page .footer-app-copy .app-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #ffffff;
}

.home-page .footer-stores {
  padding-top: 6px;
}

.home-page .footer-stores .store-badge {
  margin-top: 0;
}

.home-page .footer-stores .store-badge + .store-badge {
  margin-top: 12px;
}

.home-page .footer-stores .store-badge img {
  width: 85%;
  max-width: 174px;
}

@media (max-width: 1200px) {
  .home-page .wellness-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .home-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .home-page .wellness-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page .footer-social {
    grid-template-columns: repeat(5, min-content);
    padding-left: 0;
  }

.home-page .footer-stores .store-badge img {
    max-width: 160px;
  }
}

.contato-page {
  background: #ffffff;
}

.contato-page .commercial-contacts-main {
  margin-top: 74px;
}

.contato-page .commercial-contacts {
  padding: 18px 0 36px;
  background: #ffffff;
}

.contato-page .commercial-contacts .container {
  width: min(1880px, calc(100% - 24px));
}

.contato-page .commercial-contacts-intro {
  margin: 0 0 26px 8px;
  color: #6f7780;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.contato-page .commercial-contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 62px 18px;
}

.contato-page .commercial-contact-card {
  min-width: 0;
}

.contato-page .commercial-contact-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #ffffff;
  overflow: hidden;
}

.contato-page .commercial-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contato-page .commercial-contact-photo-placeholder {
  display: grid;
  place-items: center;
}

.contato-page .commercial-contact-photo-placeholder svg {
  width: min(58%, 210px);
  height: auto;
  fill: #000000;
}

.contato-page .commercial-contact-card h2 {
  margin: 24px 12px 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: #4f5660;
}

.contato-page .commercial-contact-role {
  margin: 18px 12px 0;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #808890;
  font-weight: 400;
}

.contato-page .commercial-contact-item {
  margin: 22px 12px 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: #2f3640;
}

.contato-page .commercial-contact-item span:last-child {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contato-page .commercial-contact-icon {
  width: 88px;
  height: 88px;
  background: #737d89;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contato-page .commercial-contact-icon svg {
  width: 41px;
  height: 41px;
  fill: currentColor;
}

.contato-page .commercial-contact-item:hover,
.contato-page .commercial-contact-item:focus-visible {
  color: #ed1847;
}

.contato-page .commercial-contact-item.is-disabled {
  cursor: default;
}

.contato-page .commercial-contact-item.is-disabled:hover,
.contato-page .commercial-contact-item.is-disabled:focus-visible {
  color: #2f3640;
}

@media (max-width: 1600px) {
  .contato-page .commercial-contacts-intro {
    font-size: 20px;
  }

  .contato-page .commercial-contact-card h2 {
    font-size: 14px;
  }

  .contato-page .commercial-contact-role {
    font-size: 13px;
  }

  .contato-page .commercial-contact-item span:last-child {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .contato-page .commercial-contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 18px;
  }

  .contato-page .commercial-contact-item span:last-child {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .contato-page .commercial-contacts {
    padding-bottom: 24px;
  }

  .contato-page .commercial-contacts .container {
    width: min(1880px, calc(100% - 20px));
  }

  .contato-page .commercial-contacts-intro {
    margin-left: 2px;
    margin-bottom: 18px;
    font-size: 16px;
  }

  .contato-page .commercial-contacts-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contato-page .commercial-contact-card h2 {
    margin-left: 6px;
    margin-right: 6px;
    font-size: 15px;
  }

  .contato-page .commercial-contact-role {
    margin-left: 6px;
    margin-right: 6px;
    font-size: 12px;
  }

  .contato-page .commercial-contact-item {
    margin-left: 6px;
    margin-right: 6px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .contato-page .commercial-contact-item span:last-child {
    font-size: 14px;
  }

  .contato-page .commercial-contact-icon {
    width: 62px;
    height: 62px;
  }

  .contato-page .commercial-contact-icon svg {
    width: 28px;
    height: 28px;
  }
}

.privacy-main {
  margin-top: 74px;
  background: #f7f8fa;
  min-height: calc(100vh - 74px);
}

.privacy-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 36px 0 28px;
}

.privacy-header h1 {
  margin: 0;
  color: #aa183c;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
}

.privacy-header p {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.4;
  color: #575756;
}

.privacy-content-section {
  padding: 34px 0 70px;
}

.privacy-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #575756;
  font-size: 15px;
}

.privacy-status.error {
  border-color: #ed1847;
  color: #a30f34;
}

.privacy-content {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 28px;
  color: #575756;
  overflow-wrap: anywhere;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  color: #aa183c;
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}

.privacy-content img,
.privacy-content iframe,
.privacy-content video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .privacy-main {
    margin-top: 74px;
  }

  .privacy-header {
    padding: 28px 0 22px;
  }

  .privacy-header h1 {
    font-size: 30px;
  }

  .privacy-header p {
    font-size: 15px;
  }

  .privacy-content-section {
    padding: 20px 0 36px;
  }

  .privacy-content {
    padding: 18px 14px;
  }
}

/* UX mobile: tipografia, proporcoes e navegacao local */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

@media (max-width: 767px) {
  .media-page,
  .wellness-page,
  .faas-page,
  .home-page,
  .contato-page {
    overflow-x: clip;
  }

  .home-page main img,
  .media-page main img,
  .wellness-page main img,
  .faas-page main img,
  .contato-page main img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .store-badge,
  .media-page .store-badge,
  .wellness-page .store-badge,
  .faas-page .store-badge,
  .contato-page .store-badge,
  .wellness-page .wellness-app-badges,
  .wellness-page .wellness-app-banner-badges {
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .footer-stores,
  .media-page .footer-stores,
  .wellness-page .footer-stores,
  .faas-page .footer-stores,
  .contato-page .footer-stores,
  .privacy-page .footer-stores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 0;
  }

  .home-page .footer-stores .store-badge,
  .media-page .footer-stores .store-badge,
  .wellness-page .footer-stores .store-badge,
  .faas-page .footer-stores .store-badge,
  .contato-page .footer-stores .store-badge,
  .privacy-page .footer-stores .store-badge {
    margin: 0;
  }

  .home-page .footer-stores .store-badge + .store-badge,
  .media-page .footer-stores .store-badge + .store-badge,
  .wellness-page .footer-stores .store-badge + .store-badge,
  .faas-page .footer-stores .store-badge + .store-badge,
  .contato-page .footer-stores .store-badge + .store-badge,
  .privacy-page .footer-stores .store-badge + .store-badge {
    margin-top: 0;
  }

  .home-page .cta-button,
  .media-page .contact-form button,
  .wellness-page .wellness-apply-form button,
  .faas-page .faas-contact .contact-form button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    text-align: center;
  }

  .media-page .contact-link {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .media-page .contact-form button,
  .wellness-page .wellness-apply-form button,
  .faas-page .faas-contact .contact-form button {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .media-page .media-local-nav {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .media-page .media-local-nav-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 10px 16px;
    overflow: visible;
    white-space: normal;
    padding: 0;
  }

  .media-page .media-local-nav-inner::before {
    display: none;
  }

  .media-page .media-local-nav a {
    display: block;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .faas-page .faas-hero {
    padding: 24px 0 14px;
  }

  .faas-page .faas-hero-content h1 {
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.14;
  }

  .faas-page .faas-nav {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .faas-page .faas-nav-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    align-items: start;
    overflow: visible;
    white-space: normal;
    padding: 0;
  }

  .faas-page .faas-nav-inner::before {
    display: none;
  }

  .faas-page .faas-nav a {
    display: block;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .faas-page .faas-about-card {
    padding: 26px 22px;
  }

  .faas-page .faas-about-card h2 {
    font-size: clamp(26px, 6.5vw, 34px);
    line-height: 1.18;
    padding-left: 0;
  }

  .faas-page .faas-about-card p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.45;
    padding-left: 0;
  }

  .faas-page .faas-pillars-grid {
    justify-items: center;
    gap: 22px;
  }

  .faas-page .faas-pillars-grid p {
    width: min(100%, 520px);
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    line-height: 1.5;
  }

  .faas-page .faas-about-image {
    min-height: 280px;
    background-position: center center;
  }

  .faas-page .faas-platform {
    position: relative;
    padding: 30px 0 70px;
  }

  .faas-page .faas-platform::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
  }

  .faas-page .faas-platform-grid {
    position: relative;
    z-index: 1;
  }

  .faas-page .faas-platform-copy {
    max-width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
  }

  .faas-page .faas-platform-copy h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.18;
  }

  .faas-page .faas-platform-copy p {
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
    font-size: 18px;
    line-height: 1.45;
  }

  .faas-page .faas-contact .contact-form {
    padding: 12px;
    border-radius: 14px;
  }

  .faas-page .faas-contact .form-note {
    margin: 12px auto 0;
    max-width: 100%;
    text-align: center;
  }

  .faas-page .jotform-embed iframe[id^="JotFormIFrame-"] {
    min-height: 1080px;
  }
}

@media (max-width: 480px) {
  .media-page .media-local-nav-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faas-page .faas-nav-inner {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .faas-page .faas-nav a {
    font-size: 12px;
  }

  .faas-page .faas-hero-content h1 {
    font-size: clamp(28px, 9.5vw, 34px);
  }

  .faas-page .faas-about-card p {
    font-size: 16px;
  }

  .faas-page .faas-pillars-grid p {
    width: min(100%, 320px);
    font-size: 18px;
    line-height: 1.45;
  }

  .faas-page .faas-platform-copy {
    padding: 12px 10px;
  }

  .faas-page .faas-platform-copy h2 {
    font-size: clamp(26px, 8.4vw, 32px);
  }

  .faas-page .faas-platform-copy p {
    font-size: 16px;
  }
}
