@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 .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 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";
}

.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 .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--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 {
  background-color: #0c101f;
  color: #fff;
  overflow: hidden;
}

.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 .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;
  background-color: #0c101f;
  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--online {
  background-color: #640b7a;
}
.modalidades__card--online .modalidades__image {
  background-color: #c15c17;
}

.modalidades__image {
  width: 100%;
  height: 100px;
  border-radius: 100%;
  background-color: #0a2889;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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--online .btn {
  background-color: #c15c17;
}

.modalidades__card--online .btn:hover {
  background-color: #0a2889;
}

@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--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 {
  background-color: #0c101f;
  padding: 60px 0;
  color: #fff;
  font-size: 1.1rem;
}

.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 .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 {
  background-color: #f9f4e8;
  color: #0a2889;
  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-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__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 {
  background-color: #640b7a;
  color: #fff;
  padding: 40px 20px;
}

.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 {
  background-color: #640b7a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.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: #0a2889;
}

.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 {
  background-color: #0a2889;
  border-radius: 0;
  margin: 0;
}

.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;
}

.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%;
}

.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;
  margin-bottom: 36px;
  max-width: 520px;
}

.cine-hero__text p {
  margin: 0;
}

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

.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: linear-gradient(180deg, #efe4cf 0%, #f7f0df 100%);
  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;
}

.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%;
  border: 2px solid #c15c17;
  color: #c15c17;
  font-family: "Futura", sans-serif;
  font-size: 0.48rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  background-color: rgba(249, 244, 232, 0.9);
  transform: rotate(-12deg);
}

.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: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .cine-session__detail--date, .cine-session__detail--time {
    border-right: 1px solid rgb(217, 204, 182);
  }
  .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-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: #1d2a10;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.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;
  background-color: #f9f4e8;
  color: #1d2a10;
}

.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: #c15c17;
}

.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;
  }
}
.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 */
