@font-face {
  font-family: 'Bauziet';
  src:
  url(/wp-content/themes/play25/assets/bauziet-norm-regular-webfont.woff2) format('woff2'),
  url(/wp-content/themes/play25/assets/bauziet-norm-regular-webfont.woff) format('woff'),
  url(/wp-content/themes/play25/assets/Bauziet-Norm-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'Bauziet-Seta';
  src:
  url(/wp-content/themes/play25/assets/Bauziet-Norm-Regular.otf) format('opentype');
}
.seta {
  font-family: 'Bauziet-Seta';
}
::selection {
  background-color: #F4B438;
}
.page {
  margin: 0px;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #fff;
  color: black;
  font-family: 'Bauziet';
  font-size: 24px;
  line-height: 1.25;
  transition: opacity 0.7s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.preload {
  opacity: 0;
}
body.page-loaded {
  opacity: 1;
}
body.page-fadeout {
  opacity: 0;
}


.bg-verde {
  background-color: #7B8B44;
}
.bg-amarelo {
  background-color: #F4B438;
}


a, a:hover, a:active, a:visited {
  text-decoration: none;
  color: black;
  outline: none!important;
  -webkit-tap-highlight-color: #FCAEBB;
}
h2, #accordionPanelsStayOpenArtistas .accordion-button {
  font-size: 90px;
  line-height: 1;
}
h3, h3 p {
  font-size: 32px;
  margin-bottom: 0px;
  line-height: 1;
}
h4, h4 p {
  font-size: 56px;
  margin-bottom: 0px;
  line-height: 1;
}
p {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 0.7em;
}
small, small p {
  font-size: 14px;
}
.mb0 p {
  margin-bottom: 0px;
}


.ratio-3x4 {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.ratio-4x3 {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.w-fit {
  width: fit-content;
}
.of-hidden {
  overflow: hidden;
}
.desk-none {
  display: none;
}
.w-32 {
  width: 32%;
}
.w-48 {
  width: 49%;
}

.container-play {
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}


header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  z-index: 999999999;
  transition: transform 0.5s ease, backdrop-filter 0.5s ease, background-color 0.5s ease;
  transform: translateY(0);
  background-color: rgba(123, 139, 68, 0);
  backdrop-filter: blur(0px);
}
header .logo-sm {
  opacity: 0;
  width: 60px;
}
header div.flex {
  gap:20px;
}
header.scrolled {
  transform: translateY(0);
  background-color: rgba(253,110,4,0.6);
  backdrop-filter: blur(20px) saturate(180%) contrast(120%) brightness(110%);
}
header.scrolled .logo-sm {
  opacity: 1;
}
header.header-hidden {
  transform: translateY(-100%);
}
header a, .menu a, header p, .menu p {
  color: white;
  text-transform: uppercase;
  font-size: 22px;
}
header a:hover, header a:active, header a:visited,
.menu a:hover, .menu a:active, .menu a:visited {
  color: white;
}
header p {
  display: none;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding: 48px;
  background-color: #F6B827;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform ease-in-out 0.5s;
}
.menu.abre {
  transform: translateX(0);
  transition: transform ease-in-out 0.5s;
}
.menu img {
  width: 90px;
}
header a, header p {
  transition: transform ease 0.5s;
}
header a:hover, header p:hover {
  transform: translateY(4px);
  transition: transform ease 0.5s;
  text-decoration: underline;
}


.hero {
  width: 100vw;
  height: 100dvh;
}
.hero .container-play {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-55%);
}


.intro h3 p {
  line-height: 1.25;
}


.bloco {
  aspect-ratio: 3/1;
}
.bloco .bg-amarelo h4 {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 9;
}


/* animacoes */

.scroller-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scroller-bottom {
  z-index: 1;
}
.scroller-top {
  z-index: 2;
}
.scroller-track {
  display: flex;
  width: max-content;
  animation: linear infinite;
  animation-duration: 300s;
}
.scroller-track img {
  flex-shrink: 0;
  height: 100dvh;
  object-fit: contain;
  opacity: 0.9;
}
.track-left {
  animation-name: scroll-left;
  transform: tra;
}
.track-right {
  animation-name: scroll-right;
}
@keyframes scroll-left {
  from { transform: translateX(-400px); }
  to   { transform: translateX(-22000px); }
}
@keyframes scroll-right {
  from { transform: translateX(-22000px); }
  to   { transform: translateX(0); }
}

.scroller-vertical-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: max-content;
  animation: scroll-up 300s linear infinite;
}
.scroller-vertical-track img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}
@keyframes scroll-up {
  from {
    transform: translateY(-1000px);
  }
  to {
    transform: translateY(-37000px);
  }
}

.scroller-horizontal-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  animation: scroll-hori 250s linear infinite;
  animation-play-state: paused;
}
.scroller-horizontal-track img {
  flex-shrink: 0;
  width: auto;
  height: 100%;
}
@keyframes scroll-hori {
  from {
    transform: translateX(-2000px);
  }
  to {
    transform: translateX(-22000px);
  }
}
.is-scrolling {
  animation-play-state: running;
}


#word-rotator {
  /* transition: opacity 0.3s ease-in-out; */
  display: inline-block;
  text-align: left;
}
.word-fading-out {
  opacity: 0;
}


.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.titulo-obra {
  height: 90px;
}


/* carousel */
.carousel.obras, .carousel.oficinas {
  padding-left: 48px;
}
.carousel.obras .carousel-cell, .carousel.oficinas .carousel-cell {
  height: 70dvh;
}
.carousel.obras .carousel-cell.paisagem, .carousel.oficinas .carousel-cell.paisagem {
  aspect-ratio: 4/3;
  width: auto;
}
.carousel.obras .carousel-cell.retrato, .carousel.oficinas .carousel-cell.retrato {
  aspect-ratio: 3/4;
  width: auto;
}
.carousel-cell img {
  width: 100%;
  height: calc(100% - 64px);
  object-fit: cover;
  object-position: center;
}
.flickity-prev-next-button.next {
  right: auto;
  right: 20px;
}
.flickity-button.previous {
  right: auto;
  left: 48px;
}
.carousel.artistas .flickity-prev-next-button.next {
  left: auto;
  right: 0px;
}
.carousel.artistas .flickity-prev-next-button.previous {
  left: auto;
  right: 80px;
}
.carousel.artistas .carousel-cell {
  width: 31vw;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.flickity-prev-next-button:hover {
  border: 2pt solid black;
  opacity: 1;
}
.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
.flickity-prev-next-button {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2246%22%20height%3D%2237%22%20viewBox%3D%220%200%2046%2037%22%20fill%3D%22black%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M27.6841%200L45.8182%2018.2391L27.6841%2036.5322L24.0358%2032.9168L31.7616%2025.2002C32.7809%2024.121%2034.7124%2022.8259%2037.5022%2021.3149L36.8584%2019.4263C34.3368%2020.3976%2031.8152%2020.9372%2029.4009%2020.9372H0V15.6489L29.3472%2015.541C31.6006%2015.541%2034.0686%2016.0806%2036.8048%2017.052L37.5022%2015.1633C34.8197%2013.7603%2032.8882%2012.4652%2031.7079%2011.278L23.9821%203.61545L27.6304%200L27.6841%200Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 26px;
  top: -80px;
  transform: translateY(0);
  width: 60px;
  height: 60px;
  border: 2pt solid black;
  transition: transform 0.5s ease;
}
.flickity-prev-next-button.previous {
  transform: translateY(0) scaleX(-1);
}
.flickity-prev-next-button:hover {
  transform: translateY(-4px);
}
.flickity-prev-next-button.previous:hover {
  transform: translateY(-4px) scaleX(-1);
}
.flickity-button {
  transition: transform 0.5s ease;
}
.flickity-button:hover {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2246%22%20height%3D%2237%22%20viewBox%3D%220%200%2046%2037%22%20fill%3D%22black%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M27.6841%200L45.8182%2018.2391L27.6841%2036.5322L24.0358%2032.9168L31.7616%2025.2002C32.7809%2024.121%2034.7124%2022.8259%2037.5022%2021.3149L36.8584%2019.4263C34.3368%2020.3976%2031.8152%2020.9372%2029.4009%2020.9372H0V15.6489L29.3472%2015.541C31.6006%2015.541%2034.0686%2016.0806%2036.8048%2017.052L37.5022%2015.1633C34.8197%2013.7603%2032.8882%2012.4652%2031.7079%2011.278L23.9821%203.61545L27.6304%200L27.6841%200Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 26px;
  top: -80px;
  transform: translateY(0) translateX(8px) rotate(auto);
  width: 60px;
  height: 60px;
  border: 2pt solid black;
  transition: transform ease 0.5s;
}


/* accordion */
.obras .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent!important;
  --bs-accordion-border-radius: none!important;
}
.accordion-button {
  font-size: 24px;
  cursor: pointer;
  transition: transform ease 0.5s;
}
.accordion-button:hover {
  transform: translateX(6px);
}
.accordion-item {
  background-color: transparent;
  border-bottom: 1pt solid black!important;
  border-left: none!important;
  border-right: none!important;
}
.accordion-button:not(.collapsed) {
  color: black;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.accordion-body {
  padding: 0px;
}
#accordionPanelsStayOpenArtistas .accordion-button::after {
  background-size: 2.5rem;
  margin-top: 8px;
  background-position: 9px 12px;
  content: "";
  margin-left: auto;
  width: 4rem;
  height: 4rem;
  border: 2pt solid black;
  border-radius: 100px;
}
#accordionPanelsStayOpenArtistas .accordion-item:first-child .accordion-header {
  border-top: 1pt solid black;
}
#accordionPanelsStayOpenArtistas .accordion-item:last-child {
  border-bottom: 1pt solid black;
}
#accordionFlushAgenda .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='black' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  padding-top: 8px;
  background-position: center;
  content: "";
  margin-left: auto;
  width: 1rem;
  height: 1rem;
}
#accordionFlushAgenda .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
#accordionFlushAgenda .accordion-button  {
  padding: 8px 0px;
}
.accordion-button.collapsed::after {
    filter: brightness(0) invert(0);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(0);
}
.grid-obras-artistas div.absolute {
  top: 20px;
  left: 20px;
  width: auto;
  z-index: 9;
}
footer .chancela img {
  max-height: 100px;
  margin-bottom: 40px;
}
footer .chancela img:last-child {
  max-height: 120px;
}
footer img.mb3 {
  width: 250px;
}
footer {
  font-size: 28px;
}
footer a {
  transition: transform ease 0.5s;
}
footer a:hover {
  transform: translateX(-6px);
}



.newsletterform{
  float:left;
  position:relative;
  text-transform: uppercase;
}
.newsletterform p, .newsletterform span, .newsletterform strong{
  font-size:20px;
  margin-top:10px
}
.newsletterform label{
  float:left;
  position:relative;
  width:100%;
  text-transform: uppercase;
  color: black;
}
.newsletterform input[type="email"], .newsletterform input[type="text"] {
  border-radius: 0;
  border:0;
  border-bottom-color:currentcolor;
  border-bottom-style:none;
  border-bottom-width:0px;
  border-bottom:2px solid #1A1A1A;
  background-color:transparent;
  padding:5px 0;
  outline:0;
  font-weight:normal;
  font-size:1.8vw;
  line-height:140%;
  color:#1A1A1A;
  float:left;
  position:relative;
  width:100%;
  text-transform: uppercase;
}
::placeholder {
  color: black;
}
.newsletterform input[type="submit"] {
  position:absolute;
  color: transparent;
  font-size: 1px;
  font-family:"Everett", sans-serif;
  background-repeat:no-repeat;
  background-position:center;
  background-image:url("/wp-content/themes/play25/assets/seta.svg");
  outline:0;
  right:0;
  top:40%;
  margin-top:-18px;
  width:38px;
  height:30px;
  border:0;
  background-color:transparent
}
.wpcf7-response-output {
  display: none;
}



@media (min-width: 1600px) {
  h2, #accordionPanelsStayOpenArtistas .accordion-button {
    font-size: 120px;
  }
  h3, h3 p {
    font-size: 40px;
  }
  p {
    font-size: 22px;
  }
  small, small p {
    font-size: 18px;
  }
  footer {
    font-size: 38px;
  }
  .titulo-obra {
    height: 110px;
  }
}

@media (max-width: 1360px) {
  header a {
    font-size: 20px;
  }
  footer {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  header a {
    font-size: 16px;
  }
  .w-100-lg {
    width: 100%!important;
  }
}
@media (max-width: 1024px) {
  header a {
    display: none;
  }
  header p {
    display: block;
  }
  .w-100-md {
    width: 100%!important;
  }
  h2 {
    font-size: 64px;
  }
  .carousel.obras .carousel-cell, .carousel.oficinas .carousel-cell {
    height: 62vw;
  }
  .carousel.obras .carousel-cell img, .carousel.oficinas .carousel-cell img {
    height: calc(62vw - 80px)
  }
  footer div.tr {
    text-align: left;
  }
  footer div.w-30 {
    margin-bottom: 32px;
    width: 100%!important;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 18px;
  }
  .mobi-show {
    display: block;
  }
  .mobi-none {
    display: none;
  }
  .w-100-sm {
    width: 100%!important;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .container-play {
    padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size: 48px;
    line-height: 0.9;
  }
  h3, h3 p {
    font-size: 24px;
    margin-bottom: 0px;
    line-height: 1;
  }
  h4, h4 p {
    font-size: 32px;
    margin-bottom: 0px;
    line-height: 1;
  }
  p {
    font-size: 15px;
    line-height: 1.25;
  }
  small, small p {
    font-size: 12px;
  }
  .bloco {
    aspect-ratio: 1/1;
  }

  .carousel.obras, .carousel.oficinas {
    padding-left: 20px;
  }

  .flickity-prev-next-button.previous {
    left: 20px;
  }
  .flickity-prev-next-button.next {
    right: 16px;
  }
  .carousel.artistas .flickity-prev-next-button.previous {
    left: auto;
    right: 50px;
  }
  .flickity-prev-next-button {
    background-size: 21px 17px;
    top: -54px;
    width: 40px;
    height: 40px;
  }
  .flickity-button:hover {
    background-size: 21px 17px;
    top: -54px;
    width: 40px;
    height: 40px;
  }

  .menu {
    padding: 20px;
  }
  .menu img {
    width: 100px;
  }
  footer img.w-80 {
    width: 80%;
  }
  .bloco .bg-amarelo h4 {
    font-size: 24px;
    width: 50%;
    right: 20px;
  }
  #exposicao.pv5 {
    padding-bottom: 80px;
  }
  #exposicao div.mt6 {
    margin-top: 40px;
  }
  .carousel.obras.mb5 {
    margin-bottom: 40px;
  }
  #accordionPanelsStayOpenArtistas .accordion-button::after {
    background-size: 1.25rem;
    margin-top: 0px;
    background-position: 4.5px 6px;
    width: 2rem;
    height: 2rem;
    border: 1pt solid black;
  }
  #accordionPanelsStayOpenArtistas .accordion-button {
    font-size: 32px;
  }
  .carousel.artistas .carousel-cell {
    width: 80vw;
  }
  .hero h3 {
    margin-top: 24px;
  }
  .intro h3 p {
    font-size: 20px;
  }
  .intro h3.mt5 {
    margin-top: 24px;
  }
  .words h2, #ed2022 h2 {
    font-size: 36px;
  }
  #playlab h2 {
    margin-bottom: 24px;
  }
  .titulo-obra {
    height: 72px;
  }
  .f4.f5-sm {
    font-size: 16px;
  }
  .newsletterform input[type="email"], .newsletterform input[type="text"]{
    font-size:20px;
  }
  .newsletterform input[type="submit"]{
    width:20px;
    background-size:100%;
  }
}


.js-flickity { visibility: hidden; }
.js-flickity.is-initialized { visibility: visible; }
