@charset "UTF-8";
* {
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  html {
    font-size: 17px;
  }
}
body {
  font-family: "Planc";
  font-size: 1rem;
  position: relative;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: #f9f4e8;
  font-weight: 400;
  color: #162416;
}

p {
  line-height: 150%;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s linear;
}

a:hover {
  text-decoration: underline;
  transition: all 0.2s linear;
}

.btn {
  background-color: #c15c17;
  color: #fff;
  text-transform: uppercase;
  font-family: "Futura";
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  border: 0;
  border-radius: 5px;
  font-size: 0.7rem;
  display: inline-block;
  cursor: pointer;
}

.btn:hover {
  background-color: #1d2a10;
  text-decoration: none;
}

.btn.blue {
  background-color: #0a2889;
}

.btn.blue:hover {
  background-color: #0c101f;
}

.btn.outline {
  background-color: transparent;
  border: 1px solid #c15c17;
  transition: all 0.2s linear;
}

.btn.outline:hover {
  background-color: #c15c17;
  transition: all 0.2s linear;
}

.btn.outline.blue {
  border: 1px solid #0a2889;
}

.btn.outline.blue:hover {
  background-color: #0a2889;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #0d2605 #d3c2a2;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #d3c2a2;
}

*::-webkit-scrollbar-thumb {
  background-color: #0d2605;
  border-radius: 1px;
  border: 0px solid #ffffff;
}

header {
  position: absolute;
  top: 30px;
  left: 10%;
  display: flex;
  gap: 40px;
  align-items: center;
}

header .translate {
  display: none;
}

header .translate .gtranslate_wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  font-family: "Futura";
  font-size: 0.9rem;
  letter-spacing: 4px;
}

header .translate .menu {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  font-family: "Futura";
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
}
header .translate .menu li:first-child a {
  border-right: 1px solid;
  padding-right: 10px;
}

header .translate .gtranslate_wrapper a:nth-child(1) {
  border-left: 1px solid;
  padding-left: 15px;
}

header #mobile-menu {
  background-image: url("../images/menu-hamburguer.svg");
  background-color: transparent;
  border: 0;
  background-repeat: no-repeat;
  display: block;
  height: 30px;
  width: 30px;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 99999;
  cursor: pointer;
  position: relative;
}

header #mobile-menu.open {
  background-image: url("../images/close.webp");
}

header .main-menu {
  z-index: 9999;
  position: fixed;
  bottom: -100%;
  right: 0;
  left: 0;
  background-color: #f9f4e8;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: ease-in-out 0.2s;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  padding: 150px 10% 40px;
  gap: 100px;
}

header .main-menu.open {
  visibility: visible;
  transition: ease-in-out 0.2s;
  bottom: 0;
}

header .main-menu.open .translate {
  display: block;
}

header .main-menu.open .translate .gtranslate_wrapper {
  justify-content: flex-end;
}

header .main-menu.open .translate .gtranslate_wrapper a {
  color: #1d2a10;
}

header .main-menu ul {
  padding: 0;
  display: grid;
  grid-gap: 15px;
  margin: 0;
  list-style: none;
}

header .main-menu ul li {
  list-style: none;
  position: relative;
}

header .main-menu ul li > a {
  color: #1d2a10;
  font-family: "Clearface";
  font-size: 1.5rem;
  display: inline-block;
}

header .main-menu ul li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #1d2a10;
}

header .main-menu ul li.rot > a:hover {
  color: #fff;
  background-color: #ff9a00;
}

header .main-menu ul li.grup > a:hover {
  color: #fff;
  background-color: #c15c17;
}

header .main-menu ul li.sobns > a:hover {
  color: #fff;
  background-color: #62632d;
}

header .main-menu ul li.club > a:hover {
  color: #fff;
  background-color: #0a2889;
}

/* Submenu â€” mobile (accordion) */
header .main-menu .sub-menu {
  display: none;
  grid-gap: 8px;
  padding: 10px 0 5px 18px;
  margin: 0;
}

header .main-menu .menu-item-has-children.submenu-open > .sub-menu {
  display: grid;
}

header .main-menu .menu-item-has-children > a {
  padding-right: 36px;
  position: relative;
}

header .main-menu .submenu-toggle {
  position: absolute;
  right: 0;
  top: 13px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

header .main-menu .submenu-toggle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-right: 2px solid #1d2a10;
  border-bottom: 2px solid #1d2a10;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

header .main-menu .menu-item-has-children.submenu-open > .submenu-toggle::before {
  transform: rotate(-135deg);
  margin-top: 4px;
}

header .main-menu .sub-menu li > a {
  font-size: 1.1rem;
  font-family: "Futura";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1d2a10;
  opacity: 0.85;
}

header .main-menu .sub-menu li > a:hover {
  opacity: 1;
}

header .logo {
  background-image: url("../images/logo2.webp");
  background-repeat: no-repeat;
  display: block;
  height: 165px;
  width: 255px;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 999;
  margin: 0 auto;
}

header .logo:hover {
  background-color: transparent;
}

header .logo-nomad {
  background-image: url("../images/logonomadsvg.svg");
  background-repeat: no-repeat;
  display: block;
  height: 40px;
  width: 200px;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 999;
  margin: 0 auto;
  display: none;
}

header .logo-nomad:hover {
  background-color: transparent;
}

header .logo-nomad.hide {
  display: none;
}

@media (min-width: 1024px) {
  header .main-menu > .translate {
    display: none !important;
  }
  header > .translate {
    position: absolute;
    z-index: 999;
    right: 0;
    display: block;
  }
  header {
    left: 0;
    width: 80%;
    margin: auto;
    right: 0;
    justify-content: center;
  }
  header .logo-nomad {
    display: block;
  }
  header .logo-nomad.mobile {
    display: none;
  }
  header #mobile-menu {
    display: none;
  }
  header .main-menu {
    position: relative;
    bottom: auto;
    visibility: visible;
    background: transparent;
    height: auto;
    padding: 0;
    width: auto;
    display: block;
    overflow: visible;
  }
  header .main-menu .logo {
    display: none;
  }
  header .main-menu .menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0;
    align-items: center;
  }
  header .main-menu .menu > li > a {
    color: #fff;
    font-family: "Futura";
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    background: transparent;
  }
  header .main-menu .menu > li > a:hover {
    color: #fff;
    background: transparent;
    text-decoration: underline;
  }
  /* Submenu â€” desktop (dropdown) */
  header .main-menu .submenu-toggle {
    display: none;
  }
  header .main-menu .menu > li > a {
    padding-right: 0;
  }
  header .main-menu .menu-item-has-children {
    padding-bottom: 16px;
    margin-bottom: -16px;
  }
  header .main-menu .menu-item-has-children > a {
    padding-right: 14px;
  }
  header .main-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    vertical-align: middle;
  }
  header .main-menu .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    background: #f9f4e8;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 1000;
    grid-gap: 0;
  }
  header .main-menu .menu-item-has-children:hover > .sub-menu,
  header .main-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .main-menu .sub-menu li {
    width: 100%;
  }
  header .main-menu .sub-menu li > a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 0.75rem;
    font-family: "Futura";
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1d2a10;
    opacity: 1;
    background: transparent;
    white-space: nowrap;
  }
  header .main-menu .sub-menu li > a:hover {
    background-color: #1d2a10;
    color: #fff;
    text-decoration: none;
  }
  header .main-menu ul li.rot .sub-menu li > a:hover {
    background-color: #ff9a00;
  }
  header .main-menu ul li.grup .sub-menu li > a:hover {
    background-color: #c15c17;
  }
  header .main-menu ul li.sobns .sub-menu li > a:hover {
    background-color: #62632d;
  }
  header .main-menu ul li.club .sub-menu li > a:hover {
    background-color: #0a2889;
  }
}
footer .footer {
  background-color: #1d2a10;
  padding: 60px 0 40px;
  font-size: 0.7rem;
}

footer .footer.footer--azul-escuro {
  background-color: #0c101f;
}

footer .footer.footer--azul {
  background-color: #0a2889;
}

footer .footer.footer--roxo {
  background-color: #640b7a;
}

footer .footer.footer--laranja {
  background-color: #c15c17;
}

footer .footer.footer--verde-escuro {
  background-color: #1d2a10;
}

footer .footer ul {
  padding: 0;
  margin: 0;
}

footer .footer ul li {
  list-style: none;
}

footer .footer ul li.logo-nomad {
  display: none;
}

footer .footer .flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .footer img {
  max-width: 240px;
  height: auto;
  width: 100%;
}

footer .footer .spotify {
  position: relative;
  margin: 0;
}

footer .footer .spotify a {
  display: grid;
  align-items: center;
  grid-template-columns: 35px 1fr;
  gap: 15px;
}

footer .footer .spotify a::before {
  background-size: 100%;
  background-image: url("../images/spotify.webp");
  background-repeat: no-repeat;
  content: " ";
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

footer .footer a {
  font-family: "Futura";
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 0;
  display: block;
}

footer .footer .wp-social-link {
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -9999px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 0;
}

footer .footer .wp-social-link svg {
  fill: #c15c17;
  color: #c15c17;
}

footer .footer .wp-social-link.wp-social-link-instagram {
  background-image: url("../images/instagram.svg");
}

footer .footer .wp-social-link.wp-social-link-spotify {
  background-image: none;
  text-indent: inherit;
}

footer .footer .wp-social-link.wp-social-link-whatsapp {
  background-image: url("../images/whatsapp.svg");
  background-size: 90%;
}

footer .footer .wp-social-link.wp-social-link-mail {
  background-image: url("../images/envelope.svg");
  background-size: 75%;
  margin-top: 9px;
}

footer .footer .wp-social-link a {
  padding: 0;
  display: block;
  height: 100%;
}

@media (min-width: 1000px) {
  footer .footer .wp-block-columns {
    justify-content: space-between;
  }
}
footer .partners {
  background-color: #cdc1a2;
  padding: 30px 0;
}

footer .partners h3 {
  font-family: "Futura";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
}

footer .partners .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (min-width: 800px) {
  footer .partners .wp-block-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  footer .partners .wp-block-columns {
    display: flex;
    align-items: center !important;
    gap: 50px;
  }
}
.newsletter {
  background-color: #cdc1a2;
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 99;
}

.newsletter .container {
  width: 100%;
}

.newsletter .image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.newsletter .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.newsletter .content {
  max-width: 80%;
  margin: auto;
  padding: 30px 0;
}

.newsletter .content .mc4wp-form-fields {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 10px;
}

.newsletter .content .mc4wp-form-fields input {
  border: 0;
  width: 100%;
  border-radius: 10px;
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: "Futura";
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.6rem;
}

.newsletter .content .mc4wp-form-fields input[type=submit] {
  background-color: #c15c17;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  width: auto;
}

.newsletter h3 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  font-size: 2.2rem;
  margin: 0;
}

@media (min-width: 1024px) {
  .newsletter .container {
    display: flex;
  }
  .newsletter .image {
    width: 40%;
    height: 320px;
    border-radius: 0;
    margin-left: calc((100vw - 100%) / 2 * -1);
    width: calc(100% - 100px);
  }
  .newsletter .image img {
    border-radius: 0;
  }
  .newsletter p {
    max-width: 400px;
    margin-left: auto;
  }
  .newsletter .content {
    width: 60%;
    padding: 0;
    text-align: right;
    font-size: 1.1rem;
    max-width: 765px;
  }
  .newsletter .content .mc4wp-form-fields {
    align-items: end;
  }
  .newsletter .content .mc4wp-form-fields input {
    max-width: 70%;
  }
}
.testimonials {
  background-color: #c15c17;
  padding: 80px 0;
  text-align: center;
}

.testimonials .glider-contain {
  width: 100%;
  margin: 0 auto;
}

.testimonials .testimonial {
  font-size: 0.9rem;
}

.testimonials .testimonial .glider-slide {
  background-image: url("../images/testimonial-bg.webp");
  border-radius: 20px;
  padding: 30px 40px;
}

.testimonials .testimonial .glider-slide .aspas {
  background-image: url("../images/aspas1.webp");
  width: 39px;
  height: 36px;
  background-size: 100%;
  margin: 0 auto 30px;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .testimonials .testimonial .glider-slide.center {
    background-image: url("../images/testimonial-bg2.webp");
    color: #fff;
  }
  .testimonials .testimonial .glider-slide.center .aspas {
    background-image: url("../images/aspas2.webp");
  }
}
.testimonials .testimonial .name {
  font-family: "Clearface";
}

.testimonials h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials h3 span {
  font-family: "Planc";
}

.wp-block-acf-hero {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-color: #0c101f;
  padding: 140px 0 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 16, 31, 0.55) 0%, rgba(12, 16, 31, 0.28) 42%, rgba(12, 16, 31, 0.08) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 22px;
}

.hero__title-line {
  display: inline-block;
  background-color: #0a2889;
  color: #fff;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  line-height: 1.25;
  padding: 0.18em 0.42em;
}

.hero__title--azul-escuro .hero__title-line {
  background-color: #0c101f;
}

.hero__btn--anchor.hero__btn--azul-escuro {
  background-color: #0c101f;
}

.hero__title--azul .hero__title-line {
  background-color: #0a2889;
}

.hero__btn--anchor.hero__btn--azul {
  background-color: #0a2889;
}

.hero__title--roxo .hero__title-line {
  background-color: #640b7a;
}

.hero__btn--anchor.hero__btn--roxo {
  background-color: #640b7a;
}

.hero__title--laranja .hero__title-line {
  background-color: #c15c17;
}

.hero__btn--anchor.hero__btn--laranja {
  background-color: #c15c17;
}

.hero__title--verde-escuro .hero__title-line {
  background-color: #1d2a10;
}

.hero__btn--anchor.hero__btn--verde-escuro {
  background-color: #1d2a10;
}

.hero__btn--external.hero__btn--text-padrao {
  color: #424242;
}

.hero__btn--external.hero__btn--text-bege {
  color: #f9f4e8;
}

.hero__btn--external.hero__btn--text-azul-escuro {
  color: #0c101f;
}

.hero__btn--external.hero__btn--text-azul {
  color: #0a2889;
}

.hero__btn--external.hero__btn--text-roxo {
  color: #640b7a;
}

.hero__btn--external.hero__btn--text-laranja {
  color: #c15c17;
}

.hero__btn--external.hero__btn--text-verde-escuro {
  color: #1d2a10;
}

.hero__text {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #fff;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__btn {
  border-radius: 999px;
  padding: 13px 26px;
  letter-spacing: 1.6px;
  font-size: 0.68rem;
  font-weight: 600;
}

.hero__btn--anchor {
  background-color: #c15c17;
  color: #fff;
}

.hero__btn--anchor:hover {
  filter: brightness(0.88);
  text-decoration: none;
}

.hero__btn--external {
  background-color: #f9f4e8;
}

.hero__btn--external:hover {
  background-color: #fff;
  text-decoration: none;
}

.hero__placeholder {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 40px;
  background-color: #0c101f;
  color: #f9f4e8;
  text-align: center;
}

@media (max-width: 700px) {
  .hero {
    padding: 120px 0 48px;
    min-height: 100svh;
  }
  .hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wp-block-acf-como-funciona {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.how {
  padding: 88px 0 96px;
  background-color: #f9f4e8;
}

.how__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #0a2889;
}

.how__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #c15c17;
}

.how__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.how__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.how__title {
  margin: 0 0 18px;
  max-width: 25ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.how__lead {
  margin: 0 0 8px;
  max-width: 38rem;
  color: #424242;
  font-size: 1.05rem;
  line-height: 1.55;
}

.how__highlight {
  margin: 0 0 40px;
  color: #c15c17;
  font-family: "Clearface", serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

.how__card {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 28px;
}

.how__glider {
  width: 100%;
}

.how__viewport,
.how__viewport.glider {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.how__viewport.glider.drag {
  cursor: grabbing;
}

.how__track {
  display: flex;
  margin: 0;
  padding: 0;
}

.how__slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  justify-content: stretch;
}

.how__slide.glider-slide {
  margin: 0 !important;
  align-content: stretch;
  justify-content: stretch;
}

.how:not(.how--ready) .how__slide:not(:first-child) {
  display: none;
}

.how__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 36px 28px 92px;
}

.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background-color: #c15c17;
  color: #fff;
  font-family: "Clearface", serif;
  font-size: 0.95rem;
  line-height: 1;
}

.how__slide-title {
  margin: 0 0 14px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.2;
}

.how__slide-text {
  margin: 0;
  max-width: 28rem;
  color: #424242;
  font-size: 1rem;
  line-height: 1.55;
}

.how__media {
  min-height: 240px;
}

.how__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}

.how__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 24px;
}

.how--single .how__controls {
  display: none;
}

.how__dots {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.how__dots .glider-dot {
  width: 8px;
  height: 8px;
  margin: 0 5px 0 0;
  background: #cdc1a2;
  opacity: 1;
}

.how__dots .glider-dot.active,
.how__dots .glider-dot:hover,
.how__dots .glider-dot:focus {
  background: #c15c17;
}

.how__arrows {
  display: flex;
  gap: 10px;
}

.how__arrows .how__prev,
.how__arrows .how__next {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #0a2889;
  border-radius: 50%;
  background: #fff;
  color: #0a2889;
  font-size: 0;
  line-height: 1;
  opacity: 1;
  cursor: pointer;
}

.how__arrows .how__prev:hover,
.how__arrows .how__next:hover,
.how__arrows .how__prev:focus,
.how__arrows .how__next:focus {
  background: #0a2889;
  color: #fff;
  text-decoration: none;
}

.how__arrows .how__prev.disabled,
.how__arrows .how__next.disabled {
  opacity: 0.35;
  cursor: default;
}

.how__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.how__cta-btn {
  border-radius: 999px;
  padding: 14px 28px;
  background-color: #c15c17;
  color: #f9f4e8;
  letter-spacing: 1.6px;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
}

.how__cta-btn:hover {
  filter: brightness(0.88);
  text-decoration: none;
}

.how__kicker--padrao {
  color: #424242;
}

.how__title--padrao {
  color: #424242;
}

.how__lead--padrao {
  color: #424242;
}

.how__highlight--padrao {
  color: #424242;
}

.how--slide-title-padrao .how__slide-title {
  color: #424242;
}

.how__kicker--bege {
  color: #f9f4e8;
}

.how__title--bege {
  color: #f9f4e8;
}

.how__lead--bege {
  color: #f9f4e8;
}

.how__highlight--bege {
  color: #f9f4e8;
}

.how--slide-title-bege .how__slide-title {
  color: #f9f4e8;
}

.how__kicker--azul-escuro {
  color: #0c101f;
}

.how__title--azul-escuro {
  color: #0c101f;
}

.how__lead--azul-escuro {
  color: #0c101f;
}

.how__highlight--azul-escuro {
  color: #0c101f;
}

.how--slide-title-azul-escuro .how__slide-title {
  color: #0c101f;
}

.how__kicker--azul {
  color: #0a2889;
}

.how__title--azul {
  color: #0a2889;
}

.how__lead--azul {
  color: #0a2889;
}

.how__highlight--azul {
  color: #0a2889;
}

.how--slide-title-azul .how__slide-title {
  color: #0a2889;
}

.how__kicker--roxo {
  color: #640b7a;
}

.how__title--roxo {
  color: #640b7a;
}

.how__lead--roxo {
  color: #640b7a;
}

.how__highlight--roxo {
  color: #640b7a;
}

.how--slide-title-roxo .how__slide-title {
  color: #640b7a;
}

.how__kicker--laranja {
  color: #c15c17;
}

.how__title--laranja {
  color: #c15c17;
}

.how__lead--laranja {
  color: #c15c17;
}

.how__highlight--laranja {
  color: #c15c17;
}

.how--slide-title-laranja .how__slide-title {
  color: #c15c17;
}

.how__kicker--verde-escuro {
  color: #1d2a10;
}

.how__title--verde-escuro {
  color: #1d2a10;
}

.how__lead--verde-escuro {
  color: #1d2a10;
}

.how__highlight--verde-escuro {
  color: #1d2a10;
}

.how--slide-title-verde-escuro .how__slide-title {
  color: #1d2a10;
}

.how--num-azul-escuro .how__num {
  background-color: #0c101f;
}

.how--arrows-azul-escuro .how__arrows .how__prev,
.how--arrows-azul-escuro .how__arrows .how__next {
  border-color: #0c101f;
  color: #0c101f;
}

.how--arrows-azul-escuro .how__arrows .how__prev:hover,
.how--arrows-azul-escuro .how__arrows .how__next:hover,
.how--arrows-azul-escuro .how__arrows .how__prev:focus,
.how--arrows-azul-escuro .how__arrows .how__next:focus {
  background-color: #0c101f;
  color: #fff;
}

.how__cta-btn--azul-escuro {
  background-color: #0c101f;
}

.how__cta-btn--azul-escuro:hover {
  background-color: #0c101f;
}

.how--num-azul .how__num {
  background-color: #0a2889;
}

.how--arrows-azul .how__arrows .how__prev,
.how--arrows-azul .how__arrows .how__next {
  border-color: #0a2889;
  color: #0a2889;
}

.how--arrows-azul .how__arrows .how__prev:hover,
.how--arrows-azul .how__arrows .how__next:hover,
.how--arrows-azul .how__arrows .how__prev:focus,
.how--arrows-azul .how__arrows .how__next:focus {
  background-color: #0a2889;
  color: #fff;
}

.how__cta-btn--azul {
  background-color: #0a2889;
}

.how__cta-btn--azul:hover {
  background-color: #0a2889;
}

.how--num-roxo .how__num {
  background-color: #640b7a;
}

.how--arrows-roxo .how__arrows .how__prev,
.how--arrows-roxo .how__arrows .how__next {
  border-color: #640b7a;
  color: #640b7a;
}

.how--arrows-roxo .how__arrows .how__prev:hover,
.how--arrows-roxo .how__arrows .how__next:hover,
.how--arrows-roxo .how__arrows .how__prev:focus,
.how--arrows-roxo .how__arrows .how__next:focus {
  background-color: #640b7a;
  color: #fff;
}

.how__cta-btn--roxo {
  background-color: #640b7a;
}

.how__cta-btn--roxo:hover {
  background-color: #640b7a;
}

.how--num-laranja .how__num {
  background-color: #c15c17;
}

.how--arrows-laranja .how__arrows .how__prev,
.how--arrows-laranja .how__arrows .how__next {
  border-color: #c15c17;
  color: #c15c17;
}

.how--arrows-laranja .how__arrows .how__prev:hover,
.how--arrows-laranja .how__arrows .how__next:hover,
.how--arrows-laranja .how__arrows .how__prev:focus,
.how--arrows-laranja .how__arrows .how__next:focus {
  background-color: #c15c17;
  color: #fff;
}

.how__cta-btn--laranja {
  background-color: #c15c17;
}

.how__cta-btn--laranja:hover {
  background-color: #c15c17;
}

.how--num-verde-escuro .how__num {
  background-color: #1d2a10;
}

.how--arrows-verde-escuro .how__arrows .how__prev,
.how--arrows-verde-escuro .how__arrows .how__next {
  border-color: #1d2a10;
  color: #1d2a10;
}

.how--arrows-verde-escuro .how__arrows .how__prev:hover,
.how--arrows-verde-escuro .how__arrows .how__next:hover,
.how--arrows-verde-escuro .how__arrows .how__prev:focus,
.how--arrows-verde-escuro .how__arrows .how__next:focus {
  background-color: #1d2a10;
  color: #fff;
}

.how__cta-btn--verde-escuro {
  background-color: #1d2a10;
}

.how__cta-btn--verde-escuro:hover {
  background-color: #1d2a10;
}

@media (min-width: 1024px) {
  .how__slide {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
  .how__copy {
    padding: 48px 44px 96px;
  }
  .how__media,
  .how__media img {
    min-height: 100%;
    height: 100%;
  }
  .how__controls {
    width: 50%;
    right: auto;
    padding: 0 44px 28px;
  }
}
.wp-block-acf-modalidades {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.mod {
  padding: 88px 0 96px;
  background-color: #0c101f;
}

.mod__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #f9f4e8;
}

.mod__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #f9f4e8;
}

.mod__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.mod__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.mod__title {
  margin: 0 0 40px;
  max-width: 25ch;
  color: #f9f4e8;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.mod__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.mod__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px 16px 28px;
  background-color: #fff;
  border-radius: 28px;
}

.mod__media {
  overflow: hidden;
  border-radius: 18px;
}

.mod__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.mod__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 10px 0;
}

.mod__card-title {
  margin: 0 0 12px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.2vw, 1rem);
  line-height: 1.2;
}

.mod__card-text {
  margin: 0 0 16px;
  color: #424242;
  line-height: 1.55;
}

.mod__list {
  margin: 0 0 22px;
  padding: 0 0 0 1.15em;
  color: #424242;
  line-height: 1;
}

.mod__list li {
  margin: 0 0 0.45em;
}

.mod__list li:last-child {
  margin-bottom: 0;
}

.mod__btn {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 13px 24px;
  background-color: transparent;
  border: 1px solid #0a2889;
  color: #0a2889;
  letter-spacing: 1.6px;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
}

.mod__btn:hover {
  background-color: #0a2889;
  color: #f9f4e8;
  text-decoration: none;
}

.mod__kicker--padrao {
  color: #424242;
}

.mod__title--padrao {
  color: #424242;
}

.mod__kicker--bege {
  color: #f9f4e8;
}

.mod__title--bege {
  color: #f9f4e8;
}

.mod__kicker--azul-escuro {
  color: #0c101f;
}

.mod__title--azul-escuro {
  color: #0c101f;
}

.mod__kicker--azul {
  color: #0a2889;
}

.mod__title--azul {
  color: #0a2889;
}

.mod__kicker--roxo {
  color: #640b7a;
}

.mod__title--roxo {
  color: #640b7a;
}

.mod__kicker--laranja {
  color: #c15c17;
}

.mod__title--laranja {
  color: #c15c17;
}

.mod__kicker--verde-escuro {
  color: #1d2a10;
}

.mod__title--verde-escuro {
  color: #1d2a10;
}

.mod--azul-escuro {
  background-color: #0c101f;
}

.mod--card-title-azul-escuro .mod__card-title {
  color: #0c101f;
}

.mod__btn--azul-escuro {
  border-color: #0c101f;
  color: #0c101f;
  background-color: transparent;
}

.mod__btn--azul-escuro:hover {
  background-color: #0c101f;
  border-color: #0c101f;
  color: #f9f4e8;
}

.mod--azul {
  background-color: #0a2889;
}

.mod--card-title-azul .mod__card-title {
  color: #0a2889;
}

.mod__btn--azul {
  border-color: #0a2889;
  color: #0a2889;
  background-color: transparent;
}

.mod__btn--azul:hover {
  background-color: #0a2889;
  border-color: #0a2889;
  color: #f9f4e8;
}

.mod--roxo {
  background-color: #640b7a;
}

.mod--card-title-roxo .mod__card-title {
  color: #640b7a;
}

.mod__btn--roxo {
  border-color: #640b7a;
  color: #640b7a;
  background-color: transparent;
}

.mod__btn--roxo:hover {
  background-color: #640b7a;
  border-color: #640b7a;
  color: #f9f4e8;
}

.mod--laranja {
  background-color: #c15c17;
}

.mod--card-title-laranja .mod__card-title {
  color: #c15c17;
}

.mod__btn--laranja {
  border-color: #c15c17;
  color: #c15c17;
  background-color: transparent;
}

.mod__btn--laranja:hover {
  background-color: #c15c17;
  border-color: #c15c17;
  color: #f9f4e8;
}

.mod--verde-escuro {
  background-color: #1d2a10;
}

.mod--card-title-verde-escuro .mod__card-title {
  color: #1d2a10;
}

.mod__btn--verde-escuro {
  border-color: #1d2a10;
  color: #1d2a10;
  background-color: transparent;
}

.mod__btn--verde-escuro:hover {
  background-color: #1d2a10;
  border-color: #1d2a10;
  color: #f9f4e8;
}

@media (min-width: 1024px) {
  .mod__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }
  .mod__card {
    padding: 18px 18px 32px;
  }
  .mod__body {
    padding: 26px 14px 0;
  }
}
.wp-block-acf-mediadores {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.med {
  padding: 88px 0 96px;
  background-color: #f9f4e8;
}

.med__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #0a2889;
}

.med__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #0a2889;
}

.med__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.med__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.med__title {
  margin: 0 0 18px;
  max-width: 25ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.med__lead {
  margin: 0 0 40px;
  max-width: 40rem;
  color: #424242;
  font-size: 1.05rem;
  line-height: 1.55;
}

.med__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.med__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 24px;
}

.med__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background-color: #cdc1a2;
}

.med__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.med__place {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.med__place svg {
  flex: 0 0 auto;
}

.med__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 26px;
}

.med__name {
  margin: 0 0 6px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.med__role {
  margin: 0 0 16px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.med__bio {
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 1px solid #c15c17;
  color: #424242;
  font-size: 0.95rem;
  line-height: 1.55;
}

.med__turmas {
  margin: 0 0 22px;
}

.med__turmas-label {
  margin: 0 0 10px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.med__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.med__pills li {
  padding: 7px 12px;
  border: 1px solid #9f9f9f;
  border-radius: 999px;
  color: #162416;
  font-family: "Futura", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.med__btn {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 7px 22px;
  background-color: transparent;
  border: 1px solid #0a2889;
  color: #0a2889;
  letter-spacing: 1.4px;
  font-size: 0.64rem;
  font-weight: 500;
  text-align: center;
}

.med__btn:hover {
  background-color: #0a2889;
  color: #f9f4e8;
  text-decoration: none;
}

.med__kicker--padrao {
  color: #424242;
}

.med__title--padrao {
  color: #424242;
}

.med__lead--padrao {
  color: #424242;
}

.med--nome-padrao .med__name {
  color: #424242;
}

.med--acento-padrao .med__place,
.med--acento-padrao .med__role,
.med--acento-padrao .med__turmas-label,
.med--acento-padrao .med__pills li {
  color: #424242;
}

.med--acento-padrao .med__bio {
  border-left-color: #424242;
}

.med--padrao {
  background-color: #424242;
}

.med__kicker--bege {
  color: #f9f4e8;
}

.med__title--bege {
  color: #f9f4e8;
}

.med__lead--bege {
  color: #f9f4e8;
}

.med--nome-bege .med__name {
  color: #f9f4e8;
}

.med--acento-bege .med__place,
.med--acento-bege .med__role,
.med--acento-bege .med__turmas-label,
.med--acento-bege .med__pills li {
  color: #f9f4e8;
}

.med--acento-bege .med__bio {
  border-left-color: #f9f4e8;
}

.med--bege {
  background-color: #f9f4e8;
}

.med__kicker--azul-escuro {
  color: #0c101f;
}

.med__title--azul-escuro {
  color: #0c101f;
}

.med__lead--azul-escuro {
  color: #0c101f;
}

.med--nome-azul-escuro .med__name {
  color: #0c101f;
}

.med--acento-azul-escuro .med__place,
.med--acento-azul-escuro .med__role,
.med--acento-azul-escuro .med__turmas-label,
.med--acento-azul-escuro .med__pills li {
  color: #0c101f;
}

.med--acento-azul-escuro .med__bio {
  border-left-color: #0c101f;
}

.med--azul-escuro {
  background-color: #0c101f;
}

.med__kicker--azul {
  color: #0a2889;
}

.med__title--azul {
  color: #0a2889;
}

.med__lead--azul {
  color: #0a2889;
}

.med--nome-azul .med__name {
  color: #0a2889;
}

.med--acento-azul .med__place,
.med--acento-azul .med__role,
.med--acento-azul .med__turmas-label,
.med--acento-azul .med__pills li {
  color: #0a2889;
}

.med--acento-azul .med__bio {
  border-left-color: #0a2889;
}

.med--azul {
  background-color: #0a2889;
}

.med__kicker--roxo {
  color: #640b7a;
}

.med__title--roxo {
  color: #640b7a;
}

.med__lead--roxo {
  color: #640b7a;
}

.med--nome-roxo .med__name {
  color: #640b7a;
}

.med--acento-roxo .med__place,
.med--acento-roxo .med__role,
.med--acento-roxo .med__turmas-label,
.med--acento-roxo .med__pills li {
  color: #640b7a;
}

.med--acento-roxo .med__bio {
  border-left-color: #640b7a;
}

.med--roxo {
  background-color: #640b7a;
}

.med__kicker--laranja {
  color: #c15c17;
}

.med__title--laranja {
  color: #c15c17;
}

.med__lead--laranja {
  color: #c15c17;
}

.med--nome-laranja .med__name {
  color: #c15c17;
}

.med--acento-laranja .med__place,
.med--acento-laranja .med__role,
.med--acento-laranja .med__turmas-label,
.med--acento-laranja .med__pills li {
  color: #c15c17;
}

.med--acento-laranja .med__bio {
  border-left-color: #c15c17;
}

.med--laranja {
  background-color: #c15c17;
}

.med__kicker--verde-escuro {
  color: #1d2a10;
}

.med__title--verde-escuro {
  color: #1d2a10;
}

.med__lead--verde-escuro {
  color: #1d2a10;
}

.med--nome-verde-escuro .med__name {
  color: #1d2a10;
}

.med--acento-verde-escuro .med__place,
.med--acento-verde-escuro .med__role,
.med--acento-verde-escuro .med__turmas-label,
.med--acento-verde-escuro .med__pills li {
  color: #1d2a10;
}

.med--acento-verde-escuro .med__bio {
  border-left-color: #1d2a10;
}

.med--verde-escuro {
  background-color: #1d2a10;
}

.med__btn--azul-escuro {
  border-color: #0c101f;
  color: #0c101f;
  background-color: transparent;
}

.med__btn--azul-escuro:hover {
  background-color: #0c101f;
  border-color: #0c101f;
  color: #f9f4e8;
}

.med__btn--azul {
  border-color: #0a2889;
  color: #0a2889;
  background-color: transparent;
}

.med__btn--azul:hover {
  background-color: #0a2889;
  border-color: #0a2889;
  color: #f9f4e8;
}

.med__btn--roxo {
  border-color: #640b7a;
  color: #640b7a;
  background-color: transparent;
}

.med__btn--roxo:hover {
  background-color: #640b7a;
  border-color: #640b7a;
  color: #f9f4e8;
}

.med__btn--laranja {
  border-color: #c15c17;
  color: #c15c17;
  background-color: transparent;
}

.med__btn--laranja:hover {
  background-color: #c15c17;
  border-color: #c15c17;
  color: #f9f4e8;
}

.med__btn--verde-escuro {
  border-color: #1d2a10;
  color: #1d2a10;
  background-color: transparent;
}

.med__btn--verde-escuro:hover {
  background-color: #1d2a10;
  border-color: #1d2a10;
  color: #f9f4e8;
}

@media (min-width: 700px) {
  .med__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .med__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
  }
  .med__body {
    padding: 24px 24px 28px;
  }
}
.wp-block-acf-mapa {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

html.mp-lock {
  overflow: hidden;
}

.mp {
  padding: 88px 0 96px;
  background-color: #0c101f;
}

.mp__placeholder,
.mp__hint {
  margin: 0 0 18px;
  color: #f9f4e8;
}

.mp__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #f9f4e8;
}

.mp__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.mp__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.mp__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 36px;
}

.mp__title-line {
  display: inline-block;
  background-color: #c15c17;
  color: #fff;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.25;
  padding: 0.18em 0.42em;
}

.mp__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #f9f4e8;
}

.mp__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mp__stat-num {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.mp__stat-label {
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.9;
}

.mp__lead {
  margin: 0 0 28px;
  max-width: 36rem;
  color: #f9f4e8;
  font-size: 1.02rem;
  line-height: 1.55;
}

.mp__card {
  overflow: hidden;
  border-radius: 28px;
  background-color: #f9f4e8;
  padding: 12px 8px 8px;
}

.mp__canvas {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 900/440;
  touch-action: none;
  cursor: grab;
}

.mp__canvas:active {
  cursor: grabbing;
}

.mp__canvas .jvm-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  touch-action: none;
  cursor: grab;
}

.mp__canvas .jvm-region {
  cursor: default;
}

.mp__canvas .jvm-region.is-visited {
  cursor: pointer;
}

.mp__canvas .jvm-zoom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 3;
  border-radius: 10px;
  background-color: #0c101f;
  color: #f9f4e8;
  font-size: 22px;
  line-height: 1;
}

.mp__canvas .jvm-zoom-btn.jvm-zoomin {
  top: 12px;
  left: 12px;
}

.mp__canvas .jvm-zoom-btn.jvm-zoomout {
  top: 58px;
  left: 12px;
}

.mp__dialog {
  width: min(560px, 100vw - 32px);
  max-height: min(90vh, 760px);
  padding: 22px 24px 0;
  border: 0;
  border-radius: 24px;
  background: #f9f4e8;
  color: #0c101f;
}

.mp__dialog[open] {
  display: flex;
  flex-direction: column;
}

.mp__dialog::backdrop {
  background: rgba(12, 16, 31, 0.55);
}

.mp__close {
  display: block;
  flex: 0 0 auto;
  margin: 0 0 18px auto;
  padding: 0;
  border: 0;
  background: none;
  color: #424242;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.mp__label {
  flex: 0 0 auto;
  margin: 0 0 6px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mp__country {
  flex: 0 0 auto;
  margin: 0 0 12px;
  color: #0c101f;
  font-family: "Clearface", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.mp__count {
  flex: 0 0 auto;
  margin: 0 0 16px;
  color: #424242;
  font-size: 0.98rem;
  line-height: 1.5;
}

.mp__books-wrap {
  flex: 1 1 auto;
  min-height: 0;
  max-height: min(52vh, 440px);
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0 -8px 0 0;
  padding: 0 8px 24px 0;
}

.mp__books {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp__book {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(12, 16, 31, 0.08);
}

.mp__book:first-child {
  padding-top: 0;
  border-top: 0;
}

.mp__book-cover {
  overflow: hidden;
  width: 52px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: rgba(12, 16, 31, 0.08);
}

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

.mp__book-copy {
  min-width: 0;
}

.mp__book-title {
  margin: 0;
  color: #0c101f;
  font-family: "Clearface", serif;
  font-size: 1.02rem;
  line-height: 1.25;
}

.mp__book-autor {
  margin: 4px 0 0;
  color: #424242;
  font-size: 0.85rem;
  line-height: 1.35;
}

.mp--popup-bege .mp__dialog {
  background-color: #f9f4e8;
}

.mp--popup-branco .mp__dialog {
  background-color: #fff;
}

.mp__title--azul-escuro .mp__title-line {
  background-color: #0c101f;
}

.mp__title--azul .mp__title-line {
  background-color: #0a2889;
}

.mp__title--roxo .mp__title-line {
  background-color: #640b7a;
}

.mp__title--laranja .mp__title-line {
  background-color: #c15c17;
}

.mp__title--verde-escuro .mp__title-line {
  background-color: #1d2a10;
}

.mp__kicker--padrao {
  color: #424242;
}

.mp__lead--padrao,
.mp__stats--padrao {
  color: #424242;
}

.mp--padrao {
  background-color: #424242;
}

.mp--acento-padrao {
  --mp-visited: #424242;
}

.mp--acento-padrao .mp__label {
  color: #424242;
}

.mp--sel-padrao {
  --mp-selected: #424242;
}

.mp--tip-padrao {
  --mp-tooltip: #424242;
}

.mp__kicker--bege {
  color: #f9f4e8;
}

.mp__lead--bege,
.mp__stats--bege {
  color: #f9f4e8;
}

.mp--bege {
  background-color: #f9f4e8;
}

.mp--acento-bege {
  --mp-visited: #f9f4e8;
}

.mp--acento-bege .mp__label {
  color: #f9f4e8;
}

.mp--sel-bege {
  --mp-selected: #f9f4e8;
}

.mp--tip-bege {
  --mp-tooltip: #f9f4e8;
}

.mp__kicker--azul-escuro {
  color: #0c101f;
}

.mp__lead--azul-escuro,
.mp__stats--azul-escuro {
  color: #0c101f;
}

.mp--azul-escuro {
  background-color: #0c101f;
}

.mp--acento-azul-escuro {
  --mp-visited: #0c101f;
}

.mp--acento-azul-escuro .mp__label {
  color: #0c101f;
}

.mp--sel-azul-escuro {
  --mp-selected: #0c101f;
}

.mp--tip-azul-escuro {
  --mp-tooltip: #0c101f;
}

.mp__kicker--azul {
  color: #0a2889;
}

.mp__lead--azul,
.mp__stats--azul {
  color: #0a2889;
}

.mp--azul {
  background-color: #0a2889;
}

.mp--acento-azul {
  --mp-visited: #0a2889;
}

.mp--acento-azul .mp__label {
  color: #0a2889;
}

.mp--sel-azul {
  --mp-selected: #0a2889;
}

.mp--tip-azul {
  --mp-tooltip: #0a2889;
}

.mp__kicker--roxo {
  color: #640b7a;
}

.mp__lead--roxo,
.mp__stats--roxo {
  color: #640b7a;
}

.mp--roxo {
  background-color: #640b7a;
}

.mp--acento-roxo {
  --mp-visited: #640b7a;
}

.mp--acento-roxo .mp__label {
  color: #640b7a;
}

.mp--sel-roxo {
  --mp-selected: #640b7a;
}

.mp--tip-roxo {
  --mp-tooltip: #640b7a;
}

.mp__kicker--laranja {
  color: #c15c17;
}

.mp__lead--laranja,
.mp__stats--laranja {
  color: #c15c17;
}

.mp--laranja {
  background-color: #c15c17;
}

.mp--acento-laranja {
  --mp-visited: #c15c17;
}

.mp--acento-laranja .mp__label {
  color: #c15c17;
}

.mp--sel-laranja {
  --mp-selected: #c15c17;
}

.mp--tip-laranja {
  --mp-tooltip: #c15c17;
}

.mp__kicker--verde-escuro {
  color: #1d2a10;
}

.mp__lead--verde-escuro,
.mp__stats--verde-escuro {
  color: #1d2a10;
}

.mp--verde-escuro {
  background-color: #1d2a10;
}

.mp--acento-verde-escuro {
  --mp-visited: #1d2a10;
}

.mp--acento-verde-escuro .mp__label {
  color: #1d2a10;
}

.mp--sel-verde-escuro {
  --mp-selected: #1d2a10;
}

.mp--tip-verde-escuro {
  --mp-tooltip: #1d2a10;
}

.mp {
  --mp-idle: #e4dcc8;
}

.jvm-tooltip {
  z-index: 40;
  border-radius: 8px;
  background-color: #c15c17;
  color: #f9f4e8;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  box-shadow: 0 8px 24px rgba(12, 16, 31, 0.2);
}

.jvm-tooltip.mp-tooltip--padrao {
  background-color: #424242;
  color: #0c101f;
}

.jvm-tooltip.mp-tooltip--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}

.jvm-tooltip.mp-tooltip--azul-escuro {
  background-color: #0c101f;
  color: #f9f4e8;
}

.jvm-tooltip.mp-tooltip--azul {
  background-color: #0a2889;
  color: #f9f4e8;
}

.jvm-tooltip.mp-tooltip--roxo {
  background-color: #640b7a;
  color: #f9f4e8;
}

.jvm-tooltip.mp-tooltip--laranja {
  background-color: #c15c17;
  color: #f9f4e8;
}

.jvm-tooltip.mp-tooltip--verde-escuro {
  background-color: #1d2a10;
  color: #f9f4e8;
}

@media (min-width: 700px) {
  .mp__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
  .mp__canvas {
    min-height: 0;
  }
}
@media (min-width: 1024px) {
  .mp__card {
    padding: 20px 16px 16px;
  }
  .mp__dialog {
    padding: 26px 32px 0;
  }
  .mp__books-wrap {
    padding-bottom: 32px;
  }
}
.wp-block-acf-curadoria {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.cur {
  padding: 88px 0 96px;
  background-color: #0c101f;
}

.cur__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #f9f4e8;
}

.cur__card {
  display: grid;
  gap: 36px;
  padding: 36px 24px;
  border-radius: 28px;
  background-color: #f9f4e8;
}

.cur__kicker {
  margin: 0 0 14px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.cur__title {
  margin: 0;
  max-width: 12ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.55rem);
  line-height: 1.12;
}

.cur__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.cur__item {
  padding-left: 16px;
  border-left: 1px solid #c15c17;
}

.cur__num {
  display: block;
  margin: 0 0 8px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.cur__text {
  color: #424242;
  font-size: 0.98rem;
  line-height: 1.5;
}

.cur__text p {
  margin: 0;
}

.cur__text p + p {
  margin-top: 0.55em;
}

.cur__text strong,
.cur__text b {
  font-weight: 700;
}

.cur--caixa-bege .cur__card {
  background-color: #f9f4e8;
}

.cur--caixa-branco .cur__card {
  background-color: #fff;
}

.cur__kicker--padrao {
  color: #424242;
}

.cur__title--padrao {
  color: #424242;
}

.cur__text--padrao {
  color: #424242;
}

.cur--padrao {
  background-color: #424242;
}

.cur--acento-padrao .cur__item {
  border-left-color: #424242;
}

.cur--acento-padrao .cur__num {
  color: #424242;
}

.cur__kicker--bege {
  color: #f9f4e8;
}

.cur__title--bege {
  color: #f9f4e8;
}

.cur__text--bege {
  color: #f9f4e8;
}

.cur--bege {
  background-color: #f9f4e8;
}

.cur--acento-bege .cur__item {
  border-left-color: #f9f4e8;
}

.cur--acento-bege .cur__num {
  color: #f9f4e8;
}

.cur__kicker--azul-escuro {
  color: #0c101f;
}

.cur__title--azul-escuro {
  color: #0c101f;
}

.cur__text--azul-escuro {
  color: #0c101f;
}

.cur--azul-escuro {
  background-color: #0c101f;
}

.cur--acento-azul-escuro .cur__item {
  border-left-color: #0c101f;
}

.cur--acento-azul-escuro .cur__num {
  color: #0c101f;
}

.cur__kicker--azul {
  color: #0a2889;
}

.cur__title--azul {
  color: #0a2889;
}

.cur__text--azul {
  color: #0a2889;
}

.cur--azul {
  background-color: #0a2889;
}

.cur--acento-azul .cur__item {
  border-left-color: #0a2889;
}

.cur--acento-azul .cur__num {
  color: #0a2889;
}

.cur__kicker--roxo {
  color: #640b7a;
}

.cur__title--roxo {
  color: #640b7a;
}

.cur__text--roxo {
  color: #640b7a;
}

.cur--roxo {
  background-color: #640b7a;
}

.cur--acento-roxo .cur__item {
  border-left-color: #640b7a;
}

.cur--acento-roxo .cur__num {
  color: #640b7a;
}

.cur__kicker--laranja {
  color: #c15c17;
}

.cur__title--laranja {
  color: #c15c17;
}

.cur__text--laranja {
  color: #c15c17;
}

.cur--laranja {
  background-color: #c15c17;
}

.cur--acento-laranja .cur__item {
  border-left-color: #c15c17;
}

.cur--acento-laranja .cur__num {
  color: #c15c17;
}

.cur__kicker--verde-escuro {
  color: #1d2a10;
}

.cur__title--verde-escuro {
  color: #1d2a10;
}

.cur__text--verde-escuro {
  color: #1d2a10;
}

.cur--verde-escuro {
  background-color: #1d2a10;
}

.cur--acento-verde-escuro .cur__item {
  border-left-color: #1d2a10;
}

.cur--acento-verde-escuro .cur__num {
  color: #1d2a10;
}

@media (min-width: 700px) {
  .cur__card {
    padding: 44px 36px;
  }
  .cur__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }
}
@media (min-width: 1024px) {
  .cur__card {
    grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.7fr);
    gap: 48px 56px;
    align-items: start;
    padding: 56px 48px 60px;
  }
  .cur__title {
    max-width: 11ch;
  }
}
.wp-block-acf-turmas {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

html.tms-lock {
  overflow: hidden;
}

.tms {
  padding: 88px 0 96px;
  background-color: #f9f4e8;
}

.tms__placeholder,
.tms__empty {
  margin: 0;
  padding: 32px 0;
  color: #0a2889;
}

.tms__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #c15c17;
}

.tms__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.tms__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.tms__title {
  margin: 0 0 18px;
  max-width: 25ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.tms__lead {
  margin: 0 0 40px;
  max-width: 40rem;
  color: #424242;
  font-size: 1.05rem;
  line-height: 1.55;
}

.tms__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 36px;
}

.tms__choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(12, 16, 31, 0.12);
  border-radius: 20px;
  background: #fff;
  color: #0a2889;
  text-align: left;
  cursor: pointer;
}

.tms__choice:hover,
.tms__choice.is-active {
  border-color: currentColor;
  box-shadow: none;
  background-color: #0a2889;
  color: #f9f4e8;
}

.tms__choice-label {
  color: inherit;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0.72;
}

.tms__choice-title {
  color: inherit;
  font-family: "Clearface", serif;
  font-size: clamp(1.4rem, 3vw, 1.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.tms__choice-text {
  color: inherit;
  font-size: 13px;
  opacity: 0.8;
}

.tms__choice:hover .tms__choice-label,
.tms__choice.is-active .tms__choice-label,
.tms__choice:hover .tms__choice-text,
.tms__choice.is-active .tms__choice-text {
  opacity: 1;
}

.tms.is-preview [data-list=presencial] {
  display: grid;
}

.tms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.tms__grid[hidden] {
  display: none !important;
}

.tms__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  cursor: pointer;
}

.tms__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.tms__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 22px 24px;
}

.tms__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tms__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "Futura", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.tms__tag--place {
  background: rgba(10, 40, 137, 0.1);
  color: #0a2889;
}

.tms__tag--freq {
  border: 1px solid #cdc1a2;
  color: #0a2889;
}

.tms__card-title,
.tms__dialog-title {
  margin: 0 0 10px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.3rem);
  line-height: 1.2;
}

.tms__meta {
  margin: 0 0 18px;
  color: #424242;
  font-size: 0.92rem;
  line-height: 1.5;
}

.tms__open {
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: #0a2889;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.tms__open:hover {
  text-decoration: underline;
}

.tms__dialog {
  width: min(560px, 100vw - 32px);
  max-height: min(90vh, 920px);
  padding: 22px 24px 32px;
  border: 0;
  border-radius: 24px;
  background: #f9f4e8;
  color: #0c101f;
}

.tms__dialog::backdrop {
  background: rgba(12, 16, 31, 0.55);
}

.tms__close {
  display: block;
  margin: 0 0 18px auto;
  padding: 0;
  border: 0;
  background: none;
  color: #424242;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.tms__label {
  margin: 0 0 6px;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tms__now {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 28px;
}

.tms__stamp {
  position: relative;
  overflow: hidden;
  background-color: #0a2889;
  padding: 8px;
  outline: 2px dashed rgba(255, 255, 255, 0.35);
  outline-offset: -6px;
}

.tms__stamp img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.tms__stamp-brand,
.tms__stamp-dest {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-family: "Futura", sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tms__stamp-brand {
  left: 12px;
  bottom: 12px;
}

.tms__stamp-dest {
  top: 50%;
  right: 8px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.tms__now-title {
  margin: 0 0 4px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.tms__now-place {
  margin: 0;
  color: #424242;
}

.tms__facts {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.tms__fact {
  margin: 0;
}

.tms__fact dd {
  margin: 0;
  color: #424242;
  font-family: "Clearface", serif;
  font-size: 1.15rem;
}

.tms__cura {
  padding-top: 22px;
  border-top: 1px solid rgba(12, 16, 31, 0.12);
  margin-bottom: 28px;
}

.tms__cura-lead {
  margin: 0 0 16px;
  color: #424242;
  font-size: 0.92rem;
}

.tms__cura-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tms__cura-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(193, 92, 23, 0.08);
}

.tms__cura-title {
  margin: 0 0 4px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-size: 1rem;
}

.tms__cura-dest {
  margin: 0;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.tms__cura-when {
  margin: 0;
  flex: 0 0 auto;
  color: #424242;
  font-size: 0.82rem;
  text-align: right;
}

.tms__price,
.tms__wait {
  padding-top: 22px;
  border-top: 1px solid rgba(12, 16, 31, 0.12);
  margin-bottom: 22px;
}

.tms__plans {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tms__plans li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: #424242;
}

.tms__enroll {
  border-radius: 999px;
  padding: 12px 22px;
  background-color: #c15c17;
  color: #f9f4e8;
  letter-spacing: 1.4px;
  font-size: 0.64rem;
}

.tms__enroll:hover {
  filter: brightness(0.9);
  text-decoration: none;
}

.tms__wait-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #c15c17;
  color: #f9f4e8;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.tms__wait-text {
  margin: 0 0 18px;
  color: #424242;
  max-width: 36rem;
}

.tms__help {
  display: block;
  padding-bottom: 6px;
  border-bottom: 1px solid #0a2889;
  color: #0a2889;
  font-family: "Futura", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-align: center;
}

.tms__help:hover {
  text-decoration: none;
  opacity: 0.8;
}

.tms__kicker--padrao {
  color: #424242;
}

.tms__title--padrao {
  color: #424242;
}

.tms__lead--padrao {
  color: #424242;
}

.tms--acento-padrao .tms__choice {
  color: #424242;
}

.tms--acento-padrao .tms__choice:hover,
.tms--acento-padrao .tms__choice.is-active {
  background-color: #424242;
  border-color: #424242;
  color: #f9f4e8;
}

.tms--padrao {
  background-color: #424242;
}

.tms--card-padrao .tms__card-title,
.tms--card-padrao .tms__dialog-title,
.tms--card-padrao .tms__now-title,
.tms--card-padrao .tms__cura-title,
.tms--card-padrao .tms__open,
.tms--card-padrao .tms__tag--place,
.tms--card-padrao .tms__tag--freq {
  color: #424242;
}

.tms--card-padrao .tms__tag--place {
  background-color: rgba(66, 66, 66, 0.1);
}

.tms--sec-padrao .tms__label,
.tms--sec-padrao .tms__cura-dest {
  color: #424242;
}

.tms__kicker--bege {
  color: #f9f4e8;
}

.tms__title--bege {
  color: #f9f4e8;
}

.tms__lead--bege {
  color: #f9f4e8;
}

.tms--acento-bege .tms__choice {
  color: #f9f4e8;
}

.tms--acento-bege .tms__choice:hover,
.tms--acento-bege .tms__choice.is-active {
  background-color: #f9f4e8;
  border-color: #f9f4e8;
  color: #f9f4e8;
}

.tms--bege {
  background-color: #f9f4e8;
}

.tms--card-bege .tms__card-title,
.tms--card-bege .tms__dialog-title,
.tms--card-bege .tms__now-title,
.tms--card-bege .tms__cura-title,
.tms--card-bege .tms__open,
.tms--card-bege .tms__tag--place,
.tms--card-bege .tms__tag--freq {
  color: #f9f4e8;
}

.tms--card-bege .tms__tag--place {
  background-color: rgba(249, 244, 232, 0.1);
}

.tms--sec-bege .tms__label,
.tms--sec-bege .tms__cura-dest {
  color: #f9f4e8;
}

.tms__kicker--azul-escuro {
  color: #0c101f;
}

.tms__title--azul-escuro {
  color: #0c101f;
}

.tms__lead--azul-escuro {
  color: #0c101f;
}

.tms--acento-azul-escuro .tms__choice {
  color: #0c101f;
}

.tms--acento-azul-escuro .tms__choice:hover,
.tms--acento-azul-escuro .tms__choice.is-active {
  background-color: #0c101f;
  border-color: #0c101f;
  color: #f9f4e8;
}

.tms--azul-escuro {
  background-color: #0c101f;
}

.tms--card-azul-escuro .tms__card-title,
.tms--card-azul-escuro .tms__dialog-title,
.tms--card-azul-escuro .tms__now-title,
.tms--card-azul-escuro .tms__cura-title,
.tms--card-azul-escuro .tms__open,
.tms--card-azul-escuro .tms__tag--place,
.tms--card-azul-escuro .tms__tag--freq {
  color: #0c101f;
}

.tms--card-azul-escuro .tms__tag--place {
  background-color: rgba(12, 16, 31, 0.1);
}

.tms--sec-azul-escuro .tms__label,
.tms--sec-azul-escuro .tms__cura-dest {
  color: #0c101f;
}

.tms__kicker--azul {
  color: #0a2889;
}

.tms__title--azul {
  color: #0a2889;
}

.tms__lead--azul {
  color: #0a2889;
}

.tms--acento-azul .tms__choice {
  color: #0a2889;
}

.tms--acento-azul .tms__choice:hover,
.tms--acento-azul .tms__choice.is-active {
  background-color: #0a2889;
  border-color: #0a2889;
  color: #f9f4e8;
}

.tms--azul {
  background-color: #0a2889;
}

.tms--card-azul .tms__card-title,
.tms--card-azul .tms__dialog-title,
.tms--card-azul .tms__now-title,
.tms--card-azul .tms__cura-title,
.tms--card-azul .tms__open,
.tms--card-azul .tms__tag--place,
.tms--card-azul .tms__tag--freq {
  color: #0a2889;
}

.tms--card-azul .tms__tag--place {
  background-color: rgba(10, 40, 137, 0.1);
}

.tms--sec-azul .tms__label,
.tms--sec-azul .tms__cura-dest {
  color: #0a2889;
}

.tms__kicker--roxo {
  color: #640b7a;
}

.tms__title--roxo {
  color: #640b7a;
}

.tms__lead--roxo {
  color: #640b7a;
}

.tms--acento-roxo .tms__choice {
  color: #640b7a;
}

.tms--acento-roxo .tms__choice:hover,
.tms--acento-roxo .tms__choice.is-active {
  background-color: #640b7a;
  border-color: #640b7a;
  color: #f9f4e8;
}

.tms--roxo {
  background-color: #640b7a;
}

.tms--card-roxo .tms__card-title,
.tms--card-roxo .tms__dialog-title,
.tms--card-roxo .tms__now-title,
.tms--card-roxo .tms__cura-title,
.tms--card-roxo .tms__open,
.tms--card-roxo .tms__tag--place,
.tms--card-roxo .tms__tag--freq {
  color: #640b7a;
}

.tms--card-roxo .tms__tag--place {
  background-color: rgba(100, 11, 122, 0.1);
}

.tms--sec-roxo .tms__label,
.tms--sec-roxo .tms__cura-dest {
  color: #640b7a;
}

.tms__kicker--laranja {
  color: #c15c17;
}

.tms__title--laranja {
  color: #c15c17;
}

.tms__lead--laranja {
  color: #c15c17;
}

.tms--acento-laranja .tms__choice {
  color: #c15c17;
}

.tms--acento-laranja .tms__choice:hover,
.tms--acento-laranja .tms__choice.is-active {
  background-color: #c15c17;
  border-color: #c15c17;
  color: #f9f4e8;
}

.tms--laranja {
  background-color: #c15c17;
}

.tms--card-laranja .tms__card-title,
.tms--card-laranja .tms__dialog-title,
.tms--card-laranja .tms__now-title,
.tms--card-laranja .tms__cura-title,
.tms--card-laranja .tms__open,
.tms--card-laranja .tms__tag--place,
.tms--card-laranja .tms__tag--freq {
  color: #c15c17;
}

.tms--card-laranja .tms__tag--place {
  background-color: rgba(193, 92, 23, 0.1);
}

.tms--sec-laranja .tms__label,
.tms--sec-laranja .tms__cura-dest {
  color: #c15c17;
}

.tms__kicker--verde-escuro {
  color: #1d2a10;
}

.tms__title--verde-escuro {
  color: #1d2a10;
}

.tms__lead--verde-escuro {
  color: #1d2a10;
}

.tms--acento-verde-escuro .tms__choice {
  color: #1d2a10;
}

.tms--acento-verde-escuro .tms__choice:hover,
.tms--acento-verde-escuro .tms__choice.is-active {
  background-color: #1d2a10;
  border-color: #1d2a10;
  color: #f9f4e8;
}

.tms--verde-escuro {
  background-color: #1d2a10;
}

.tms--card-verde-escuro .tms__card-title,
.tms--card-verde-escuro .tms__dialog-title,
.tms--card-verde-escuro .tms__now-title,
.tms--card-verde-escuro .tms__cura-title,
.tms--card-verde-escuro .tms__open,
.tms--card-verde-escuro .tms__tag--place,
.tms--card-verde-escuro .tms__tag--freq {
  color: #1d2a10;
}

.tms--card-verde-escuro .tms__tag--place {
  background-color: rgba(29, 42, 16, 0.1);
}

.tms--sec-verde-escuro .tms__label,
.tms--sec-verde-escuro .tms__cura-dest {
  color: #1d2a10;
}

.tms--popup-bege .tms__dialog {
  background-color: #f9f4e8;
}

.tms--popup-branco .tms__dialog {
  background-color: #fff;
}

.tms--btn-azul-escuro .tms__enroll,
.tms--btn-azul-escuro .tms__wait-badge {
  background-color: #0c101f;
}

.tms--btn-azul .tms__enroll,
.tms--btn-azul .tms__wait-badge {
  background-color: #0a2889;
}

.tms--btn-roxo .tms__enroll,
.tms--btn-roxo .tms__wait-badge {
  background-color: #640b7a;
}

.tms--btn-laranja .tms__enroll,
.tms--btn-laranja .tms__wait-badge {
  background-color: #c15c17;
}

.tms--btn-verde-escuro .tms__enroll,
.tms--btn-verde-escuro .tms__wait-badge {
  background-color: #1d2a10;
}

@media (min-width: 700px) {
  .tms__choices {
    grid-template-columns: repeat(2, 300px);
    gap: 20px;
  }
  .tms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tms__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .tms__dialog {
    padding: 26px 32px 40px;
  }
  .tms__cura-list li {
    align-items: center;
  }
}
.wp-block-acf-convidados {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.gv {
  padding: 88px 0 96px;
  background-color: #f9f4e8;
}

.gv__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #0a2889;
}

.gv__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #c15c17;
}

.gv__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.gv__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.gv__title {
  margin: 0 0 36px;
  max-width: 22ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.gv__card {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 28px;
}

.gv__viewport,
.gv__viewport.glider {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.gv__viewport.glider.drag {
  cursor: grabbing;
}

.gv__track {
  display: flex;
  margin: 0;
  padding: 0;
}

.gv__slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
}

.gv__slide.glider-slide {
  margin: 0 !important;
}

.gv:not(.gv--ready) .gv__slide:not(:first-child) {
  display: none;
}

.gv__media {
  position: relative;
  min-height: 280px;
  background-color: #cdc1a2;
}

.gv__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gv__count {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 16, 31, 0.72);
  color: #fff;
  font-family: "Futura", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.gv__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 28px 92px;
}

.gv__aspas {
  display: block;
  margin-bottom: 8px;
  color: rgba(193, 92, 23, 0.45);
  font-family: "Clearface", serif;
  font-size: 4.2rem;
  line-height: 0.7;
}

.gv__quote {
  margin: 0;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.gv__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 24px;
}

.gv--single .gv__controls {
  display: none;
}

.gv__dots {
  display: flex;
  align-items: center;
}

.gv__dots .glider-dot {
  width: 8px;
  height: 8px;
  margin: 0 5px 0 0;
  background: #cdc1a2;
  opacity: 1;
}

.gv__dots .glider-dot.active,
.gv__dots .glider-dot:hover,
.gv__dots .glider-dot:focus {
  background: #c15c17;
}

.gv__arrows {
  display: flex;
  gap: 10px;
}

.gv__arrows .gv__prev,
.gv__arrows .gv__next {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #0a2889;
  border-radius: 50%;
  background: #fff;
  color: #0a2889;
  font-size: 0;
  cursor: pointer;
}

.gv__arrows .gv__prev:hover,
.gv__arrows .gv__next:hover {
  background: #0a2889;
  color: #fff;
  text-decoration: none;
}

.gv__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.gv__cta-btn {
  border-radius: 999px;
  padding: 14px 28px;
  background-color: #c15c17;
  color: #f9f4e8;
  letter-spacing: 1.6px;
  font-size: 0.68rem;
  font-weight: 600;
}

.gv__cta-btn:hover {
  filter: brightness(0.88);
  text-decoration: none;
}

.gv__kicker--padrao {
  color: #424242;
}

.gv__title--padrao {
  color: #424242;
}

.gv--padrao {
  background-color: #424242;
}

.gv--quote-padrao .gv__quote {
  color: #424242;
}

.gv--aspas-padrao .gv__aspas {
  color: rgba(66, 66, 66, 0.45);
}

.gv__kicker--bege {
  color: #f9f4e8;
}

.gv__title--bege {
  color: #f9f4e8;
}

.gv--bege {
  background-color: #f9f4e8;
}

.gv--quote-bege .gv__quote {
  color: #f9f4e8;
}

.gv--aspas-bege .gv__aspas {
  color: rgba(249, 244, 232, 0.45);
}

.gv__kicker--azul-escuro {
  color: #0c101f;
}

.gv__title--azul-escuro {
  color: #0c101f;
}

.gv--azul-escuro {
  background-color: #0c101f;
}

.gv--quote-azul-escuro .gv__quote {
  color: #0c101f;
}

.gv--aspas-azul-escuro .gv__aspas {
  color: rgba(12, 16, 31, 0.45);
}

.gv__kicker--azul {
  color: #0a2889;
}

.gv__title--azul {
  color: #0a2889;
}

.gv--azul {
  background-color: #0a2889;
}

.gv--quote-azul .gv__quote {
  color: #0a2889;
}

.gv--aspas-azul .gv__aspas {
  color: rgba(10, 40, 137, 0.45);
}

.gv__kicker--roxo {
  color: #640b7a;
}

.gv__title--roxo {
  color: #640b7a;
}

.gv--roxo {
  background-color: #640b7a;
}

.gv--quote-roxo .gv__quote {
  color: #640b7a;
}

.gv--aspas-roxo .gv__aspas {
  color: rgba(100, 11, 122, 0.45);
}

.gv__kicker--laranja {
  color: #c15c17;
}

.gv__title--laranja {
  color: #c15c17;
}

.gv--laranja {
  background-color: #c15c17;
}

.gv--quote-laranja .gv__quote {
  color: #c15c17;
}

.gv--aspas-laranja .gv__aspas {
  color: rgba(193, 92, 23, 0.45);
}

.gv__kicker--verde-escuro {
  color: #1d2a10;
}

.gv__title--verde-escuro {
  color: #1d2a10;
}

.gv--verde-escuro {
  background-color: #1d2a10;
}

.gv--quote-verde-escuro .gv__quote {
  color: #1d2a10;
}

.gv--aspas-verde-escuro .gv__aspas {
  color: rgba(29, 42, 16, 0.45);
}

.gv--arrows-azul-escuro .gv__arrows .gv__prev,
.gv--arrows-azul-escuro .gv__arrows .gv__next {
  border-color: #0c101f;
  color: #0c101f;
}

.gv--arrows-azul-escuro .gv__arrows .gv__prev:hover,
.gv--arrows-azul-escuro .gv__arrows .gv__next:hover {
  background-color: #0c101f;
  color: #fff;
}

.gv__cta-btn--azul-escuro {
  background-color: #0c101f;
}

.gv__cta-btn--azul-escuro:hover {
  background-color: #0c101f;
}

.gv--arrows-azul .gv__arrows .gv__prev,
.gv--arrows-azul .gv__arrows .gv__next {
  border-color: #0a2889;
  color: #0a2889;
}

.gv--arrows-azul .gv__arrows .gv__prev:hover,
.gv--arrows-azul .gv__arrows .gv__next:hover {
  background-color: #0a2889;
  color: #fff;
}

.gv__cta-btn--azul {
  background-color: #0a2889;
}

.gv__cta-btn--azul:hover {
  background-color: #0a2889;
}

.gv--arrows-roxo .gv__arrows .gv__prev,
.gv--arrows-roxo .gv__arrows .gv__next {
  border-color: #640b7a;
  color: #640b7a;
}

.gv--arrows-roxo .gv__arrows .gv__prev:hover,
.gv--arrows-roxo .gv__arrows .gv__next:hover {
  background-color: #640b7a;
  color: #fff;
}

.gv__cta-btn--roxo {
  background-color: #640b7a;
}

.gv__cta-btn--roxo:hover {
  background-color: #640b7a;
}

.gv--arrows-laranja .gv__arrows .gv__prev,
.gv--arrows-laranja .gv__arrows .gv__next {
  border-color: #c15c17;
  color: #c15c17;
}

.gv--arrows-laranja .gv__arrows .gv__prev:hover,
.gv--arrows-laranja .gv__arrows .gv__next:hover {
  background-color: #c15c17;
  color: #fff;
}

.gv__cta-btn--laranja {
  background-color: #c15c17;
}

.gv__cta-btn--laranja:hover {
  background-color: #c15c17;
}

.gv--arrows-verde-escuro .gv__arrows .gv__prev,
.gv--arrows-verde-escuro .gv__arrows .gv__next {
  border-color: #1d2a10;
  color: #1d2a10;
}

.gv--arrows-verde-escuro .gv__arrows .gv__prev:hover,
.gv--arrows-verde-escuro .gv__arrows .gv__next:hover {
  background-color: #1d2a10;
  color: #fff;
}

.gv__cta-btn--verde-escuro {
  background-color: #1d2a10;
}

.gv__cta-btn--verde-escuro:hover {
  background-color: #1d2a10;
}

@media (min-width: 1024px) {
  .gv__slide {
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
  }
  .gv__media,
  .gv__media img {
    min-height: 460px;
    height: 100%;
  }
  .gv__copy {
    padding: 48px 44px 96px;
  }
  .gv__controls {
    left: 50%;
    width: 50%;
    padding: 0 44px 28px;
  }
}
.wp-block-acf-depoimentos {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.dep {
  padding: 88px 0 96px;
  background-color: #c15c17;
}

.dep__placeholder {
  margin: 0;
  padding: 40px;
  text-align: center;
  color: #f9f4e8;
}

.dep__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #f9f4e8;
}

.dep__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.dep__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.dep__title {
  margin: 0 0 40px;
  max-width: 18ch;
  color: #f9f4e8;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
}

.dep__glider {
  position: relative;
  width: 100%;
  padding: 0 8px 8px;
}

.dep__viewport,
.dep__viewport.glider {
  width: 100%;
  height: auto !important;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.dep__viewport.glider.drag {
  cursor: grabbing;
}

.dep__track,
.dep__track.glider-track {
  display: flex;
  align-items: stretch;
  height: auto !important;
  margin: 0;
  padding: 0;
}

.dep__slide,
.dep .glider-slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-content: stretch;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 8px;
  overflow: visible;
}

.dep:not(.dep--ready) .dep__slide:not(:first-child) {
  display: none;
}

.dep__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 280px;
  padding: 32px 28px 28px;
  border-radius: 20px;
  background-color: #f9f4e8;
  color: #0c101f;
  overflow: visible;
}

.dep__aspas {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 16px;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-size: 2.4rem;
  line-height: 0.7;
}

.dep__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.dep__text p {
  margin: 0 0 0.6em;
  min-width: 0;
  overflow-wrap: inherit;
}

.dep__text p:last-child {
  margin-bottom: 0;
}

.dep__name {
  flex: 0 0 auto;
  margin: 22px 0 0;
  font-size: 0.95rem;
  text-align: right;
}

.dep__prev,
.dep__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}

.dep__prev {
  left: -8px;
}

.dep__next {
  right: -8px;
}

.dep__prev:hover,
.dep__next:hover {
  background: #fff;
  color: #c15c17;
  text-decoration: none;
}

.dep__prev.disabled,
.dep__next.disabled {
  opacity: 1;
  cursor: pointer;
}

.dep--single .dep__prev,
.dep--single .dep__next,
.dep--single .dep__dots {
  display: none;
}

.dep__dots {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.dep__dots .glider-dot {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.dep__dots .glider-dot.active {
  background: #fff;
}

.dep__kicker--padrao {
  color: #424242;
}

.dep__title--padrao {
  color: #424242;
}

.dep--padrao {
  background-color: #424242;
}

.dep--card-padrao .dep__card {
  background-color: #424242;
}

.dep--aspas-padrao .dep__aspas {
  color: #424242;
}

.dep__kicker--bege {
  color: #f9f4e8;
}

.dep__title--bege {
  color: #f9f4e8;
}

.dep--bege {
  background-color: #f9f4e8;
}

.dep--card-bege .dep__card {
  background-color: #f9f4e8;
}

.dep--aspas-bege .dep__aspas {
  color: #f9f4e8;
}

.dep__kicker--azul-escuro {
  color: #0c101f;
}

.dep__title--azul-escuro {
  color: #0c101f;
}

.dep--azul-escuro {
  background-color: #0c101f;
}

.dep--card-azul-escuro .dep__card {
  background-color: #0c101f;
}

.dep--aspas-azul-escuro .dep__aspas {
  color: #0c101f;
}

.dep__kicker--azul {
  color: #0a2889;
}

.dep__title--azul {
  color: #0a2889;
}

.dep--azul {
  background-color: #0a2889;
}

.dep--card-azul .dep__card {
  background-color: #0a2889;
}

.dep--aspas-azul .dep__aspas {
  color: #0a2889;
}

.dep__kicker--roxo {
  color: #640b7a;
}

.dep__title--roxo {
  color: #640b7a;
}

.dep--roxo {
  background-color: #640b7a;
}

.dep--card-roxo .dep__card {
  background-color: #640b7a;
}

.dep--aspas-roxo .dep__aspas {
  color: #640b7a;
}

.dep__kicker--laranja {
  color: #c15c17;
}

.dep__title--laranja {
  color: #c15c17;
}

.dep--laranja {
  background-color: #c15c17;
}

.dep--card-laranja .dep__card {
  background-color: #c15c17;
}

.dep--aspas-laranja .dep__aspas {
  color: #c15c17;
}

.dep__kicker--verde-escuro {
  color: #1d2a10;
}

.dep__title--verde-escuro {
  color: #1d2a10;
}

.dep--verde-escuro {
  background-color: #1d2a10;
}

.dep--card-verde-escuro .dep__card {
  background-color: #1d2a10;
}

.dep--aspas-verde-escuro .dep__aspas {
  color: #1d2a10;
}

.dep--card-azul-escuro .dep__card {
  color: #f9f4e8;
}

.dep--ativo-azul-escuro .dep__slide.center .dep__card {
  background-color: #0c101f;
  color: #f9f4e8;
}

.dep--ativo-azul-escuro .dep__slide.center .dep__aspas {
  color: #f9f4e8;
}

.dep--card-azul .dep__card {
  color: #f9f4e8;
}

.dep--ativo-azul .dep__slide.center .dep__card {
  background-color: #0a2889;
  color: #f9f4e8;
}

.dep--ativo-azul .dep__slide.center .dep__aspas {
  color: #f9f4e8;
}

.dep--card-roxo .dep__card {
  color: #f9f4e8;
}

.dep--ativo-roxo .dep__slide.center .dep__card {
  background-color: #640b7a;
  color: #f9f4e8;
}

.dep--ativo-roxo .dep__slide.center .dep__aspas {
  color: #f9f4e8;
}

.dep--card-laranja .dep__card {
  color: #f9f4e8;
}

.dep--ativo-laranja .dep__slide.center .dep__card {
  background-color: #c15c17;
  color: #f9f4e8;
}

.dep--ativo-laranja .dep__slide.center .dep__aspas {
  color: #f9f4e8;
}

.dep--card-verde-escuro .dep__card {
  color: #f9f4e8;
}

.dep--ativo-verde-escuro .dep__slide.center .dep__card {
  background-color: #1d2a10;
  color: #f9f4e8;
}

.dep--ativo-verde-escuro .dep__slide.center .dep__aspas {
  color: #f9f4e8;
}

@media (min-width: 1024px) {
  .dep__glider {
    padding: 0 36px 8px;
  }
  .dep__slide,
  .dep .glider-slide {
    padding: 0 10px;
  }
  .dep__prev {
    left: 0;
  }
  .dep__next {
    right: 0;
  }
}
.wp-block-acf-cta {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.cta {
  padding: 96px 0;
  background-color: #0a2889;
  text-align: center;
}

.cta__placeholder {
  margin: 0;
  padding: 40px;
  color: #f9f4e8;
}

.cta__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 22px;
}

.cta__title-line {
  display: inline-block;
  background-color: #f9f4e8;
  color: #0c101f;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  padding: 0.18em 0.42em;
}

.cta__lead {
  margin: 0 auto 32px;
  max-width: 34rem;
  color: #f9f4e8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.cta__btn {
  border-radius: 999px;
  padding: 16px 32px;
  background-color: #c15c17;
  color: #f9f4e8;
  letter-spacing: 1.8px;
  font-size: 0.68rem;
  font-weight: 600;
}

.cta__btn:hover {
  filter: brightness(0.88);
  text-decoration: none;
}

.cta--padrao {
  background-color: #424242;
}

.cta__title--box-padrao .cta__title-line {
  background-color: #424242;
}

.cta__title--text-padrao .cta__title-line {
  color: #424242;
}

.cta__lead--padrao {
  color: #424242;
}

.cta--bege {
  background-color: #f9f4e8;
}

.cta__title--box-bege .cta__title-line {
  background-color: #f9f4e8;
}

.cta__title--text-bege .cta__title-line {
  color: #f9f4e8;
}

.cta__lead--bege {
  color: #f9f4e8;
}

.cta--azul-escuro {
  background-color: #0c101f;
}

.cta__title--box-azul-escuro .cta__title-line {
  background-color: #0c101f;
}

.cta__title--text-azul-escuro .cta__title-line {
  color: #0c101f;
}

.cta__lead--azul-escuro {
  color: #0c101f;
}

.cta--azul {
  background-color: #0a2889;
}

.cta__title--box-azul .cta__title-line {
  background-color: #0a2889;
}

.cta__title--text-azul .cta__title-line {
  color: #0a2889;
}

.cta__lead--azul {
  color: #0a2889;
}

.cta--roxo {
  background-color: #640b7a;
}

.cta__title--box-roxo .cta__title-line {
  background-color: #640b7a;
}

.cta__title--text-roxo .cta__title-line {
  color: #640b7a;
}

.cta__lead--roxo {
  color: #640b7a;
}

.cta--laranja {
  background-color: #c15c17;
}

.cta__title--box-laranja .cta__title-line {
  background-color: #c15c17;
}

.cta__title--text-laranja .cta__title-line {
  color: #c15c17;
}

.cta__lead--laranja {
  color: #c15c17;
}

.cta--verde-escuro {
  background-color: #1d2a10;
}

.cta__title--box-verde-escuro .cta__title-line {
  background-color: #1d2a10;
}

.cta__title--text-verde-escuro .cta__title-line {
  color: #1d2a10;
}

.cta__lead--verde-escuro {
  color: #1d2a10;
}

.cta__btn--azul-escuro {
  background-color: #0c101f;
}

.cta__btn--azul-escuro:hover {
  background-color: #0c101f;
}

.cta__btn--azul {
  background-color: #0a2889;
}

.cta__btn--azul:hover {
  background-color: #0a2889;
}

.cta__btn--roxo {
  background-color: #640b7a;
}

.cta__btn--roxo:hover {
  background-color: #640b7a;
}

.cta__btn--laranja {
  background-color: #c15c17;
}

.cta__btn--laranja:hover {
  background-color: #c15c17;
}

.cta__btn--verde-escuro {
  background-color: #1d2a10;
}

.cta__btn--verde-escuro:hover {
  background-color: #1d2a10;
}

.wp-block-acf-universo {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.uni {
  padding: 88px 0 96px;
  background-color: #f9f4e8;
}

.uni__placeholder {
  margin: 0;
  padding: 40px;
  color: #0a2889;
}

.uni__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #c15c17;
}

.uni__kicker-text {
  flex: 0 0 auto;
  font-family: "Futura", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.uni__kicker-line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background-color: currentColor;
  opacity: 0.85;
}

.uni__title {
  margin: 0 0 16px;
  max-width: 28ch;
  color: #0a2889;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.15;
}

.uni__lead {
  margin: 0 0 36px;
  max-width: 40rem;
  color: #424242;
  font-size: 1.02rem;
  line-height: 1.55;
}

.uni__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 8px 2px;
}

.uni__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 28px 22px 22px;
  border-radius: 22px;
  color: #fff;
  background-color: #0a2889;
  --uni-card-accent: #0a2889;
}

a.uni__card:hover {
  text-decoration: none;
  filter: brightness(0.94);
}

.uni__badge {
  position: absolute;
  top: -10px;
  left: 16px;
  z-index: 1;
  padding: 5px 10px;
  background: #fff;
  color: #0c101f;
  font-family: "Futura", sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.uni__card.is-here {
  box-shadow: inset 0 0 0 2px #fff;
  outline: 3px solid var(--uni-card-accent);
  outline-offset: 4px;
}

.uni__card-title {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}

a.uni__card .uni__card-title,
a.uni__card .uni__card-text {
  color: #fff;
}

.uni__card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
}

.uni__kicker--padrao {
  color: #424242;
}

.uni__title--padrao {
  color: #424242;
}

.uni__lead--padrao {
  color: #424242;
}

.uni--padrao {
  background-color: #424242;
}

.uni__kicker--bege {
  color: #f9f4e8;
}

.uni__title--bege {
  color: #f9f4e8;
}

.uni__lead--bege {
  color: #f9f4e8;
}

.uni--bege {
  background-color: #f9f4e8;
}

.uni__kicker--azul-escuro {
  color: #0c101f;
}

.uni__title--azul-escuro {
  color: #0c101f;
}

.uni__lead--azul-escuro {
  color: #0c101f;
}

.uni--azul-escuro {
  background-color: #0c101f;
}

.uni__kicker--azul {
  color: #0a2889;
}

.uni__title--azul {
  color: #0a2889;
}

.uni__lead--azul {
  color: #0a2889;
}

.uni--azul {
  background-color: #0a2889;
}

.uni__kicker--roxo {
  color: #640b7a;
}

.uni__title--roxo {
  color: #640b7a;
}

.uni__lead--roxo {
  color: #640b7a;
}

.uni--roxo {
  background-color: #640b7a;
}

.uni__kicker--laranja {
  color: #c15c17;
}

.uni__title--laranja {
  color: #c15c17;
}

.uni__lead--laranja {
  color: #c15c17;
}

.uni--laranja {
  background-color: #c15c17;
}

.uni__kicker--verde-escuro {
  color: #1d2a10;
}

.uni__title--verde-escuro {
  color: #1d2a10;
}

.uni__lead--verde-escuro {
  color: #1d2a10;
}

.uni--verde-escuro {
  background-color: #1d2a10;
}

.uni__card--azul-escuro {
  background-color: #0c101f;
  --uni-card-accent: #0c101f;
}

.uni__card--azul {
  background-color: #0a2889;
  --uni-card-accent: #0a2889;
}

.uni__card--laranja {
  background-color: #c15c17;
  --uni-card-accent: #c15c17;
}

.uni__card--amarelo {
  background-color: #e99a19;
  --uni-card-accent: #e99a19;
}

.uni__card--taupe {
  background-color: #817b70;
  --uni-card-accent: #817b70;
}

.uni__card--roxo {
  background-color: #640b7a;
  --uni-card-accent: #640b7a;
}

.uni__card--verde-escuro {
  background-color: #1d2a10;
  --uni-card-accent: #1d2a10;
}

@media (min-width: 700px) {
  .uni__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .uni__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
  }
  .uni__card {
    min-height: 220px;
  }
}
.video {
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.video video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.video img {
  width: 380px;
  height: auto;
}

.video .content {
  margin: auto;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.video h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: 0;
  margin-bottom: 50px;
  font-size: 1.8rem;
  color: #f9f4e8;
  max-width: 560px;
}

.video h1 span {
  font-family: "Planc";
}

.nomads {
  background-color: #c15c17;
  color: #fff;
  border-radius: 0 0 20px 20px;
  text-align: center;
  padding: 60px 0;
  font-size: 1.1rem;
}

.nomads h2 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .nomads {
    text-align: left;
  }
  .nomads h2 {
    max-width: 515px;
  }
}
.home header .logo-nomad {
  display: none;
}

@media (min-width: 1024px) {
  .home header .main-menu {
    margin: auto;
  }
}
.roteiros,
.clube,
.group {
  padding: 60px 0;
  border-radius: 0 0 20px 20px;
  z-index: 99;
  position: relative;
  background-color: #f9f4e8;
  font-size: 1.1rem;
  overflow: hidden;
}

.roteiros h2,
.clube h2,
.group h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.roteiros h2 span,
.clube h2 span,
.group h2 span {
  font-family: "Planc";
}

.roteiros h3,
.clube h3,
.group h3 {
  font-family: "Futura";
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  max-width: 270px;
  font-weight: 600;
  line-height: 135%;
}

@media (min-width: 700px) {
  .roteiros h3,
  .clube h3,
  .group h3 {
    max-width: 400px;
    font-size: 1rem;
  }
}
.roteiros .desktop,
.clube .desktop,
.group .desktop {
  display: none;
}

.roteiros .image,
.clube .image,
.group .image {
  border-radius: 0 0 20px 20px;
}

.roteiros .image .glider-slide,
.clube .image .glider-slide,
.group .image .glider-slide {
  margin: 0 5px;
}

.roteiros .image .glider-prev,
.clube .image .glider-prev,
.group .image .glider-prev,
.roteiros .image .glider-next,
.clube .image .glider-next,
.group .image .glider-next {
  color: #62632d;
}

.roteiros .image a,
.clube .image a,
.group .image a {
  height: 100%;
  display: block;
  border-radius: 20px;
  background-color: #1d2a10;
}

.roteiros .image a:hover,
.clube .image a:hover,
.group .image a:hover {
  text-decoration: none;
}

.roteiros .image p,
.clube .image p,
.group .image p {
  padding: 20px 25px;
  margin: auto;
  font-family: "Clearface";
  font-size: 1.1rem;
  color: #fff;
}

.roteiros .image p strong,
.clube .image p strong,
.group .image p strong {
  font-weight: 400;
  background-color: #c15c17;
  color: #fff;
  font-family: "Planc";
}

.roteiros .image .img,
.clube .image .img,
.group .image .img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.roteiros .image .img img,
.clube .image .img img,
.group .image .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}

@media (min-width: 1100px) {
  .roteiros,
  .clube,
  .group {
    padding: 0;
    border-radius: 0;
  }
  .roteiros .container,
  .clube .container,
  .group .container {
    display: flex;
    gap: 100px;
  }
  .roteiros .container .content,
  .clube .container .content,
  .group .container .content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 5% 0;
    gap: 20px;
    width: 50%;
  }
  .roteiros .container h2,
  .clube .container h2,
  .group .container h2 {
    margin: 0;
  }
  .roteiros .container h3,
  .clube .container h3,
  .group .container h3 {
    margin: 0 0 auto;
  }
  .roteiros .container a.interno,
  .clube .container a.interno,
  .group .container a.interno {
    border-radius: 0 0 0 20px;
  }
  .roteiros .container .image,
  .clube .container .image,
  .group .container .image {
    width: 50%;
    border-radius: 0;
  }
  .roteiros .container .image .glider-slide,
  .clube .container .image .glider-slide,
  .group .container .image .glider-slide {
    margin: 0;
  }
  .roteiros .container .image .img,
  .clube .container .image .img,
  .group .container .image .img {
    height: 600px;
    border-radius: 0;
  }
  .roteiros .container .image .img img,
  .clube .container .image .img img,
  .group .container .image .img img {
    border-radius: 0;
  }
  .roteiros .container .glider-prev,
  .clube .container .glider-prev,
  .group .container .glider-prev,
  .roteiros .container .glider-next,
  .clube .container .glider-next,
  .group .container .glider-next {
    color: #fff;
    font-size: 60px;
    left: 20px;
  }
  .roteiros .container .glider-next,
  .clube .container .glider-next,
  .group .container .glider-next {
    right: calc((100vw - 207%) / 2 * -1);
    left: auto;
  }
  .roteiros .container .mobile,
  .clube .container .mobile,
  .group .container .mobile {
    display: none;
  }
  .roteiros .container .desktop,
  .clube .container .desktop,
  .group .container .desktop {
    display: block;
  }
  .roteiros .container .desktop .roteiroGlider,
  .clube .container .desktop .roteiroGlider,
  .group .container .desktop .roteiroGlider,
  .roteiros .container .desktop .grupoGlider,
  .clube .container .desktop .grupoGlider,
  .group .container .desktop .grupoGlider {
    margin-right: calc((100vw - 100%) / 2 * -1);
  }
}
@media (min-width: 1497px) {
  .roteiros .container .desktop,
  .clube .container .desktop,
  .group .container .desktop {
    display: block;
  }
  .roteiros .container .desktop .roteiroGlider,
  .clube .container .desktop .roteiroGlider,
  .group .container .desktop .roteiroGlider,
  .roteiros .container .desktop .grupoGlider,
  .clube .container .desktop .grupoGlider,
  .group .container .desktop .grupoGlider {
    margin-right: calc((100vw - 1100px) / 2 * -1);
  }
}
.clube {
  background-color: #cdc1a2;
  margin-top: -15px;
  z-index: 9;
}

.clube--azul {
  background-color: #0a2889;
  color: #fff;
}

.clube--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.clube--laranja {
  background-color: #c15c17;
  color: #fff;
}

.clube--roxo {
  background-color: #640b7a;
  color: #fff;
}

.clube--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.clube--azul .btn,
.clube--azul-escuro .btn,
.clube--roxo .btn {
  background-color: #c15c17;
}

.clube--azul .btn:hover,
.clube--azul-escuro .btn:hover,
.clube--roxo .btn:hover {
  background-color: #0a2889;
}

.clube--laranja .btn,
.clube--bege .btn {
  background-color: #0a2889;
}

.clube--laranja .btn:hover,
.clube--bege .btn:hover {
  background-color: #0c101f;
}

.clube .btn {
  background-color: #0a2889;
}

.clube .btn:hover {
  background-color: #0c101f;
}

@media (min-width: 1024px) {
  .clube {
    margin-top: 0;
  }
  .clube .container {
    flex-direction: row-reverse;
  }
  .clube .container .image {
    border-radius: 0 0 20px 0;
    margin-left: calc((100vw - 100%) / 2 * -1);
    width: calc(100% - 100px);
  }
  .clube .container .image .img {
    border-radius: 0 0 20px 0;
  }
  .clube .container .image .img img {
    border-radius: 0 0 20px 0;
  }
  .clube .container .content {
    padding: 5% 0;
    text-align: right;
    align-items: flex-end;
  }
  .clube .container .content h3 {
    max-width: 325px;
  }
}
.group .image a {
  background-color: #62632d;
}

.group .legend {
  padding: 15px 25px;
  font-size: 1.2rem;
}

.group .legend strong {
  font-weight: 400;
  background-color: #c15c17;
}

.group .legend span {
  display: block;
  padding-top: 5px;
  font-family: "Clearface";
}

.meetNomad {
  background-color: #1d2a10;
  padding: 80px 0;
  color: #fff;
  border-radius: 0 0 20px 20px;
  margin-top: -15px;
}

.meetNomad .title h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.meetNomad .title h2 span {
  font-family: "Planc";
}

@media (max-width: 420px) {
  .meetNomad .title h2::before {
    display: none;
  }
}
.meetNomad .title h3 {
  font-family: "Futura";
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  max-width: 270px;
}

@media (min-width: 700px) {
  .meetNomad .title h3 {
    max-width: 400px;
    font-size: 1rem;
  }
}
.meetNomad .glider-contain {
  width: 100%;
  margin: 0 auto;
}

.meetNomad .image {
  height: 350px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.meetNomad .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.meetNomad a.content {
  background-color: #c15c17;
  display: block;
  padding: 15px 20px;
  border-radius: 0 0 20px 20px;
}

.meetNomad a.content h4 {
  margin: 0;
  font-weight: 400;
  display: contents;
}

.meetNomad a.content h4 span {
  background-color: #1d2a10;
}

.meetNomad a.content .date {
  display: contents;
  font-family: "Clearface";
}

.meetNomad a.content:hover {
  text-decoration: none;
}

.meetNomad .glider-prev {
  display: none;
}

@media (min-width: 1024px) {
  .meetNomad .title {
    display: flex;
    gap: 20px;
    max-width: 795px;
    align-items: center;
    margin: auto;
  }
  .meetNomad .title h2 {
    margin-right: 0;
  }
  .meetNomad .title h3 {
    max-width: 600px;
    margin: 0;
  }
  .meetNomad p {
    text-align: center;
    margin: 30px 0;
  }
  .meetNomad .glider-prev {
    display: block;
    left: 0;
  }
}
.vagas {
  background-color: #c15c17;
  color: #f9f4e8;
  padding: 60px 0;
}

.vagas h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: normal;
}

.vagas h4 {
  font-family: "Clearface";
  font-size: 2.4rem;
  margin: 0;
  font-weight: normal;
}

.vagas a {
  position: relative;
}

.vagas a .arrow {
  color: #ae9889;
  margin-left: 5px;
  transition: all 0.2s linear;
}

.vagas a:hover {
  text-decoration: none;
}

.vagas a:hover .arrow {
  margin-left: 10px;
  transition: all 0.2s linear;
}

.contact {
  padding: 60px 0;
}

.contact h3 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: 0 0 30px;
}

.contact .image {
  display: none;
}

@media (min-width: 1024px) {
  .contact .container {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .contact .content {
    width: calc(100% - 240px);
    padding-right: 35%;
  }
  .contact .image {
    display: block;
    width: 200px;
  }
  .contact .image img {
    max-width: 100%;
  }
}
.clubeNomad .main-banner {
  width: 100%;
  object-fit: cover;
  height: 600px;
  display: flex;
  position: relative;
}

.clubeNomad .main-banner video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.clubeNomad .main-banner img {
  width: 380px;
  height: auto;
}

.clubeNomad .main-banner .content {
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.43);
  width: 100%;
  height: 100%;
  justify-content: center;
  position: absolute;
  gap: 40px;
}

.clubeNomad .main-banner .content h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: 0;
  margin-bottom: 50px;
  font-size: 1.8rem;
  color: #f9f4e8;
  max-width: 560px;
}

.clubeNomad .main-banner .content h1 span {
  font-family: "Planc";
}

.clubeNomad .main-banner .content .btn {
  font-size: 0.6rem;
}

.clubeNomad .differences {
  padding: 80px 0;
  color: #fff;
}

.clubeNomad .differences--azul {
  background-color: #0a2889;
}

.clubeNomad .differences--azul-escuro {
  background-color: #0c101f;
}

.clubeNomad .differences--roxo {
  background-color: #640b7a;
}

.clubeNomad .differences--laranja {
  background-color: #c15c17;
}

.clubeNomad .differences--bege {
  background-color: #f9f4e8;
}

.clubeNomad .differences--laranja .btn {
  background-color: #0a2889;
}

.clubeNomad .differences--laranja .btn:hover {
  background-color: #0c101f;
}

.clubeNomad .differences.differences--laranja strong {
  background-color: #0a2889;
}

.clubeNomad .differences .glider-slide {
  margin: 0 30px;
}

.clubeNomad .differences h1 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.clubeNomad .differences h1 span {
  position: relative;
}

.clubeNomad .differences h1 span::before {
  background-image: url("../images/selection.webp");
  content: " ";
  width: 105%;
  height: 53px;
  background-size: 100%;
  position: absolute;
  top: -14px;
  left: -5px;
  background-repeat: no-repeat;
}

@media (max-width: 420px) {
  .clubeNomad .differences h1 span::before {
    display: none;
  }
}
.clubeNomad .differences h3 {
  font-family: "Clearface";
  text-decoration: underline;
  font-weight: 400;
  font-size: 1.2rem;
}

.clubeNomad .differences .glider-contain {
  text-align: center;
  margin-top: 50px;
}

.clubeNomad .differences .btn {
  margin-top: 30px;
}

.clubeNomad .differences strong {
  font-weight: 400;
  background-color: #c15c17;
}

@media (min-width: 1024px) {
  .clubeNomad .differences--azul {
    background-image: url("../images/clube-bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
  }
}
.steps {
  padding: 60px 0;
}

.steps h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  color: #0a2889;
  margin: 0 0 40px;
}

.steps h2 span {
  font-family: "Planc";
}

.steps .img {
  width: 70px;
  height: 70px;
  background-size: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
}

.steps .content {
  background-color: #c15c17;
  color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  margin-top: 30px;
  height: calc(100% - 100px);
}

.steps .content em {
  font-size: 0.8rem;
  font-style: normal;
  line-height: normal;
}

.steps .content h3 {
  font-family: "Clearface";
  font-weight: 400;
}

.steps .content h3 span {
  background-color: #0a2889;
}

.steps strong {
  font-weight: 500;
}

.steps .glider-prev,
.steps .glider-next {
  color: #c15c17;
  bottom: 20%;
}

@media (min-width: 1400px) {
  .steps .glider-prev,
  .steps .glider-next {
    display: none;
  }
}
.places {
  color: #fff;
  overflow: hidden;
}

.places--azul {
  background-color: #0a2889;
}

.places--azul-escuro {
  background-color: #0c101f;
}

.places--roxo {
  background-color: #640b7a;
}

.places--laranja {
  background-color: #c15c17;
}

.places--bege {
  background-color: #f9f4e8;
}

.places--laranja .btn {
  background-color: #0a2889;
}

.places--laranja .btn:hover {
  background-color: #0c101f;
}

.places--laranja strong {
  background-color: #0a2889;
}

.places h2 {
  margin-bottom: 50px;
}

.places h2 span {
  position: relative;
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.places h2 span span {
  font-family: "Planc";
}

.places h2 span::before {
  background-image: url("../images/selection.webp");
  content: " ";
  width: 105%;
  height: 83px;
  background-size: 100%;
  position: absolute;
  top: -13px;
  left: -5px;
  background-repeat: no-repeat;
}

@media (max-width: 420px) {
  .places h2 span::before {
    display: none;
  }
}
@media (min-width: 1400px) and (max-width: 1100px) {
  .places h2 span::before {
    display: none;
  }
}
.places h3 {
  font-weight: 500;
}

.places strong {
  background-color: #640b7a;
  font-weight: 400;
}

.places ul {
  padding: 0 0 0 15px;
  display: grid;
  grid-gap: 25px;
}

.places .container {
  width: 100%;
}

.places .content {
  padding: 60px 10%;
}

.places .btn {
  margin-top: 20px;
}

.places .btn:hover {
  background-color: #0a2889;
}

.places .image {
  border-radius: 0 0 0 20px;
  background-color: #0a2889;
}

.places .image .glider-slide {
  margin: 0;
  border-radius: 0 0 0 20px;
  background-color: #0a2889;
}

.places--azul .image,
.places--azul .image .glider-slide,
.places--roxo .image,
.places--roxo .image .glider-slide {
  background-color: #c15c17;
}

.places--azul-escuro .image,
.places--azul-escuro .image .glider-slide {
  background-color: #0a2889;
}

.places--laranja .image,
.places--laranja .image .glider-slide {
  background-color: #0a2889;
}

.places .image .glider-prev,
.places .image .glider-next {
  color: #fff;
  left: 20px;
}

.places .image .glider-next {
  left: auto;
}

.places .image img {
  width: 100%;
  height: auto;
}

.places .image .legend {
  padding: 20px;
  font-size: 0.9rem;
}

.places .image .legend strong {
  font-size: 1.2rem;
}

.places .image .legend p {
  margin: 0;
}

@media (min-width: 1100px) {
  .places .container {
    display: flex;
    align-items: center;
    width: 80%;
    gap: 100px;
  }
  .places .container .image {
    width: 50%;
  }
  .places .container .image .img {
    height: 600px;
    object-fit: cover;
  }
  .places .container .image .img img {
    height: 100%;
    object-fit: cover;
  }
  .places .where {
    margin-right: calc((100vw - 100%) / 2 * -1);
  }
  .places .glider-next {
    right: calc((100vw - 207%) / 2 * -1);
  }
  .places .content {
    padding: 0;
    width: 50%;
  }
}
@media (min-width: 1497px) {
  .places .where {
    margin-right: calc((100vw - 1100px) / 2 * -1);
  }
}
.modalidades {
  padding: 70px 0;
  color: #f9f4e8;
}

.modalidades--azul {
  background-color: #0a2889;
}

.modalidades--azul-escuro {
  background-color: #0c101f;
}

.modalidades--roxo {
  background-color: #640b7a;
}

.modalidades--laranja {
  background-color: #c15c17;
}

.modalidades--bege {
  background-color: #f9f4e8;
}

.modalidades__heading {
  font-size: 2rem;
  font-family: "Clearface", serif;
  font-weight: 500;
  color: #f9f4e8;
  margin: 0 0 40px;
  text-align: center;
}

.modalidades__grid {
  display: grid;
  gap: 32px;
}

.modalidades__card {
  display: grid;
  grid-template-columns: 100px 1fr;
  background-color: #c15c17;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(10, 40, 137, 0.12);
  color: #fff;
  padding: 30px;
  gap: 40px;
}

.modalidades__card--azul {
  background-color: #0a2889;
}

.modalidades__card--azul-escuro {
  background-color: #0c101f;
}

.modalidades__card--laranja {
  background-color: #c15c17;
}

.modalidades__card--bege {
  background-color: #f9f4e8;
}

.modalidades__card--roxo {
  background-color: #640b7a;
}

.modalidades__image {
  width: 100%;
  height: 100px;
  border-radius: 100%;
  background-color: #0a2889;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalidades__image--azul {
  background-color: #0a2889;
}

.modalidades__image--azul-escuro {
  background-color: #0c101f;
}

.modalidades__image--laranja {
  background-color: #c15c17;
}

.modalidades__image--bege {
  background-color: #f9f4e8;
}

.modalidades__image--roxo {
  background-color: #640b7a;
}

.modalidades__image img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.modalidades__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.modalidades__content h3 {
  font-family: "Clearface", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f9f4e8;
  margin: 0;
}

.modalidades__text {
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.modalidades__text p {
  margin: 0 0 0.75em;
}

.modalidades__text p:last-child {
  margin-bottom: 0;
}

.modalidades__content .btn {
  align-self: flex-start;
  margin-top: 8px;
  background-color: #0a2889;
}

.modalidades__card--azul .btn,
.modalidades__card--azul-escuro .btn,
.modalidades__card--roxo .btn {
  background-color: #c15c17;
}

.modalidades__card--azul .btn:hover,
.modalidades__card--azul-escuro .btn:hover,
.modalidades__card--roxo .btn:hover {
  background-color: #0a2889;
}

.modalidades__card--laranja .btn {
  background-color: #0a2889;
}

.modalidades__card--laranja .btn:hover {
  background-color: #0c101f;
}

@media (min-width: 900px) {
  .modalidades__heading {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
  .modalidades__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .modalidades__content h3 {
    font-size: 1.8rem;
  }
}
.mediador {
  padding: 60px 0;
  color: #0a2889;
}

.mediador h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.mediador h2 span {
  font-family: "Planc";
}

.mediador h3 {
  font-weight: 500;
}

.mediador .content {
  margin-top: 50px;
  border-radius: 5px;
  padding: 2rem;
  border: 1rem solid #0a2889;
  border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #0a2889 6px, #0a2889 15px, transparent 16px, transparent 20px) 20/0.8rem;
  max-width: 1100px;
  margin: auto;
}

.mediador .content .text {
  padding-top: 10px;
  margin-top: 25px;
}

.mediador .content .text p {
  text-decoration: underline;
  text-decoration-color: #c5cceb;
  text-underline-offset: 6px;
}

.mediador .content .selo {
  width: 100%;
  max-width: 250px;
  height: 129px;
  background-image: url("../images/selo.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}

.mediador .content .image {
  text-align: center;
  position: relative;
}

.mediador .content .image img {
  width: 100%;
  max-width: 200px;
}

@media (min-width: 1100px) {
  .mediador .content {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }
  .mediador .content .selo {
    margin-left: auto;
    max-width: 210px;
    height: 96px;
  }
  .mediador .content .text {
    border-left: 1px solid;
    padding-left: 30px;
  }
}
.next-books {
  padding: 60px 0;
  color: #fff;
}

.next-books--azul {
  background-color: #0a2889;
}

.next-books--azul-escuro {
  background-color: #0c101f;
}

.next-books--roxo {
  background-color: #640b7a;
}

.next-books--laranja {
  background-color: #c15c17;
}

.next-books--bege {
  background-color: #f9f4e8;
}

.next-books--laranja .newsletter .mc4wp-form-fields input[type=submit] {
  background-color: #0a2889;
}

.next-books--laranja .newsletter .mc4wp-form-fields input[type=submit]:hover {
  background-color: #0c101f;
}

.next-books .container {
  width: 100%;
  padding-left: 10%;
}

.next-books h2 {
  margin: 0 0 35px;
}

.next-books h2 span {
  position: relative;
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.next-books h2 span span {
  font-family: "Planc";
}

.next-books h2 span::before {
  background-image: url("../images/selection2.webp");
  content: " ";
  width: 107%;
  height: 92px;
  background-size: 100%;
  position: absolute;
  top: -15px;
  left: -12px;
  background-repeat: no-repeat;
}

@media (max-width: 420px) {
  .next-books h2 span::before {
    display: none;
  }
}
.next-books .books {
  font-size: 0.9rem;
}

.next-books .books .glider-slide:nth-child(1) {
  margin: 0 10px 0 0;
}

.next-books .books p.center {
  text-align: center;
  font-family: "Futura";
  letter-spacing: 1px;
}

.next-books .books .glider-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.next-books .newsletter {
  background-color: transparent;
  padding: 50px 10% 0 0;
  text-align: center;
}

.next-books .newsletter h3 {
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.next-books .newsletter .mc4wp-form-fields {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.next-books .newsletter .mc4wp-form-fields ::placeholder {
  color: #0a2889;
  opacity: 1;
  /* Firefox */
}

.next-books .newsletter .mc4wp-form-fields ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #0a2889;
}

.next-books .newsletter .mc4wp-form-fields input {
  border: 0;
  width: 100%;
  border-radius: 10px;
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: "Futura";
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.7rem;
}

.next-books .newsletter .mc4wp-form-fields input[type=submit] {
  background-color: #c15c17;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  width: auto;
}

@media (min-width: 800px) {
  .next-books .container {
    width: 80%;
    padding: 0;
    max-width: 1100px;
  }
  .next-books .newsletter {
    padding: 50px 0 0;
  }
}
@media (min-width: 1100px) {
  .next-books .flex {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  .next-books .flex .glider-contain {
    width: calc(100% - 360px);
    margin-left: 0;
  }
  .next-books .flex .newsletter {
    padding: 0;
    width: 310px;
  }
}
.clubeN {
  padding: 60px 0;
  color: #fff;
  font-size: 1.1rem;
}

.clubeN--azul {
  background-color: #0a2889;
}

.clubeN--azul-escuro {
  background-color: #0c101f;
}

.clubeN--roxo {
  background-color: #640b7a;
}

.clubeN--laranja {
  background-color: #c15c17;
}

.clubeN--bege {
  background-color: #f9f4e8;
}

.clubeN--laranja .price,
.clubeN--laranja .formulario {
  background-color: #0a2889;
}

.clubeN--laranja .btn {
  background-color: #0a2889;
}

.clubeN--laranja .btn:hover {
  background-color: #0c101f;
}

.clubeN .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.clubeN h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  color: #f9f4e8;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.clubeN h2 span {
  font-family: "Planc";
}

.clubeN h2 span.clubNomadLogo {
  background-image: url("../images/clubnomad.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 246px;
  height: 34px;
}

.clubeN .price {
  background-color: #640b7a;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-radius: 15px;
  width: 100%;
}

.clubeN .formulario {
  background-color: #640b7a;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
}

.clubeN .price .value {
  font-size: 1.2rem;
}

.clubeN .price .value span {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  font-size: 4rem;
}

@media (min-width: 800px) {
  .clubeN .container {
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
  }
  .clubeN .content {
    width: calc(100% - 310px);
  }
  .clubeN .price {
    width: 400px;
    justify-content: center;
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .clubeN h2 {
    flex-direction: row;
    align-items: center;
  }
}
.turmas-cidade {
  padding: 60px 0;
  overflow: hidden;
}

.turmas-cidade .container {
  max-width: 1200px;
}

.turmas-cidade__title {
  font-family: "Clearface";
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 12px;
}

.turmas-cidade__subtitle {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 40px;
}

.turmas-cidade__slider {
  position: relative;
  margin: 0 auto;
}

.turmas-cidade__slider .glider-prev,
.turmas-cidade__slider .glider-next {
  color: #0a2889;
  font-size: 2rem;
  top: 42%;
}

.turmas-cidade__slider .glider-prev {
  left: 0;
}

.turmas-cidade__slider .glider-next {
  right: 0;
}

.turmas-cidade__card {
  background-color: #0c101f;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
  height: 100%;
  color: #fff;
}

.turmas-cidade__card--azul {
  background-color: #0a2889;
}

.turmas-cidade__card--azul-escuro {
  background-color: #0c101f;
}

.turmas-cidade__card--roxo {
  background-color: #640b7a;
}

.turmas-cidade__card--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.turmas-cidade__card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.turmas-cidade__card-image a {
  display: block;
  height: 100%;
}

.turmas-cidade__card-body {
  padding: 16px 18px 20px;
  text-align: left;
}

.turmas-cidade__frequencia {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #f9f4e8;
  background: #c15c17;
  width: max-content;
  padding: 5px;
  text-transform: uppercase;
  border-radius: 5px;
  margin-bottom: 15px;
}

.turmas-cidade__frequencia-icon {
  flex-shrink: 0;
}

.turmas-cidade__card-body h3 {
  font-family: "Clearface";
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 8px;
}

.turmas-cidade__horario,
.turmas-cidade__bairro {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.turmas-cidade__horario {
  margin-bottom: 4px;
}

.turmas-cidade__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 800px) {
  .turmas-cidade {
    padding: 70px 0;
  }
  .turmas-cidade__title {
    font-size: 2.8rem;
  }
  .turmas-cidade__subtitle {
    font-size: 1.05rem;
    margin-bottom: 48px;
  }
  .turmas-cidade__slider {
    padding: 0 36px;
  }
}
.clube-cta {
  color: #fff;
  padding: 40px 20px;
}

.clube-cta--azul {
  background-color: #0a2889;
}

.clube-cta--azul-escuro {
  background-color: #0c101f;
}

.clube-cta--roxo {
  background-color: #640b7a;
}

.clube-cta--laranja {
  background-color: #c15c17;
}

.clube-cta--bege {
  background-color: #f9f4e8;
}

.clube-cta--laranja .clube-cta__btn {
  color: #0a2889;
}

.clube-cta--laranja .clube-cta__btn:hover {
  background-color: #0a2889;
  color: #fff;
}

.clube-cta .container {
  max-width: 1200px;
}

.clube-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}

.clube-cta__main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.clube-cta__icon {
  flex-shrink: 0;
  line-height: 0;
}

.clube-cta__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.clube-cta__content {
  text-align: left;
}

.clube-cta__content h2 {
  font-family: "Clearface";
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 8px;
}

.clube-cta__content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.clube-cta__action {
  display: flex;
  justify-content: center;
}

.clube-cta__btn {
  background-color: #fff;
  color: #640b7a;
  text-transform: uppercase;
  font-family: "Futura";
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.2s linear, color 0.2s linear;
  white-space: nowrap;
}

.clube-cta__btn:hover {
  background-color: #f9f4e8;
  color: #4f0860;
  text-decoration: none;
}

@media (min-width: 800px) {
  .clube-cta {
    padding: 60px 20px;
  }
  .clube-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .clube-cta__main {
    align-items: center;
    gap: 28px;
    flex: 1;
    min-width: 0;
  }
  .clube-cta__icon img {
    width: 72px;
    height: 72px;
  }
  .clube-cta__content h2 {
    font-size: 2.2rem;
  }
  .clube-cta__content p {
    font-size: 1.05rem;
  }
  .clube-cta__action {
    flex-shrink: 0;
    justify-content: flex-end;
  }
}
.turmas {
  color: #fff;
  position: relative;
  overflow: hidden;
}

.turmas--azul {
  background-color: #0a2889;
}

.turmas--azul-escuro {
  background-color: #0c101f;
}

.turmas--roxo {
  background-color: #640b7a;
}

.turmas--laranja {
  background-color: #c15c17;
}

.turmas--bege {
  background-color: #f9f4e8;
}

.turmas--laranja .btn {
  background-color: #0a2889;
}

.turmas--laranja .btn:hover {
  background-color: #0c101f;
}

.turmas--laranja .btn.outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.turmas--laranja .btn.outline:hover {
  background-color: #0a2889;
  border-color: #0a2889;
}

.turmas--laranja strong {
  background-color: #0a2889;
}

.turmas .container {
  display: grid;
  width: 100%;
}

.turmas .container .content {
  padding: 50px 10%;
  position: relative;
}

.turmas .container .content h3 {
  margin: 0 0 40px;
}

.turmas .container .content h3 span {
  position: relative;
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.turmas .container .content h3 span span {
  font-family: "Planc";
}

.turmas .container .content h3 span::before {
  background-image: url("../images/selection2.webp");
  content: " ";
  width: 107%;
  height: 82px;
  background-size: 100%;
  position: absolute;
  top: -4px;
  left: -12px;
  background-repeat: no-repeat;
}

@media (max-width: 420px) {
  .turmas .container .content h3 span::before {
    display: none;
  }
}
.turmas .container .content strong {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.turmas .container .content .btns {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.turmas .container .image {
  width: 100%;
}

.turmas .container .image img {
  width: 100%;
}

.turmas .container .content {
  position: relative;
}

.turmas .turmaPopup {
  display: none;
  position: absolute;
  width: 90%;
  background-color: #c15c17;
  color: #f9f4e8;
  padding: 40px 50px 20px;
  max-width: 1000px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  border-radius: 10px;
  transition: all 0.2s linear;
  bottom: 0;
  height: 80%;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 2;
}

.turmas .turmaPopup ul {
  padding: 0;
}

.turmas .turmaPopup ul li {
  list-style: inside;
  padding: 5px 0;
}

.turmas .turmaPopup b {
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Futura";
}

.turmas .turmaPopup button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  background-color: #f9f4e8;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Futura";
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.6rem;
}

.turmas .turmaPopup.open {
  display: block;
  transition: all 0.2s linear;
}

@media (min-width: 1100px) {
  .turmas .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 100px;
  }
  .turmas .container .content {
    width: 50%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .turmas .container .image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    margin-right: calc((100vw - 100%) / 2 * -1);
    width: calc(100% - 100px);
  }
  .turmas .container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.faq {
  padding: 60px 0;
  color: #0a2889;
}

.faq .image {
  display: none;
}

.faq .image img {
  width: 100%;
}

.faq h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.faq h3 span {
  font-family: "Planc";
}

.faq #sp-ea-2112.sp-easy-accordion .sp-ea-single {
  border: 0;
  background-color: transparent;
}

.faq #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a {
  text-transform: uppercase;
  font-family: "Futura";
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  border: 1px solid #c15c17;
  font-size: 0.65rem;
  color: #0a2889;
}

.faq #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.faq #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus {
  font-size: 0.6rem;
  color: #0a2889;
}

.faq #sp-ea-2112.sp-easy-accordion .sp-ea-single .ea-body {
  background-color: transparent !important;
  color: #0a2889 !important;
  font-size: 0.9rem;
}

.faq .down {
  background-color: transparent;
  background-image: url("../images/seta.webp");
  border: 0;
  height: 22px;
  width: 42px;
  cursor: pointer;
  background-size: 100%;
  text-indent: -999px;
  display: block;
  margin-top: 35px;
  color: transparent;
  transition: all 0.2s linear;
}

.faq .down.rotate {
  transform: rotate(180deg);
  transition: all 0.2s linear;
}

.faq .faqBox {
  margin-top: 30px;
  visibility: hidden;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s linear;
  opacity: 0;
}

.faq .faqBox.open {
  visibility: visible;
  height: auto;
  max-height: none;
  overflow: visible;
  transition: all 0.1s linear;
  opacity: 1;
}

@media (min-width: 1024px) {
  .faq .flex {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  .faq .flex .content {
    width: calc(100% - 240px);
  }
  .faq .flex .image {
    width: 180px;
    display: block;
  }
  .faq .flex .image img {
    width: 100%;
  }
}
.duvidas {
  color: #0a2889;
  overflow: hidden;
}

.duvidas .container {
  display: grid;
}

.duvidas .image img {
  width: 100%;
}

.duvidas h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.duvidas h3 span {
  font-family: "Planc";
}

@media (min-width: 1024px) {
  .duvidas .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 100px;
  }
  .duvidas .container .content {
    width: 55%;
    padding: 0;
  }
  .duvidas .image {
    height: 300px;
    object-fit: cover;
    margin-right: calc((100vw - 100%) / 2 * -1);
    width: calc(100% - 100px);
  }
  .duvidas .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page-template-clube header .logo-nomad {
  display: none;
}

@media (min-width: 1024px) {
  .page-template-clube header .main-menu {
    margin: auto;
  }
}
.page-template-clube .testimonials {
  background-color: transparent;
}

.page-template-clube .testimonials .glider-slide {
  color: #0a2889;
}

.page-template-clube .testimonials .glider-slide .aspas {
  background-image: url("../images/aspa3.webp");
  width: 39px;
  height: 36px;
  background-size: 100%;
  margin: 0 auto 30px;
}

@media (min-width: 1024px) {
  .page-template-clube .testimonials .glider-slide.center {
    background-image: url("../images/testimonial-bg3.webp");
    color: #fff;
  }
  .page-template-clube .testimonials .glider-slide.center .aspas {
    background-image: url("../images/aspas2.webp");
  }
}
.page-template-clube .meetNomad {
  border-radius: 0;
  margin: 0;
}

.page-template-clube .meetNomad--azul {
  background-color: #0a2889;
  color: #fff;
}

.page-template-clube .meetNomad--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.page-template-clube .meetNomad--laranja {
  background-color: #c15c17;
  color: #fff;
}

.page-template-clube .meetNomad--roxo {
  background-color: #640b7a;
  color: #fff;
}

.page-template-clube .meetNomad--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.page-template-clube .meetNomad h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.page-template-clube .meetNomad h2 span {
  font-family: "Planc";
}

.page-template-clube .meetNomad h2 span {
  position: relative;
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.page-template-clube .meetNomad h2 span span {
  font-family: "Planc";
}

.page-template-clube .meetNomad h2 span::before {
  background-image: url("../images/selection.webp");
  content: " ";
  width: 105%;
  height: 82px;
  background-size: 100%;
  position: absolute;
  top: -7px;
  left: -4px;
  background-repeat: no-repeat;
}

@media (max-width: 420px) {
  .page-template-clube .meetNomad h2 span::before {
    display: none;
  }
}
.page-template-clube .meetNomad .content h4 span {
  background-color: #0a2889;
}

.page-template-clube .meetNomad .glider-slide:nth-child(1) {
  margin: 0 10px 0 0;
}

@media (min-width: 1024px) {
  .page-template-clube .meetNomad .title {
    display: block;
    margin: 0;
  }
  .page-template-clube .meetNomad p {
    text-align: left;
  }
}
.page-template-clube footer .partners {
  display: none;
}

.clubeNomad .testimonials--azul {
  background-color: #0a2889;
}

.clubeNomad .testimonials--azul-escuro {
  background-color: #0c101f;
}

.clubeNomad .testimonials--roxo {
  background-color: #640b7a;
}

.clubeNomad .testimonials--laranja {
  background-color: #c15c17;
}

.clubeNomad .testimonials--bege {
  background-color: #f9f4e8;
}

.clubeNomad .differences--bege,
.places--bege,
.modalidades--bege,
.next-books--bege,
.clubeN--bege,
.clube-cta--bege,
.turmas--bege,
.clubeNomad .testimonials--bege,
.meetNomad--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.clubeNomad .differences--bege h1,
.clubeNomad .differences--bege h2,
.clubeNomad .differences--bege h3,
.places--bege h2,
.places--bege h3,
.modalidades--bege .modalidades__heading,
.modalidades--bege h3,
.next-books--bege h2,
.next-books--bege h3,
.clubeN--bege h2,
.clubeN--bege h3,
.clube-cta--bege h2,
.clube-cta--bege h3,
.turmas--bege h3,
.clubeNomad .testimonials--bege h2,
.meetNomad--bege h2,
.meetNomad--bege h3,
.meetNomad--bege p {
  color: #0a2889;
}

.modalidades__card--bege {
  color: #0a2889;
}

.modalidades__card--bege h3 {
  color: #0a2889;
}

.modalidades__card--bege .btn {
  background-color: #0a2889;
}

.modalidades__card--bege .btn:hover {
  background-color: #0c101f;
}

.turmas-cidade__card--bege h3,
.turmas-cidade__card--bege .turmas-cidade__horario,
.turmas-cidade__card--bege .turmas-cidade__bairro {
  color: #0a2889;
}

.places--bege .image,
.places--bege .image .glider-slide {
  background-color: #0a2889;
}

.clubeNomad .differences--bege .btn,
.places--bege .btn,
.turmas--bege .btn {
  background-color: #0a2889;
}

.clubeNomad .differences--bege .btn:hover,
.places--bege .btn:hover,
.turmas--bege .btn:hover {
  background-color: #0c101f;
}

.clube-cta--bege .clube-cta__btn {
  background-color: #0a2889;
  color: #fff;
}

.clubeN--bege .btn {
  background-color: #0a2889;
}

.next-books--bege .newsletter .mc4wp-form-fields input[type=submit] {
  background-color: #0a2889;
}

.steps--azul {
  background-color: #0a2889;
  color: #fff;
}

.steps--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.steps--laranja {
  background-color: #c15c17;
  color: #fff;
}

.steps--roxo {
  background-color: #640b7a;
  color: #fff;
}

.steps--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.steps--azul h2,
.steps--azul-escuro h2,
.steps--laranja h2,
.steps--roxo h2 {
  color: #fff;
}

.steps--bege h2 {
  color: #0a2889;
}

.mediador--azul {
  background-color: #0a2889;
  color: #fff;
}

.mediador--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.mediador--laranja {
  background-color: #c15c17;
  color: #fff;
}

.mediador--roxo {
  background-color: #640b7a;
  color: #fff;
}

.mediador--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.mediador--azul .content,
.mediador--azul-escuro .content,
.mediador--laranja .content,
.mediador--roxo .content {
  border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #fff 6px, #fff 15px, transparent 16px, transparent 20px) 20/0.8rem;
}

.faq--azul {
  background-color: #0a2889;
  color: #fff;
}

.faq--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.faq--laranja {
  background-color: #c15c17;
  color: #fff;
}

.faq--roxo {
  background-color: #640b7a;
  color: #fff;
}

.faq--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.faq--azul #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a,
.faq--azul-escuro #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a,
.faq--laranja #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a,
.faq--roxo #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a,
.faq--azul #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.faq--azul #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.faq--azul-escuro #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.faq--azul-escuro #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.faq--laranja #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.faq--laranja #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.faq--roxo #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.faq--roxo #sp-ea-2112.sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus {
  color: #fff;
  border-color: #fff;
}

.faq--azul #sp-ea-2112.sp-easy-accordion .sp-ea-single .ea-body,
.faq--azul-escuro #sp-ea-2112.sp-easy-accordion .sp-ea-single .ea-body,
.faq--laranja #sp-ea-2112.sp-easy-accordion .sp-ea-single .ea-body,
.faq--roxo #sp-ea-2112.sp-easy-accordion .sp-ea-single .ea-body {
  color: #fff !important;
}

.duvidas--azul {
  background-color: #0a2889;
  color: #fff;
}

.duvidas--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.duvidas--laranja {
  background-color: #c15c17;
  color: #fff;
}

.duvidas--roxo {
  background-color: #640b7a;
  color: #fff;
}

.duvidas--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.turmas-cidade--azul {
  background-color: #0a2889;
  color: #fff;
}

.turmas-cidade--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.turmas-cidade--laranja {
  background-color: #c15c17;
  color: #fff;
}

.turmas-cidade--roxo {
  background-color: #640b7a;
  color: #fff;
}

.turmas-cidade--bege {
  background-color: #f9f4e8;
  color: #0a2889;
}

.turmas-cidade--azul .turmas-cidade__title,
.turmas-cidade--azul .turmas-cidade__subtitle,
.turmas-cidade--azul-escuro .turmas-cidade__title,
.turmas-cidade--azul-escuro .turmas-cidade__subtitle,
.turmas-cidade--laranja .turmas-cidade__title,
.turmas-cidade--laranja .turmas-cidade__subtitle,
.turmas-cidade--roxo .turmas-cidade__title,
.turmas-cidade--roxo .turmas-cidade__subtitle {
  color: #fff;
}

.turmas-cidade--azul .turmas-cidade__slider .glider-prev,
.turmas-cidade--azul .turmas-cidade__slider .glider-next,
.turmas-cidade--azul-escuro .turmas-cidade__slider .glider-prev,
.turmas-cidade--azul-escuro .turmas-cidade__slider .glider-next,
.turmas-cidade--laranja .turmas-cidade__slider .glider-prev,
.turmas-cidade--laranja .turmas-cidade__slider .glider-next,
.turmas-cidade--roxo .turmas-cidade__slider .glider-prev,
.turmas-cidade--roxo .turmas-cidade__slider .glider-next {
  color: #fff;
}

.meetNomad--azul {
  background-color: #0a2889;
  color: #fff;
}

.meetNomad--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.meetNomad--laranja {
  background-color: #c15c17;
  color: #fff;
}

.meetNomad--roxo {
  background-color: #640b7a;
  color: #fff;
}

.encontroNomad .main-banner {
  width: 100%;
  object-fit: cover;
  height: 600px;
  display: flex;
  text-align: center;
}

.encontroNomad .main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.encontroNomad .main-banner .content {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5294117647);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.encontroNomad .main-banner .content h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 3rem;
  margin: 0;
}

.encontroNomad .main-banner .content h1 span {
  font-family: "Planc";
}

.encontroNomad .main-banner .content h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 1.8rem;
  margin: 0;
}

.encontroNomad .main-banner .content h2 span {
  font-family: "Planc";
}

.encontroNomad .main-banner .content .btn {
  font-size: 0.6rem;
}

.encontroNomad .nomads {
  background-color: #cdc1a2;
  color: #162416;
}

.encontroNomad .nomads h3 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
}

.encontroNomad .destinos {
  padding: 60px 0;
}

.encontroNomad .destinos h2 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  font-size: 2.5rem;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.encontroNomad .destinos .encontrosItens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.encontroNomad .destinos .image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}

.encontroNomad .destinos .image .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #cdc1a2;
  padding: 5px 15px 3px;
  border-radius: 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.encontroNomad .destinos .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.encontroNomad .destinos .image a {
  color: #162416;
}

.encontroNomad .destinos .image a:hover {
  color: #162416;
}

.encontroNomad .destinos .image .title {
  position: absolute;
  bottom: 0;
  padding: 20px 40px 0;
  background: #ffffff;
  background: linear-gradient(180deg, transparent 0%, #d5c9ab 47%);
  border-radius: 0 0 15px 15px;
  transition: all 0.2s linear;
  width: 100%;
}

.encontroNomad .destinos .image .title h4 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 1.6rem;
}

.encontroNomad .destinos .image .title h4 span {
  font-family: "Planc";
}

.encontroNomad .destinos .image .title .subtitle {
  opacity: 0;
  transition: all 0.2s linear;
  visibility: none;
  height: 0;
}

.encontroNomad .destinos .image:hover .title {
  transition: all 0.2s linear;
  padding: 20px 40px 10px;
}

.encontroNomad .destinos .image:hover .title .subtitle {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s linear;
}

.encontroNomad .testimonials {
  background-color: #cdc1a2;
}

.encontroNomad .testimonials h3 {
  color: #162416;
  font-size: 2.4rem;
}

@media (min-width: 1024px) {
  .encontroNomad .destinos .encontrosItens {
    grid-template-columns: 1fr 1fr;
  }
  .encontroNomad .destinos .image {
    height: 500px;
  }
  .encontroNomad .destinos .image .title h4 {
    font-size: 2rem;
  }
}
.roteirosNomad .main-banner {
  width: 100%;
  object-fit: cover;
  height: 600px;
  display: flex;
  text-align: center;
}

.roteirosNomad .main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roteirosNomad .main-banner .content {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5294117647);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.roteirosNomad .main-banner .content h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 3rem;
  margin: 0;
}

.roteirosNomad .main-banner .content h1 span {
  font-family: "Planc";
}

.roteirosNomad .main-banner .content h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 1.8rem;
  margin: 0;
}

.roteirosNomad .main-banner .content h2 span {
  font-family: "Planc";
}

.roteirosNomad .main-banner .content .btn {
  font-size: 0.6rem;
}

.roteirosNomad .nomads {
  color: #1d2a10;
  background-color: #ff9a00;
}

.roteirosNomad .nomads h3 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
}

.roteirosNomad .destinos {
  padding: 60px 0;
}

.roteirosNomad .destinos h2 {
  font-size: 2rem;
  font-family: "Clearface";
  font-weight: 500;
  max-width: 350px;
  margin: auto;
  text-align: center;
}

.roteirosNomad .destinos .roteiros-hold {
  margin-top: 50px;
}

.roteirosNomad .destinos .roteiros-hold h3 {
  font-family: "Futura";
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
}

.roteirosNomad .destinos .roteiros-hold h3 span {
  background-color: #ff9a00;
  font-weight: 600;
}

.roteirosNomad .destinos a,
.roteirosNomad .destinos .glider-next {
  color: #272e19;
}

.roteirosNomad .destinos .glider-prev {
  display: block;
  color: #272e19;
}

.roteirosNomad .destinos .image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}

.roteirosNomad .destinos .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.roteirosNomad .destinos .image .title {
  position: absolute;
  bottom: 0;
  padding: 20px 40px 0;
  background: #ffffff;
  background: linear-gradient(180deg, transparent 0%, #d5c9ab 47%);
  border-radius: 0 0 15px 15px;
  transition: all 0.2s linear;
  width: 100%;
}

.roteirosNomad .destinos .image .title h4 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 2rem;
}

.roteirosNomad .destinos .image .title h4 span {
  font-family: "Planc";
}

.roteirosNomad .destinos .image .title .subtitle {
  opacity: 0;
  transition: all 0.2s linear;
  visibility: none;
  height: 0;
}

.roteirosNomad .destinos .image:hover .title {
  transition: all 0.2s linear;
  padding: 20px 40px 10px;
}

.roteirosNomad .destinos .image:hover .title .subtitle {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s linear;
}

.roteirosNomad .steps {
  background-color: #ff9a00;
  padding: 60px 0;
}

.roteirosNomad .steps h2 {
  color: #1d2a10;
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.roteirosNomad .steps h2 span {
  font-family: "Planc";
}

.roteirosNomad .steps .subtitle {
  max-width: 565px;
  font-size: 1.1rem;
}

.roteirosNomad .steps .btn.desktop {
  display: none;
}

.roteirosNomad .steps .stps strong {
  font-size: 0.8em;
}

.roteirosNomad .steps .stps .hold .image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.roteirosNomad .steps .stps .hold .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.roteirosNomad .steps .stps button {
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  border: 0;
  padding: 10px 0;
  background-color: transparent;
  position: relative;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roteirosNomad .steps .stps button::after {
  content: " ";
  font-size: 2rem;
  display: block;
  color: #1d2a10;
  background-image: url("../images/setabaixo.svg");
  background-size: 100%;
  transition: all 0.2s linear;
  width: 20px;
  height: 20px;
}

.roteirosNomad .steps .stps button span {
  background-color: #1d2a10;
  color: #fff;
  font-family: "Planc";
}

.roteirosNomad .steps .stps button.down::after {
  transform: rotate(-180deg);
  transition: all 0.2s linear;
}

.roteirosNomad .steps .stps .contnt {
  flex-direction: column;
  gap: 20px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s linear;
}

.roteirosNomad .steps .stps .contnt.show {
  display: flex;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.1s linear;
  margin: 20px 0;
}

.roteirosNomad .steps .stps .contnt p {
  margin: auto;
}

@media (min-width: 1090px) {
  .roteirosNomad .steps {
    min-height: 675px;
  }
  .roteirosNomad .steps .btn.mobile {
    display: none;
  }
  .roteirosNomad .steps .btn.desktop {
    display: block;
  }
  .roteirosNomad .steps .container {
    display: flex;
    gap: 10%;
    position: relative;
    min-height: 515px;
  }
  .roteirosNomad .steps h2 {
    font-size: 2.2rem;
  }
  .roteirosNomad .steps .titles {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    max-height: 515px;
  }
  .roteirosNomad .steps .btn.mobile {
    margin-top: 20px;
  }
  .roteirosNomad .steps .stps {
    width: 50%;
  }
  .roteirosNomad .steps .stps .hold .contnt .image {
    height: 270px;
    position: absolute;
    left: 0;
    width: 40%;
    top: 180px;
  }
  .roteirosNomad .steps .stps .hold .contnt.first {
    opacity: 1;
    visibility: visible;
  }
  .roteirosNomad .steps .stps .hold .contnt.first .texto {
    opacity: 0;
  }
  .roteirosNomad .steps .stps .hold .contnt.show .texto {
    opacity: 1;
  }
}
.roteirosNomad .contact h3 {
  margin-bottom: 30px;
}

.aboutNomad .main-banner {
  width: 100%;
  height: 700px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutNomad .main-banner .content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.aboutNomad .main-banner .content img {
  max-width: 380px;
  height: auto;
}

.aboutNomad .main-banner .content h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 2.5rem;
  color: #f9f4e8;
}

.aboutNomad .main-banner .content h1 span {
  font-family: "Planc";
}

.aboutNomad .nomads {
  background-color: #f9f4e8;
  color: #1d2a10;
  z-index: 999;
  position: relative;
}

.aboutNomad .videoSobre #video {
  object-fit: initial;
  width: 100%;
  margin-top: -15px;
}

.aboutNomad .nomadCarousel .glider-prev {
  left: 20px;
}

.aboutNomad .nomadCarousel .glider-next {
  right: 20px;
}

.aboutNomad .nomadCarousel h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  color: #f9f4e8;
  max-width: 220px;
  margin: 0;
}

.aboutNomad .nomadCarousel h2 span {
  font-family: "Planc";
}

.aboutNomad .nomadCarousel h3 {
  font-weight: 500;
  color: #f9f4e8;
  margin: 15px 0 40px;
  font-family: "Planc";
  font-size: 1.3rem;
}

.aboutNomad .nomadCarousel .content {
  background-color: #c15c17;
  color: #f9f4e8;
  padding: 50px 75px;
  margin: 0;
}

.aboutNomad .nomadCarousel .content:nth-child(1n) {
  background-color: #c15c17;
}

.aboutNomad .nomadCarousel .content:nth-child(2n) {
  background-color: #62632d !important;
}

.aboutNomad .nomadCarousel .content:nth-child(3n) {
  background-color: #1d2a10 !important;
}

.aboutNomad .nomadCarousel .content:nth-child(4n) {
  background-color: #0a2889 !important;
}

.aboutNomad .nomadCarousel .content:nth-child(5n) {
  background-color: #cdc1a2 !important;
  color: #1d2a10;
}

.aboutNomad .nomadCarousel .content .scroll {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.aboutNomad .nomadCarousel .content .scroll h4 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: auto auto 0 0;
  font-size: 2.2rem;
  width: 215px;
}

.aboutNomad .nomadCarousel .content .scroll h4 span {
  font-family: "Planc";
}

.aboutNomad .nomadTeam {
  padding: 80px 0;
  color: #162417;
  overflow: hidden;
}

.aboutNomad .nomadTeam h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.aboutNomad .nomadTeam h2 span {
  font-family: "Planc";
}

.aboutNomad .nomadTeam h3 {
  font-weight: 400;
  margin: 13px 0 40px;
  font-size: 1.4rem;
}

.aboutNomad .nomadTeam .content {
  background-color: #1d2a10;
  color: #f9f4e8;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.aboutNomad .nomadTeam .content .image {
  height: 400px;
}

.aboutNomad .nomadTeam .content .image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.aboutNomad .nomadTeam .content .hold {
  padding: 25px;
  font-size: 0.9rem;
}

.aboutNomad .nomadTeam .content .hold .name {
  padding-bottom: 5px;
  font-family: "Clearface";
  font-size: 1.2rem;
}

.aboutNomad .nomadTeam .content .hold .cargo {
  padding-bottom: 15px;
}

.aboutNomad .nomadTeam .glider-slide:nth-child(1) {
  margin: 0 10px 0 0;
}

.aboutNomad .nomadTeam .glider-prev {
  display: none;
}

.aboutNomad .nomadTeam .glider-next {
  right: 0;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(243, 235, 213, 0.62) 47%);
  left: auto;
  height: 100%;
  top: 0;
  width: 160px;
  font-size: 60px;
}

.aboutNomad .nomadTeam .glider-next {
  right: calc((100vw - 90%) / 2 * -1);
}

.aboutNomad .nomadTeam .tCarousel {
  margin-right: calc((100vw - 100%) / 2 * -1);
}

@media (min-width: 1497px) {
  .aboutNomad .nomadTeam .glider-next {
    right: calc((100vw - 1100px) / 2 * -1);
  }
  .aboutNomad .nomadTeam .tCarousel {
    margin-right: calc((100vw - 1100px) / 2 * -1);
  }
}
.aboutNomad .houseNomad {
  width: 100%;
  padding: 200px 0;
  background-size: cover;
  color: #f9f4e8;
  font-size: 1.1rem;
  background-position: center;
}

.aboutNomad .houseNomad h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: 0 auto 45px;
}

.aboutNomad .houseNomad h3 span {
  font-family: "Planc";
}

@media (min-width: 1200px) {
  .aboutNomad .houseNomad .texto {
    max-width: 600px;
  }
}
.aboutNomad .midia {
  background-color: #0a2889;
  padding: 60px 0;
  color: #f9f4e8;
  overflow: hidden;
}

.aboutNomad .midia .image {
  max-width: 150px;
}

.aboutNomad .midia h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin-bottom: 30px;
}

.aboutNomad .midia h3 span {
  font-family: "Planc";
}

.aboutNomad .midia .glider-slide:nth-child(1) {
  margin: 0 10px 0 0;
}

.aboutNomad .midia .glider-prev {
  display: none;
}

.aboutNomad .midia .glider-next {
  right: 0;
  left: auto;
  top: 0;
  color: #fff;
  height: 100%;
  padding: 0 40px;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1803921569) 47%);
}

@media (min-width: 1100px) {
  .aboutNomad .midia .container {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
  }
  .aboutNomad .midia .container h3 {
    width: 275px;
    margin: 0;
  }
  .aboutNomad .midia .container .glider-contain {
    width: calc(100% - 335px);
    margin: 0;
  }
}
.aboutNomad .midia .glider-next {
  right: calc((100vw - 100%) / 2 * -1);
}

.aboutNomad .midia .tCarousel {
  margin-right: calc((100vw - 100%) / 2 * -1);
}

@media (min-width: 1497px) {
  .aboutNomad .midia .glider-next {
    right: calc((100vw - 1100px) / 2 * -1);
  }
  .aboutNomad .midia .mCarousel {
    margin-right: calc((100vw - 1260px) / 2 * -1);
  }
}
.aboutNomad .partners {
  background-color: #cdc1a2;
  padding: 60px 0;
}

.aboutNomad .partners h3 {
  display: none;
}

.aboutNomad .partners h4 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
}

.aboutNomad .partners h4 span {
  font-family: "Planc";
}

.aboutNomad .partners .texto {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.aboutNomad .partners .texto strong {
  font-family: "Clearface";
  font-weight: 400;
  font-size: 1.6rem;
}

.aboutNomad .partners .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 700px) {
  .aboutNomad .partners .wp-block-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .aboutNomad .partners .wp-block-columns {
    display: flex;
    align-items: center !important;
  }
}
.page-template-sobre footer .partners {
  display: none;
}

.groupNomad .main-banner {
  width: 100%;
  object-fit: cover;
  height: 600px;
  display: flex;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.groupNomad .main-banner img {
  width: 380px;
  height: auto;
}

.groupNomad .main-banner .content {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5294117647);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.groupNomad .main-banner .content .groupName {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  color: #f9f4e8;
  margin: 0;
}

.groupNomad .main-banner .content .groupName span {
  font-family: "Planc";
}

.groupNomad .main-banner .content h1 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: 0;
  font-size: 1.8rem;
  color: #f9f4e8;
  max-width: 560px;
}

.groupNomad .main-banner .content h1 span {
  font-family: "Planc";
}

.groupNomad .main-banner .content .btn {
  font-size: 0.6rem;
  background-color: #c15c17;
}

.groupNomad .main-banner .content .btn:hover {
  background-color: #1d2a10;
}

.groupNomad .nomads {
  background-color: #c15c17;
}

.groupNomad .nextTrips {
  padding: 60px 0;
}

.groupNomad .nextTrips h2 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  margin: 0 0 50px;
}

.groupNomad .nextTrips h2 span {
  font-family: "Planc";
}

.groupNomad .nextTrips .btn-trips {
  margin-top: 80px;
  text-align: center;
}

.groupNomad .nextTrips ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.groupNomad .nextTrips ul li {
  list-style: none;
}

.groupNomad .nextTrips ul li .flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.groupNomad .nextTrips ul li .flex .carousel {
  width: 100%;
  position: relative;
}

.groupNomad .nextTrips ul li .flex .carousel span.status {
  background: #c15c17;
  color: #fff;
  font-family: "Futura";
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  border-radius: 10px;
  position: absolute;
  z-index: 999;
  top: 15px;
  left: 15px;
}

.groupNomad .nextTrips ul li .flex .carousel .glider-slide {
  margin: 0;
}

.groupNomad .nextTrips ul li .flex .carousel .glider-prev,
.groupNomad .nextTrips ul li .flex .carousel .glider-next {
  color: #fff;
  left: 20px;
}

.groupNomad .nextTrips ul li .flex .carousel .glider-next {
  right: 20px;
  left: auto;
}

.groupNomad .nextTrips ul li .flex .carousel .img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
}

.groupNomad .nextTrips ul li .flex .carousel .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.groupNomad .nextTrips ul li .flex .content {
  width: 100%;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.1rem;
  position: relative;
  padding: 20px 0;
}

.groupNomad .nextTrips ul li .flex .content h3 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 2.4rem;
  margin: 0;
}

.groupNomad .nextTrips ul li .flex .content h3 span {
  font-family: "Planc";
}

.groupNomad .nextTrips ul li .flex .content .information {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}

.groupNomad .nextTrips ul li .flex .content .information p {
  margin: 0;
}

.groupNomad .nextTrips ul li .flex .content .information span {
  display: block;
  font-family: "Clearface";
}

.groupNomad .nextTrips ul li .flex .content .description {
  margin-top: auto;
}

.groupNomad .nextTrips ul li .flex .content .btns {
  display: flex;
  gap: 15px;
  text-align: center;
  flex-direction: row-reverse;
  justify-content: start;
}

.groupNomad .nextTrips ul li .flex .content .btns .btn {
  background-color: #62632d;
}

.groupNomad .nextTrips ul li .flex .content .btns .btn:hover {
  background-color: #c15c17;
}

.groupNomad .nextTrips ul li .flex .content .btns .btn.outline {
  color: #62632d;
  border: 1px solid #62632d;
  background: transparent;
}

.groupNomad .nextTrips ul li .flex .content .btns .btn.outline:hover {
  color: #fff;
  background-color: #62632d;
}

@media (min-width: 1100px) {
  .groupNomad .nextTrips ul li .flex {
    flex-direction: row;
    gap: 30px;
  }
  .groupNomad .nextTrips ul li .flex .carousel {
    width: calc(60% - 30px);
  }
  .groupNomad .nextTrips ul li .flex .content {
    width: 40%;
  }
}
.groupNomad .nextTrips ul li .roteiro {
  background: #cdc1a2;
  padding: 20px 40px;
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.2s linear;
  transform: translateY(80px);
  visibility: hidden;
  opacity: 0;
  font-size: 1rem;
  width: 100%;
}

.groupNomad .nextTrips ul li .roteiro .texto {
  overflow-y: scroll;
  padding-right: 15px;
  height: 100%;
}

.groupNomad .nextTrips ul li .roteiro .close {
  position: absolute;
  top: -16px;
  right: -9px;
  background-color: #c15c17;
  color: #fff;
  font-family: "Futura";
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
}

.groupNomad .nextTrips ul li .roteiro .btn {
  background-color: #62632d;
}

.groupNomad .nextTrips ul li .roteiro .btn:hover {
  background-color: #c15c17;
}

.groupNomad .nextTrips ul li .roteiro ol,
.groupNomad .nextTrips ul li .roteiro ul {
  padding: 0 0 0 20px;
}

.groupNomad .nextTrips ul li .roteiro ol li,
.groupNomad .nextTrips ul li .roteiro ul li {
  list-style: auto;
  padding: 5px 0;
}

.groupNomad .nextTrips ul li .roteiro.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.groupNomad .nextTrips ul li .roteiro h4 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 2rem;
}

.groupNomad .nextTrips ul li .roteiro h4 span {
  font-family: "Planc";
}

.groupNomad .previousTrips .container {
  max-width: 100%;
  width: 100%;
}

.groupNomad .previousTrips ul {
  padding: 0;
  display: flex;
}

.groupNomad .previousTrips ul li {
  list-style: none;
  width: 25%;
  position: relative;
}

.groupNomad .previousTrips ul .img {
  height: 450px;
}

.groupNomad .previousTrips ul .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.groupNomad .previousTrips ul .content {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 30, 6, 0.61);
  height: 100%;
  padding: 30px 60px 50px;
  display: flex;
  flex-direction: column;
  color: #f9f4e8;
}

.groupNomad .previousTrips ul .content p {
  margin: 10px 0 0;
}

.groupNomad .previousTrips .container .glider-prev {
  left: 10px;
  width: 35px;
  height: 35px;
  font-size: 30px;
  background: #c15c17;
  color: #f9f4e8;
  display: flex;
  align-items: center;
  top: 50%;
  justify-content: center;
  line-height: inherit;
  border-radius: 100%;
  padding-bottom: 5px;
}

.groupNomad .previousTrips .container .glider-next {
  right: 10px;
  width: 35px;
  height: 35px;
  font-size: 30px;
  background: #c15c17;
  color: #f9f4e8;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: inherit;
  border-radius: 100%;
  padding-bottom: 5px;
}

.groupNomad .previousTrips ul .content .status {
  background: #001e06;
  color: #fff;
  font-family: "Futura";
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  border-radius: 10px;
  position: absolute;
  z-index: 999;
  top: 30px;
  left: 60px;
}

.groupNomad .previousTrips ul .content h5 {
  font-size: 2.8rem;
  font-family: "Clearface";
  font-weight: 500;
  margin: auto;
  font-size: 2rem;
  margin: auto 0 0;
}

.groupNomad .previousTrips ul .content h5 span {
  font-family: "Planc";
}

.groupNomad .testimonials {
  background-color: #c15c17;
}

.groupNomad .contact h3 {
  margin-bottom: 30px;
}

.cineNomad {
  background-color: #f9f4e8;
}

.cine-hero {
  position: relative;
  height: 90vh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  background-color: #0c101f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 140px 0 80px;
  overflow: hidden;
}

.cine-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 10%;
  text-align: center;
}

.cine-hero__logo {
  display: block;
  width: auto;
  max-width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 28px;
}

.cine-hero__title {
  font-family: "Clearface";
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0 0 24px;
  color: #fff;
}

.cine-hero__title .cine-hero__highlight,
.cine-hero__title span {
  color: #c15c17;
}

.cine-hero__text {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cine-hero__text p {
  margin: 0;
}

.cine-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cine-hero__btn {
  letter-spacing: 2px;
}

.cine-hero__btn--primary {
  background-color: #c15c17;
  color: #fff;
}

.cine-hero__btn--primary:hover {
  background-color: #a04a12;
  text-decoration: none;
}

.cine-hero__btn--secondary {
  background-color: transparent;
  border: 1px solid #c15c17;
  color: #fff;
}

.cine-hero__btn--secondary:hover {
  background-color: #c15c17;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .cine-hero__content {
    padding: 0;
    max-width: 1200px;
  }
}
.cine-intro {
  padding: 70px 0 90px;
  background-color: #f9f4e8;
  color: #1d2a10;
}

.cine-intro__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.cine-intro__title {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #1d2a10;
  margin: 0 0 28px;
}

.cine-intro__text {
  font-size: 1rem;
  line-height: 1.65;
}

.cine-intro__text p {
  margin: 0 0 1.1em;
}

.cine-intro__text p:last-child {
  margin-bottom: 0;
}

.cine-intro__text .cine-intro__highlight,
.cine-intro__text span, .cine-intro a {
  color: #c15c17;
}

.cine-intro__media {
  border-radius: 18px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}

.cine-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .cine-intro {
    padding: 90px 0 110px;
  }
  .cine-intro__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 72px;
    align-items: center;
  }
  .cine-intro__media {
    margin: 0;
    justify-self: end;
  }
}
.cine-mediadora {
  padding: 80px 0 90px;
  background-color: #1d2a10;
  color: #f9f4e8;
}
.cine-mediadora .container {
  max-width: 900px;
}

.cine-mediadora__heading {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 48px;
  color: #f9f4e8;
}

.cine-mediadora__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.cine-mediadora__media {
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}

.cine-mediadora__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cine-mediadora__name {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 24px;
  color: #f9f4e8;
}

.cine-mediadora__text {
  font-size: 1rem;
  line-height: 1.7;
}

.cine-mediadora__text p {
  margin: 0 0 1em;
}

.cine-mediadora__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .cine-mediadora {
    padding: 100px 0 110px;
  }
  .cine-mediadora__heading {
    margin-bottom: 64px;
  }
  .cine-mediadora__grid {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 72px;
  }
  .cine-mediadora__media {
    margin: 0;
  }
}
.cine-session {
  padding: 80px 0 90px;
  background: #f1e7d4 url("../images/bg-sessao.jpg") no-repeat center center;
  color: #1d2a10;
}
.cine-session .container {
  max-width: 1000px;
}

.cine-session__ticket {
  background: #ebd3b2 url("../images/bg-cartaz.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.cine-session__ticket-body {
  display: grid;
  gap: 40px;
  padding: 36px 28px 32px;
  position: relative;
}

.cine-session__info {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cine-session__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #1d2a10;
  color: #f9f4e8;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cine-session__badge-icon {
  flex-shrink: 0;
}

.cine-session__title {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #1d2a10;
}

.cine-session__subtitle {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 420px;
  color: #1d2a10;
}

.cine-session__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-direction: column;
}

.cine-session__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c15c17;
  flex-direction: column;
}

.cine-session__detail--date {
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-right: 0;
  border-right: 0;
}

.cine-session__detail--date .cine-session__detail-value {
  font-size: 2.4rem;
  line-height: 1;
  color: #c15c17;
}

.cine-session__detail-label {
  display: block;
  font-family: "Futura", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c15c17;
  text-align: center;
}

.cine-session__detail-value {
  display: block;
  font-family: "Clearface", serif;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  color: #1d2a10;
  max-width: 120px;
}

.cine-session__detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #c15c17;
  width: 30px;
  height: 30px;
}

.cine-session__btn {
  display: inline-block;
  letter-spacing: 2px;
  text-align: center;
  background-color: #c15c17;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
}

.cine-session__btn:hover {
  background-color: #a04a12;
  text-decoration: none;
}

.cine-session__visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cine-session__filmstrip {
  position: relative;
  z-index: 2;
  width: min(100%, 220px);
  transform: rotate(-4deg);
}

.cine-session__stamp {
  position: absolute;
  top: -10px;
  left: -18px;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  background-color: rgb(233, 208, 173);
  transform: rotate(-12deg);
  background-image: url(../images/em-cartaz.png);
  color: transparent;
  background-size: contain;
}

.cine-session__filmstrip-inner {
  background-color: #111;
  padding: 14px 10px;
  border-radius: 4px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  background-image: radial-gradient(circle, #fff 2px, transparent 2.5px), radial-gradient(circle, #fff 2px, transparent 2.5px);
  background-size: 10px 10px;
  background-position: left center, right center;
  background-repeat: repeat-y;
}

.cine-session__filmstrip-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cine-session__scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72%, 280px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

@media (min-width: 900px) {
  .cine-session {
    padding: 100px 0 110px;
  }
  .cine-session__info {
    border-right: 2px dashed rgba(29, 42, 16, 0.35);
    padding-right: 40px;
    text-align: left;
  }
  .cine-session__ticket-body {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding: 48px 56px 40px;
    align-items: center;
  }
  .cine-session__details {
    grid-template-columns: repeat(3, auto);
    gap: 0;
    align-items: center;
    max-width: 420px;
  }
  .cine-session__detail--date, .cine-session__detail--time {
    border-right: 1px solid rgb(213, 182, 130);
  }
  .cine-session__visual {
    min-height: 360px;
    justify-content: center;
    padding-left: 12px;
  }
  .cine-session__filmstrip {
    width: 240px;
    margin-left: 12px;
  }
  .cine-session__scene {
    width: min(68%, 320px);
    right: -8px;
  }
}
.cine-session__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cine-session__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #c15c17;
  background: transparent;
  color: #1d2a10;
  padding: 12px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Futura", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cine-session__toggle:hover,
.cine-session__toggle.open {
  background-color: #c15c17;
  color: #fff;
}

.cine-session__toggle-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.cine-session__toggle.open .cine-session__toggle-icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.cine-session__extra {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease, visibility 0.25s ease;
}

.cine-session__extra.open {
  margin-top: 28px;
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}

.cine-why {
  padding: 90px 0;
  background-color: #121a13;
  color: #f9f4e8;
}

.cine-why__header {
  margin-bottom: 48px;
  max-width: 760px;
}

.cine-why__tag {
  display: block;
  margin-bottom: 16px;
  font-family: "Clearface", serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9b896;
}

.cine-why__title {
  margin: 0;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #fff;
}

.cine-why__slider {
  position: relative;
  margin: 0 auto;
}

.cine-why__slider .glider-prev,
.cine-why__slider .glider-next {
  color: #c9b896;
  font-size: 2rem;
  top: 42%;
}

.cine-why__slider .glider-prev {
  left: -8px;
}

.cine-why__slider .glider-next {
  right: -8px;
}

.cine-why__carousel .glider-slide {
  padding: 0 12px;
}

.cine-why__card {
  background-color: #0c101f;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  color: #fff;
}

.cine-why__card--azul {
  background-color: #0a2889;
}

.cine-why__card--azul-escuro {
  background-color: #0c101f;
}

.cine-why__card--laranja {
  background-color: #c15c17;
}

.cine-why__card--roxo {
  background-color: #640b7a;
}

.cine-why__card--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}

.cine-why__card--bege .cine-why__card-title {
  color: #0c101f;
}

.cine-why__card--bege .cine-why__card-text {
  color: rgba(12, 16, 31, 0.8);
}

.cine-why__card-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cine-why__card-body {
  padding: 22px 20px 24px;
}

.cine-why__card-title {
  margin: 0 0 8px;
  font-family: "Clearface", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.cine-why__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(249, 244, 232, 0.75);
}

@media (min-width: 1100px) {
  .cine-why {
    padding: 110px 0;
  }
  .cine-why__header {
    margin-bottom: 56px;
  }
  .cine-why__card-media img {
    height: 300px;
  }
  .cine-why__slider .glider-prev {
    left: -20px;
  }
  .cine-why__slider .glider-next {
    right: -20px;
  }
}
.cine-join {
  padding: 60px 0;
  background-color: #62632d;
  color: #fff;
  font-size: 1.1rem;
}

.cine-join__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cine-join__content {
  width: 100%;
}

.cine-join__title {
  margin: 0 0 20px;
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
}

.cine-join__text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
}

.cine-join__text p {
  margin: 0 0 8px;
}

.cine-join__text p:last-child {
  margin-bottom: 0;
}

.cine-join__text strong {
  font-weight: 600;
}

.cine-join__price {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 28px 24px;
  background-color: #1d2a10;
  border-radius: 18px;
}

.cine-join__value {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.cine-join__value span {
  font-family: "Clearface", serif;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 4rem);
  line-height: 1;
}

.cine-join__btn {
  background-color: #c15c17;
  color: #fff;
}

.cine-join__btn:hover {
  background-color: #a04a12;
  text-decoration: none;
}

@media (min-width: 800px) {
  .cine-join {
    padding: 70px 0;
  }
  .cine-join__grid {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  .cine-join__content {
    width: calc(100% - 400px);
  }
  .cine-join__price {
    width: 400px;
    padding: 40px 24px;
  }
}
.cineNomad .faq {
  padding: 80px 0;
}

.cineNomad .faq .image {
  display: none;
}

.cineNomad .faq h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-family: "Clearface", serif;
  font-weight: 500;
  margin: 0 0 16px;
  color: #1d2a10;
}

.cineNomad .faq p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.cineNomad .faq .sp-easy-accordion .sp-ea-single {
  border: 0;
  background-color: transparent;
}

.cineNomad .faq .sp-easy-accordion .sp-ea-single h3 a {
  text-transform: uppercase;
  font-family: "Futura", sans-serif;
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1px solid #c15c17;
  font-size: 0.65rem;
  color: #1d2a10;
}

.cineNomad .faq .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus {
  font-size: 0.6rem;
  color: #1d2a10;
}

.cineNomad .faq .sp-easy-accordion .sp-ea-single .ea-body {
  background-color: transparent !important;
  color: #1d2a10 !important;
  font-size: 0.9rem;
}

.cineNomad .faq .down {
  background-color: transparent;
  background-image: url("../images/seta.webp");
  border: 0;
  height: 22px;
  width: 42px;
  cursor: pointer;
  background-size: 100%;
  text-indent: -999px;
  display: block;
  margin-top: 28px;
  color: transparent;
  transition: all 0.2s linear;
}

.cineNomad .faq .down.rotate {
  transform: rotate(180deg);
}

.cineNomad .faq .faqBox {
  margin-top: 30px;
  visibility: hidden;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s linear;
  opacity: 0;
}

.cineNomad .faq .faqBox.open {
  visibility: visible;
  height: auto;
  max-height: none;
  overflow: visible;
  opacity: 1;
}

.cineNomad .testimonials {
  background-color: transparent;
}

.cineNomad .testimonials h3 {
  color: #fff;
}

.cineNomad .testimonials .testimonial .glider-slide {
  background-image: none;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  padding: 20px 24px;
}

.cineNomad .testimonials .testimonial .glider-slide .aspas {
  background-image: url("../images/aspas2.webp");
}

.cineNomad .testimonials .testimonial .name {
  color: #fff;
}

@media (min-width: 1024px) {
  .cineNomad .faq .flex {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  .cineNomad .faq .flex .content {
    width: calc(100% - 240px);
  }
  .cineNomad .faq .flex .image {
    display: block;
    width: 180px;
  }
  .cineNomad .faq .flex .image img {
    width: 100%;
  }
  .cineNomad .testimonials .testimonial .glider-slide.center {
    background-image: none;
    color: #fff;
  }
}
.cine-hero--azul {
  background-color: #0a2889;
  color: #fff;
}

.cine-hero--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.cine-hero--laranja {
  background-color: #c15c17;
  color: #fff;
}

.cine-hero--roxo {
  background-color: #640b7a;
  color: #fff;
}

.cine-hero--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cine-hero--bege .cine-hero__title {
  color: #0c101f;
}

.cine-intro--azul {
  background-color: #0a2889;
  color: #fff;
}

.cine-intro--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.cine-intro--laranja {
  background-color: #c15c17;
  color: #fff;
}

.cine-intro--roxo {
  background-color: #640b7a;
  color: #fff;
}

.cine-intro--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cine-intro--bege .cine-intro__title {
  color: #0c101f;
}

.cine-intro--azul .cine-intro__title,
.cine-intro--azul-escuro .cine-intro__title,
.cine-intro--laranja .cine-intro__title,
.cine-intro--roxo .cine-intro__title {
  color: #fff;
}

.cine-intro--azul .cine-intro__text .cine-intro__highlight,
.cine-intro--azul .cine-intro__text span,
.cine-intro--azul .cine-intro a,
.cine-intro--azul-escuro .cine-intro__text .cine-intro__highlight,
.cine-intro--azul-escuro .cine-intro__text span,
.cine-intro--azul-escuro .cine-intro a,
.cine-intro--laranja .cine-intro__text .cine-intro__highlight,
.cine-intro--laranja .cine-intro__text span,
.cine-intro--laranja .cine-intro a,
.cine-intro--roxo .cine-intro__text .cine-intro__highlight,
.cine-intro--roxo .cine-intro__text span,
.cine-intro--roxo .cine-intro a {
  color: #f9f4e8;
}

.cine-mediadora--azul {
  background-color: #0a2889;
  color: #fff;
}

.cine-mediadora--azul-escuro {
  background-color: #0c101f;
  color: #f9f4e8;
}

.cine-mediadora--laranja {
  background-color: #c15c17;
  color: #fff;
}

.cine-mediadora--roxo {
  background-color: #640b7a;
  color: #fff;
}

.cine-mediadora--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cine-mediadora--bege .cine-mediadora__heading,
.cine-mediadora--bege .cine-mediadora__name {
  color: #0c101f;
}

.cine-session--azul {
  background: #0a2889;
  color: #fff;
}

.cine-session--azul-escuro {
  background: #0c101f;
  color: #fff;
}

.cine-session--laranja {
  background: #c15c17;
  color: #fff;
}

.cine-session--roxo {
  background: #640b7a;
  color: #fff;
}

.cine-session--bege {
  background: #f9f4e8 url("../images/bg-sessao.jpg") no-repeat center center;
  background-size: cover;
  color: #0c101f;
}
.cine-session--bege .cine-session__title,
.cine-session--bege .cine-session__subtitle,
.cine-session--bege .cine-session__detail-value {
  color: #0c101f;
}
.cine-session--bege .cine-session__toggle {
  color: #0c101f;
}

.cine-why--azul {
  background-color: #0a2889;
  color: #fff;
}

.cine-why--azul-escuro {
  background-color: #0c101f;
  color: #f9f4e8;
}

.cine-why--laranja {
  background-color: #c15c17;
  color: #fff;
}

.cine-why--roxo {
  background-color: #640b7a;
  color: #fff;
}

.cine-why--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cine-why--bege .cine-why__title {
  color: #0c101f;
}
.cine-why--bege .cine-why__tag {
  color: #0c101f;
}
.cine-why--bege .cine-why__slider .glider-prev,
.cine-why--bege .cine-why__slider .glider-next {
  color: #0c101f;
}

.cine-why--azul .cine-why__title,
.cine-why--azul-escuro .cine-why__title,
.cine-why--laranja .cine-why__title,
.cine-why--roxo .cine-why__title {
  color: #fff;
}

.cine-join--azul {
  background-color: #0a2889;
  color: #fff;
}

.cine-join--azul-escuro {
  background-color: #0c101f;
  color: #fff;
}

.cine-join--laranja {
  background-color: #c15c17;
  color: #fff;
}

.cine-join--roxo {
  background-color: #640b7a;
  color: #fff;
}

.cine-join--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cine-join--bege .cine-join__title {
  color: #0c101f;
}
.cine-join--bege .cine-join__btn {
  background-color: #0a2889;
  color: #fff;
}

.cine-join--azul .cine-join__btn,
.cine-join--azul-escuro .cine-join__btn,
.cine-join--roxo .cine-join__btn {
  background-color: #c15c17;
}

.cine-join--laranja .cine-join__btn {
  background-color: #0a2889;
}

.cineNomad .faq--azul,
.cineNomad .faq--azul-escuro,
.cineNomad .faq--laranja,
.cineNomad .faq--roxo {
  color: #fff;
}
.cineNomad .faq--azul h3,
.cineNomad .faq--azul p,
.cineNomad .faq--azul-escuro h3,
.cineNomad .faq--azul-escuro p,
.cineNomad .faq--laranja h3,
.cineNomad .faq--laranja p,
.cineNomad .faq--roxo h3,
.cineNomad .faq--roxo p {
  color: #fff;
}
.cineNomad .faq--azul .sp-easy-accordion .sp-ea-single h3 a,
.cineNomad .faq--azul .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq--azul .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.cineNomad .faq--azul-escuro .sp-easy-accordion .sp-ea-single h3 a,
.cineNomad .faq--azul-escuro .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq--azul-escuro .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.cineNomad .faq--laranja .sp-easy-accordion .sp-ea-single h3 a,
.cineNomad .faq--laranja .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq--laranja .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus,
.cineNomad .faq--roxo .sp-easy-accordion .sp-ea-single h3 a,
.cineNomad .faq--roxo .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq--roxo .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus {
  color: #fff;
  border-color: #fff;
}
.cineNomad .faq--azul .sp-easy-accordion .sp-ea-single .ea-body,
.cineNomad .faq--azul-escuro .sp-easy-accordion .sp-ea-single .ea-body,
.cineNomad .faq--laranja .sp-easy-accordion .sp-ea-single .ea-body,
.cineNomad .faq--roxo .sp-easy-accordion .sp-ea-single .ea-body {
  color: #fff !important;
}

.cineNomad .faq--azul {
  background-color: #0a2889;
}

.cineNomad .faq--azul-escuro {
  background-color: #0c101f;
}

.cineNomad .faq--laranja {
  background-color: #c15c17;
}

.cineNomad .faq--roxo {
  background-color: #640b7a;
}

.cineNomad .faq--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cineNomad .faq--bege h3,
.cineNomad .faq--bege p {
  color: #0c101f;
}
.cineNomad .faq--bege .sp-easy-accordion .sp-ea-single h3 a,
.cineNomad .faq--bege .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-plus,
.cineNomad .faq--bege .sp-easy-accordion .sp-ea-single h3 a .ea-expand-icon.fa-minus {
  color: #0c101f;
}
.cineNomad .faq--bege .sp-easy-accordion .sp-ea-single .ea-body {
  color: #0c101f !important;
}

.cineNomad .testimonials--azul {
  background-color: #0a2889;
}

.cineNomad .testimonials--azul-escuro {
  background-color: #0c101f;
}

.cineNomad .testimonials--laranja {
  background-color: #c15c17;
}

.cineNomad .testimonials--roxo {
  background-color: #640b7a;
}

.cineNomad .testimonials--bege {
  background-color: #f9f4e8;
  color: #0c101f;
}
.cineNomad .testimonials--bege h3,
.cineNomad .testimonials--bege .testimonial .glider-slide,
.cineNomad .testimonials--bege .testimonial .name {
  color: #0c101f;
}

.page.page-id-2730 body a {
  color: #c15c17;
}

.woocommerce-cart .woocommerce table.shop_table {
  border: 1px solid rgb(237, 217, 168) !important;
}

.woocommerce-cart .woocommerce .actions input.input-text {
  border: 0 !important;
  height: 30px;
  width: 120px;
}

.woocommerce-cart .woocommerce .actions button.button {
  font-size: 11px;
  background: #c15c17;
  color: #fff;
  border: 0;
  font-family: "Futura";
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 30px;
}

.woocommerce-cart .woocommerce .actions .coupon button.button {
  display: flex;
  align-items: center;
}

.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button {
  background: #1d2a10;
  font-size: 15px;
  font-weight: 500;
}

.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button:hover {
  background: #4b781e;
}

/*# sourceMappingURL=main.css.map */
