@font-face {
  font-family: "Canal Brasil VF";
  src: url("../fonts/CanalBrasilVF.woff2") format("woff2"), url("../fonts/CanalBrasilVF.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Grotesk";
  src: url("../fonts/SharpGroteskLight.woff2") format("woff2"), url("../fonts/SharpGroteskLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Grotesk";
  src: url("../fonts/SharpGroteskBook.woff2") format("woff2"), url("../fonts/SharpGroteskBook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Grotesk";
  src: url("../fonts/SharpGroteskMedium.woff2") format("woff2"), url("../fonts/SharpGroteskMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Grotesk";
  src: url("../fonts/SharpGroteskSmBold.woff2") format("woff2"), url("../fonts/SharpGroteskSmBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Grotesk";
  src: url("../fonts/SharpGroteskBold.woff2") format("woff2"), url("../fonts/SharpGroteskBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(248, 249, 247);
  background: rgb(0, 80, 150);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

::selection {
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: relative;
}

.header-bar-top {
  background: rgb(0, 225, 190);
  padding: 6px 0;
}
.header-bar-top__inner {
  display: flex;
  align-items: center;
  gap: 120px;
  color: rgb(0, 0, 0);
}
@media (max-width: 1100px) {
  .header-bar-top__inner {
    gap: 48px;
  }
}
@media (min-width: 1200px) {
  .header-bar-top__inner {
    justify-content: center;
  }
}
.header-bar-top .top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  padding: 6px 0;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 1200px) {
  .header-bar-top .top-link {
    font-size: 17px;
  }
}
.header-bar-top .top-link:hover {
  opacity: 0.7;
}
.header-bar-top .top-link img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%);
}
.header-bar-top .top-doc-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.header-bar-top .top-doc-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%);
}
.header-bar-top .top-doc-logo:hover {
  opacity: 0.7;
}
@media (max-width: 760px) {
  .header-bar-top {
    display: none;
  }
}

.header-bar-main {
  background: rgb(0, 0, 0);
  padding: 18px 0 36px;
}
@media (max-width: 760px) {
  .header-bar-main {
    padding: 14px 0 20px;
  }
}
.header-bar-main__nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1100px) {
  .header-bar-main__nav {
    gap: 16px;
  }
}
@media (max-width: 760px) {
  .header-bar-main__nav {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    padding-bottom: 0;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 70px;
  width: auto;
}
@media (max-width: 1100px) {
  .header-logo img {
    height: 54px;
  }
}
@media (max-width: 760px) {
  .header-logo img {
    height: 44px;
  }
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .main-nav {
    justify-content: center;
  }
}
.main-nav a {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: rgb(248, 249, 247);
  padding: 6px 0;
  border: 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover {
  color: rgb(0, 225, 190);
}
.main-nav a.is-active, .main-nav a.current-menu-item > .main-nav a, .current-menu-item > .main-nav a {
  color: rgb(0, 225, 190);
  border-bottom-color: rgb(0, 225, 190);
}
@media (min-width: 1200px) {
  .main-nav a {
    font-size: 17px;
  }
}
@media (max-width: 1100px) {
  .main-nav a {
    font-size: 17px;
  }
}
@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgb(0, 0, 0);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav a {
    font-size: 22px;
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1023px) and (max-width: 500px) {
  .main-nav a {
    white-space: nowrap;
    font-size: 20px;
  }
}
@media (max-width: 1023px) and (max-width: 359px) {
  .main-nav a {
    font-size: 18px;
  }
}

.header-search,
.menu-toggle {
  width: 40px;
  height: 40px;
  color: rgb(248, 249, 247);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
@media (max-width: 760px) {
  .header-search,
  .menu-toggle {
    width: 32px;
    height: 32px;
  }
}

.header-search {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  appearance: none;
}
.header-search:hover {
  color: rgb(0, 225, 190);
}
.header-search svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 760px) {
  .header-search {
    justify-self: end;
  }
}

.search-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.search-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0, 225, 190);
  opacity: 0.92;
  z-index: 0;
}
.search-box .container {
  position: relative;
  z-index: 1;
  padding: 28px 0 32px;
}
.search-box .search {
  margin: 0 auto;
  max-width: 590px;
  position: relative;
  z-index: 1;
}
.search-box .search-field {
  position: relative;
}
.search-box .search-field::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("../images/icon-search.svg") center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  pointer-events: none;
}
.search-box .search-input {
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255);
  background: transparent;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  text-transform: none;
  color: rgb(255, 255, 255);
  padding: 8px 40px 8px 4px;
  outline: none;
  transition: border-color 0.2s ease;
}
.search-box .search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.search-box .search-input:focus {
  border-bottom-color: rgb(0, 80, 150);
}
.search-box.active {
  max-height: 160px;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

.menu-toggle {
  display: none;
}
@media (max-width: 1023px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .menu-toggle.is-open {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 70;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 56px;
  }
}

.brand-wordmark {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
}
.brand-wordmark img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cb-S {
  font-feature-settings: "salt" on, "ss01" on;
}

.cb-display {
  font-family: "Canal Brasil VF", "Bowlby One", "Anton", sans-serif;
  font-weight: 900;
  font-stretch: 110%;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
}

.sec-network {
  background: rgb(0, 225, 190);
  padding: 40px 0;
}
.sec-network__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 900px) {
  .sec-network__row {
    gap: 24px;
  }
}
.sec-network__title-img {
  height: auto;
  max-width: 100%;
}
.sec-network__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sec-network__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.sec-network__list a:hover {
  opacity: 0.7;
}
.sec-network__list .network-globoplay {
  height: auto;
  width: auto;
  max-height: 34px;
  display: block;
}
.sec-network__list .network-icon {
  height: auto;
  width: auto;
  max-height: 37px;
  display: block;
}
@media (max-width: 900px) {
  .sec-network__list {
    gap: 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .sec-network__list {
    gap: 15px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .sec-network__list a {
    flex: 0 0 auto;
  }
  .sec-network__list a:first-child {
    flex: 0 1 auto;
    min-width: 0;
  }
  .sec-network__list .network-globoplay {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 34px;
    display: block;
    object-fit: contain;
    object-position: left center;
  }
  .sec-network__list .network-icon {
    width: 30px;
    height: auto;
    max-height: none;
    display: block;
  }
}
@media (max-width: 374px) {
  .sec-network__list a:first-child {
    max-width: max(120px, 100% - 180px);
  }
}
.footer-main {
  background: rgb(0, 0, 0);
  padding: 120px 0;
}
@media (max-width: 1023px) {
  .footer-main {
    padding: 40px 0;
  }
}
.footer-main__inner {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 62px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-logo {
  width: 98px;
  height: auto;
  display: block;
}

.footer-col {
  margin: 0;
}
.footer-col__title {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 2px;
  color: rgb(248, 249, 247);
  opacity: 0.5;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-col a {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  color: rgb(248, 249, 247);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgb(0, 225, 190);
}

.sec-newsletter {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.sec-newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 0;
}
.sec-newsletter__title-img {
  display: block;
  height: auto;
  width: 345px;
  max-width: 100%;
}
.sec-newsletter .wpcf7 p {
  margin: 0;
}
.sec-newsletter .newsletter-form__row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 900px) {
  .sec-newsletter .newsletter-form__row {
    flex-direction: column;
    align-items: stretch;
  }
}
.sec-newsletter .newsletter-form__fields {
  display: flex;
  gap: 12px;
  flex: 1;
  padding-left: 6px;
  min-width: 0;
}
@media (max-width: 900px) {
  .sec-newsletter .newsletter-form__fields {
    flex-direction: column;
  }
}
.sec-newsletter .newsletter-form__fields .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  flex: 1;
  min-width: 0;
}
.sec-newsletter .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 6px;
  z-index: 5;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.sec-newsletter .newsletter-form__fields input.input.-style1 {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 6px 4px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 13px;
  background: transparent;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.2s ease;
}
.sec-newsletter .newsletter-form__fields input.input.-style1::placeholder {
  color: rgb(0, 0, 0);
  opacity: 1;
}
.sec-newsletter .newsletter-form__fields input.input.-style1:focus {
  border-color: rgb(0, 225, 190);
}
.sec-newsletter input.btn-newsletter.wpcf7-submit {
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
  min-height: 48px;
  padding: 8px 12px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sec-newsletter input.btn-newsletter.wpcf7-submit:hover {
  background: #56c1ae;
}
.sec-newsletter .wpcf7-spinner {
  display: none;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-form__row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 900px) {
  .newsletter-form__row {
    flex-direction: column;
    align-items: stretch;
  }
}
.newsletter-form__fields {
  display: flex;
  gap: 12px;
  flex: 1;
  padding-left: 6px;
}
@media (max-width: 900px) {
  .newsletter-form__fields {
    flex-direction: column;
  }
}
.newsletter-form input {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 6px 4px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 13px;
  background: transparent;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.2s ease;
}
.newsletter-form input::placeholder {
  color: rgb(0, 0, 0);
  opacity: 1;
}
.newsletter-form input:focus {
  border-color: rgb(0, 225, 190);
}
.newsletter-form button {
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
  min-height: 48px;
  padding: 8px 12px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.newsletter-form button:hover {
  background: #56c1ae;
}
.newsletter-form .ok-msg {
  color: rgb(0, 80, 150);
  font-size: 13px;
  min-height: 18px;
  margin: 0;
}

.section-title {
  font-family: "Canal Brasil VF", "Bowlby One", "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  color: rgb(255, 255, 255);
  text-transform: none;
  margin: 0;
  letter-spacing: 0;
}

.section-meta {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: rgb(248, 249, 247);
}
.section-meta strong {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
}

@media (max-width: 359px) {
  .section-meta {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media (min-width: 360px) and (max-width: 425px) {
  .section-meta {
    font-size: 17px;
    line-height: 1.35;
  }
}
.card-thumb {
  position: relative;
  aspect-ratio: 289/194;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 225, 190, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.card-thumb .play-overlay {
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.card-thumb:hover::before {
  opacity: 1;
}
.card-thumb:hover .play-overlay {
  opacity: 1;
}
.card-thumb:hover .play-overlay svg {
  transform: scale(1.15);
}

.badge-inedito {
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 0 0 4px 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.play-overlay svg {
  width: 56px;
  height: 56px;
  color: rgb(255, 255, 255);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
}

.card-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.card-time .date {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: rgb(248, 249, 247);
}
.card-time .pill {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgb(0, 225, 190);
  padding: 6px 14px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: rgb(248, 249, 247);
  line-height: 1;
}

.btn-primary {
  align-self: flex-start;
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
  padding: 14px 28px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, background 0.2s;
}
.btn-primary:hover {
  background: #56c1ae;
  transform: translateY(-1px);
}

.day-tabs {
  display: flex;
  gap: 13px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.day-tabs button {
  border: 1px solid rgb(0, 225, 190);
  color: rgb(0, 225, 190);
  padding: 8px 14px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.day-tabs button.is-active, .day-tabs button:hover {
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
}

.page-head {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.page-head__title-img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
.page-head__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.page-head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.page-head__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}
.page-head__meta-row .section-meta {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 17px;
  color: rgb(248, 249, 247);
  margin: 0;
}
@media (max-width: 900px) {
  .page-head__meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .page-head {
    grid-template-columns: 1fr;
  }
}

.week-picker {
  position: relative;
  background: rgb(248, 249, 247);
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-width: 280px;
  cursor: pointer;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 17px;
  color: rgb(0, 80, 150);
  user-select: none;
}
@media (max-width: 600px) {
  .week-picker {
    min-width: 0;
    width: 100%;
  }
}
.week-picker__current {
  flex: 1;
}
.week-picker__caret {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: rgb(0, 80, 150);
  transition: transform 0.2s ease;
}
.week-picker.is-open .week-picker__caret {
  transform: rotate(180deg);
}
.week-picker.is-open .week-picker__menu {
  display: block;
}
.week-picker__menu {
  position: absolute;
  inset: 100% 0 auto 0;
  margin-top: 6px;
  background: rgb(248, 249, 247);
  border: 1px solid rgb(0, 80, 150);
  z-index: 10;
  display: none;
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.week-picker__menu li {
  list-style: none;
  padding: 14px 16px;
  cursor: pointer;
  border-top: 1px solid rgba(0, 80, 150, 0.15);
  transition: background 0.15s ease;
}
.week-picker__menu li:first-child {
  border-top: 0;
}
.week-picker__menu li:hover, .week-picker__menu li.is-active {
  background: rgba(0, 225, 190, 0.2);
}
.week-picker__menu li a {
  display: block;
  color: rgb(0, 80, 150);
  text-decoration: none;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 17px;
}

@media (max-width: 599px) {
  .week-picker {
    align-items: center;
    padding-right: 34px;
  }
  .week-picker__current {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
    align-items: flex-start;
    width: 100%;
  }
  .week-picker__caret {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  .week-picker.is-open .week-picker__caret {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (max-width: 500px) {
  .week-picker {
    height: auto;
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
  }
  .week-picker__current {
    line-height: 1.15;
    padding-right: 0;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 48px 0 24px;
}
.hero-row.is-sobre .section-meta {
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
}
.hero-row .section-title {
  font-size: clamp(36px, 4.2vw, 52px);
}
.hero-row .section-title .hide-text {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
.hero-row .section-title .section-title-img__inner {
  display: inline-block;
  vertical-align: bottom;
  line-height: 0;
}
.hero-row .section-meta {
  text-align: left;
}
@media (max-width: 600px) {
  .hero-row {
    grid-template-columns: 1fr;
    padding: 32px 0 16px;
  }
  .hero-row .section-meta {
    text-align: left;
  }
}

.feature-card {
  border-radius: 24px;
  background: rgb(0, 225, 190);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .feature-card {
    grid-template-columns: 1fr;
  }
}
.feature-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 632/357;
  cursor: pointer;
}
.feature-card__media .play-overlay svg {
  width: 80px;
  height: 80px;
  color: rgb(255, 255, 255);
}
.feature-card__media--embed {
  cursor: default;
  background: rgba(0, 0, 0, 0.2);
}
.feature-card__media--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.feature-card__body {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
.feature-card__body:hover .feature-card__title {
  opacity: 0.85;
}
.feature-card__title {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 3.6vw, 48px);
  line-height: 1.1;
  color: rgb(0, 80, 150);
  margin: 0;
  letter-spacing: 0;
}
.feature-card__desc {
  margin: 16px 0 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: rgb(0, 80, 150);
}
@media (max-width: 359px) {
  .feature-card__title {
    font-size: 26px;
    line-height: 1.12;
  }
}
@media (min-width: 360px) and (max-width: 425px) {
  .feature-card__title {
    font-size: 30px;
    line-height: 1.12;
  }
}
@media (max-width: 600px) {
  .feature-card__body {
    padding-left: 0;
    padding-right: 0;
  }
}
.feature-card .card-time {
  padding-top: 30px;
  justify-content: center;
}
.feature-card .card-time .date {
  color: rgb(0, 80, 150);
  font-size: 14px;
}
.feature-card .card-time .pill {
  border-color: rgb(0, 80, 150);
  color: rgb(0, 80, 150);
  border-radius: 0;
  padding: 8px 18px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .feature-card__body {
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .feature-card__body > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1100px) {
  .dual-cards {
    grid-template-columns: 1fr;
  }
}

.dual-card {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 22px;
  align-items: start;
}
.dual-card .card-thumb {
  aspect-ratio: 264/183;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.3);
}
.dual-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}
.dual-card__content:hover h3 {
  color: rgb(0, 225, 190);
}
.dual-card__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dual-card h3 {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  letter-spacing: 0;
}
.dual-card p {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(248, 249, 247);
}
.dual-card .card-time {
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .dual-card {
    grid-template-columns: 1fr;
  }
}

.cards-row {
  position: relative;
  margin-top: 32px;
}
.cards-row__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px 0;
}
.cards-row__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.cards-row__head .section-meta {
  text-align: left;
}
@media (max-width: 600px) {
  .cards-row__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }
  .cards-row__head > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cards-row__head .section-meta {
    margin: 0;
  }
  .cards-row__head .week-picker {
    width: 100%;
  }
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.filmes-swiper,
.programas-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.filmes-swiper .swiper-slide,
.programas-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.filmes-swiper .tile,
.programas-swiper .tile {
  height: 100%;
}
.filmes-swiper .tile:hover h3,
.programas-swiper .tile:hover h3 {
  color: rgb(0, 225, 190);
}
.filmes-swiper .swiper-button-prev,
.filmes-swiper .swiper-button-next,
.programas-swiper .swiper-button-prev,
.programas-swiper .swiper-button-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  bottom: auto;
  margin: 0;
  width: 52px;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}
.filmes-swiper .swiper-button-prev::after,
.filmes-swiper .swiper-button-next::after,
.programas-swiper .swiper-button-prev::after,
.programas-swiper .swiper-button-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M10 7l6 6-6 6'/%3E%3C/svg%3E");
}
.filmes-swiper .swiper-button-prev:hover,
.filmes-swiper .swiper-button-next:hover,
.programas-swiper .swiper-button-prev:hover,
.programas-swiper .swiper-button-next:hover {
  opacity: 0.92;
}
.filmes-swiper .swiper-button-prev,
.programas-swiper .swiper-button-prev {
  left: 0;
  background: linear-gradient(to right, rgba(0, 80, 150, 0.5) 0%, rgba(0, 80, 150, 0.12) 55%, transparent 100%);
}
.filmes-swiper .swiper-button-prev::after,
.programas-swiper .swiper-button-prev::after {
  transform: scaleX(-1);
}
.filmes-swiper .swiper-button-next,
.programas-swiper .swiper-button-next {
  right: 0;
  background: linear-gradient(to left, rgba(0, 80, 150, 0.5) 0%, rgba(0, 80, 150, 0.12) 55%, transparent 100%);
}
.filmes-swiper .swiper-button-disabled,
.programas-swiper .swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 600px) {
  .filmes-swiper .swiper-button-prev,
  .filmes-swiper .swiper-button-next,
  .programas-swiper .swiper-button-prev,
  .programas-swiper .swiper-button-next {
    width: 40px;
    height: 56px;
  }
  .filmes-swiper .swiper-button-prev::after,
  .filmes-swiper .swiper-button-next::after,
  .programas-swiper .swiper-button-prev::after,
  .programas-swiper .swiper-button-next::after {
    background-size: 18px 18px;
  }
}

.tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
}
.tile .card-thumb {
  margin-bottom: 16px;
}
.tile__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}
.tile__content .card-time {
  margin-top: auto;
  padding-top: 20px;
}
.tile__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tile h3 {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: rgb(255, 255, 255);
  letter-spacing: 0;
  transition: color 0.2s ease;
}
.tile.tile--white h3 {
  color: rgb(255, 255, 255);
}
.tile__content:hover h3 {
  color: rgb(0, 225, 190);
}
.tile p {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(248, 249, 247);
}

.page-body--filmes .page-head__title-img {
  width: 251px;
  height: 36px;
}

.page-body--programas .page-head__title-img {
  height: 48px;
  width: auto;
}

.list-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.list-card {
  display: grid;
  grid-template-columns: 361px 1fr;
  gap: 12px;
  align-items: start;
}
.list-card .card-thumb {
  aspect-ratio: 361/242;
  border-radius: 20px;
}
.list-card .badge-inedito {
  border-radius: 0 0 5px 0;
  padding: 5px 10px;
  font-size: 17px;
  text-transform: uppercase;
}
.list-card .play-overlay svg {
  width: 64px;
  height: 64px;
  color: rgb(255, 255, 255);
}
.list-card__body {
  padding-top: 8px;
}
.list-card h3 {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.list-card h3 a {
  color: inherit;
  transition: color 0.2s ease;
}
.list-card h3 a:hover {
  color: rgb(0, 225, 190);
}
.list-card:hover h3 {
  color: rgb(0, 225, 190);
}
.list-card .card-time {
  margin-top: 16px;
}
@media (max-width: 900px) {
  .list-card {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .list-card {
    width: 65%;
    margin-bottom: 45px;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.video-card .card-thumb {
  aspect-ratio: 16/9;
  border-radius: 0 !important;
}
.video-card h3 {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  letter-spacing: -0.005em;
}
.video-card p {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: rgb(248, 249, 247);
}
.video-card .play-overlay svg {
  width: 60px;
  height: 60px;
  color: rgb(0, 225, 190);
  border-radius: 50%;
  padding: 6px;
}
.video-card.is-active h3, .video-card:hover h3 {
  color: rgb(0, 225, 190);
}
.video-card.is-active p, .video-card:hover p {
  color: rgb(0, 225, 190);
}
.video-card.is-active .card-thumb, .video-card:hover .card-thumb {
  outline: 2px solid rgb(0, 225, 190);
  outline-offset: 2px;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-areas: "side-head main-head" "side-nav  main-body";
  column-gap: 80px;
  row-gap: 24px;
  padding-top: 48px;
  align-items: start;
}
.sobre-layout .sobre-hero__title {
  grid-area: side-head;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 52px);
  align-self: end;
}
.sobre-layout .sobre-hero__title .hide-text {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
.sobre-layout .sobre-hero__title .section-title-img__inner {
  display: inline-block;
  vertical-align: bottom;
  line-height: 0;
}
.sobre-layout .sobre-hero__meta {
  grid-area: main-head;
  margin: 0;
  text-align: left;
  align-self: end;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.sobre-layout .sobre-toc {
  grid-area: side-nav;
}
.sobre-layout .sobre-content {
  grid-area: main-body;
}
@media (max-width: 900px) {
  .sobre-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "side-head" "main-head" "side-nav" "main-body";
    gap: 20px;
    padding-top: 32px;
  }
  .sobre-layout .sobre-hero__title,
  .sobre-layout .sobre-hero__meta {
    align-self: start;
  }
}
@media (max-width: 900px) {
  .sobre-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "side-head" "main-head" "main-body";
  }
}
@media (max-width: 600px) {
  .sobre-layout {
    padding-top: 32px;
  }
}

.sobre-toc {
  position: sticky;
  top: 32px;
  align-self: start;
  border-left: 4px solid rgba(0, 225, 190, 0.2);
  padding-left: 12px;
  position: relative;
}
.sobre-toc::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 26px;
  background: rgb(0, 225, 190);
  transition: transform 0.25s ease;
}
.sobre-toc a {
  display: block;
  padding: 6px 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 15px;
  color: rgb(248, 249, 247);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s, padding 0.2s;
}
.sobre-toc a.is-active, .sobre-toc a:hover {
  opacity: 1;
  color: rgb(0, 225, 190);
}
@media (max-width: 900px) {
  .sobre-toc {
    position: relative;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-left: 0;
    padding-left: 0;
  }
  .sobre-toc::before {
    display: none;
  }
  .sobre-toc a {
    padding: 8px 14px;
    border: 1px solid rgba(0, 225, 190, 0.4);
    border-radius: 4px;
    opacity: 1;
  }
  .sobre-toc a.is-active {
    background: rgb(0, 225, 190);
    color: rgb(0, 80, 150);
  }
}
@media (max-width: 900px) {
  .sobre-toc {
    display: none;
  }
}

.sobre-content {
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sobre-section h2 {
  margin: 0 0 8px;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: rgb(0, 225, 190);
}
.sobre-section p {
  margin: 0 0 1em;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}

.page-body--doc-canal-brasil .container {
  max-width: 1136px;
}

.doc-layout {
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 901px) {
  .doc-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .doc-layout {
    padding-top: 32px;
  }
}

.doc-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 901px) {
  .doc-content {
    grid-column: 3/span 8;
    gap: 30px;
  }
}
.doc-content > * {
  margin-top: 0;
  margin-bottom: 0;
}
.doc-content h2 {
  margin: 0;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: rgb(0, 225, 190);
}
.doc-content p {
  margin: 0;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px 0 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contato-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.col-contato-form .section-title {
  font-size: clamp(36px, 4.2vw, 52px);
  margin-bottom: 20px;
}
.col-contato-form .section-title .hide-text {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
.col-contato-form .section-title .section-title-img__inner {
  display: inline-block;
  vertical-align: top;
  line-height: 0;
}
.col-contato-form .section-meta {
  text-align: left;
}
@media (max-width: 600px) {
  .col-contato-form .section-meta {
    text-align: left;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form > p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 6px;
  z-index: 5;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.contact-form input:not([type=submit]):not([type=button]),
.contact-form textarea,
.contact-form select {
  appearance: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgb(248, 249, 247);
  background: transparent;
  color: rgb(248, 249, 247);
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  padding: 8px 4px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
}
.contact-form input:not([type=submit]):not([type=button])::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
  color: rgb(248, 249, 247);
  opacity: 0.9;
}
.contact-form input:not([type=submit]):not([type=button]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgb(0, 225, 190);
}
.contact-form select {
  cursor: pointer;
  accent-color: rgb(0, 80, 150);
  color-scheme: light;
}
.contact-form select option {
  color: rgb(0, 80, 150);
  background-color: rgb(255, 255, 255);
}
.contact-form select option:hover,
.contact-form select option:focus,
.contact-form select option:focus-visible {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 80, 150);
}
.contact-form select option:checked,
.contact-form select option[selected] {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 80, 150);
  font-weight: 600;
}
.contact-form textarea {
  border: 1px solid rgb(248, 249, 247);
  min-height: 140px;
  resize: vertical;
  padding: 14px;
}
.contact-form .row-2 {
  display: grid;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 80fr) minmax(0, 18fr);
  gap: clamp(12px, 2%, 20px);
  align-items: end;
}
.contact-form .row-2 .wpcf7-form-control-wrap {
  min-width: 0;
}
@media (max-width: 900px) {
  .contact-form .row-2 {
    grid-template-columns: 1fr;
  }
}
.contact-form button,
.contact-form input[type=submit] {
  align-self: flex-start;
  width: auto;
  max-width: none;
  border: 0;
  cursor: pointer;
  background: rgb(0, 225, 190);
  color: rgb(0, 80, 150);
  padding: 10px 28px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.contact-form button:hover,
.contact-form input[type=submit]:hover {
  background: #56c1ae;
  transform: translateY(-1px);
}
.contact-form .form-msg {
  color: rgb(0, 225, 190);
  min-height: 18px;
  font-size: 14px;
}

.contact-card {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 40px 36px;
  border-radius: 4px;
}
.contact-card .contact-title-img {
  margin-bottom: 35px;
}
.contact-card .palavra-mark {
  font-family: "Canal Brasil VF", "Bowlby One", "Anton", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: #56c1ae;
  margin: 0 0 4px;
  font-style: italic;
}
.contact-card .palavra-tag {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #56c1ae;
  margin: 0 0 24px;
}
.contact-card h2 {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  color: rgb(0, 0, 0);
}
.contact-card .url {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin: 0;
}
.contact-card hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 20px 0;
}
.contact-card h3 {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgb(0, 0, 0);
  margin: 0 0 4px;
}
.contact-card .role-list {
  margin: 0 0 18px;
  line-height: 1.5;
}
.contact-card .role-list .name {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: rgb(0, 0, 0);
}

.role-list-divisor {
  width: 100px;
  height: 1px;
  background-color: #000;
  margin-bottom: 30px;
}

@media (min-width: 901px) {
  .single-post .container,
  .single-programas-series .container {
    max-width: 1150px;
  }
}

.single-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }
}

.single-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/11;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.single-main h1 {
  margin: 24px 0 4px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.05;
  color: rgb(255, 255, 255);
  letter-spacing: -0.01em;
}

@media (min-width: 901px) {
  .single-post .single-main h1,
  .single-programas-series .single-main h1 {
    font-size: 40px;
  }
}

.single-film-meta {
  margin: 0 0 20px;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}
.single-film-meta__sep {
  color: rgb(0, 225, 190);
}

.single-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
  padding-top: 0;
}
.single-meta p {
  margin: 0;
  font-family: "Open Sans";
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: 400;
}
.single-meta strong {
  font-family: "Open Sans";
  font-weight: 600;
}

.single-synopsis {
  margin: 0 0 0;
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 1.6;
  color: rgb(248, 249, 247);
}
.single-synopsis strong {
  color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .single-synopsis {
    margin-bottom: 30px;
  }
}

.single-programas-series .single-synopsis {
  margin-top: 30px;
}

.single-credits {
  margin: 0;
}
.single-credits__divider {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
.single-credits__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0;
  padding: 14px 0;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}
.single-credits__label {
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.single-credits__value {
  font-weight: 400;
  color: rgb(0, 225, 190);
}

.single-actions {
  display: flex;
  gap: 14px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 0;
}
@media (min-width: 768px) {
  .single-actions {
    align-items: center;
  }
}
.single-actions svg {
  width: 32px;
  height: 32px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: color 0.2s;
}
.single-actions svg:hover {
  color: rgb(0, 225, 190);
}

.single-related {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.related-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  transform: translateX(4px);
}
.related-card .card-thumb {
  aspect-ratio: 110/70;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.related-card h4 {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  letter-spacing: -0.005em;
}
.related-card p {
  margin: 4px 0 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgb(248, 249, 247);
}

.single-download__inner {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
}

.single-download__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  color: rgb(248, 249, 247);
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.single-download__btn:hover, .single-download__btn:focus-visible {
  opacity: 1;
}
.single-download__btn:focus-visible {
  outline: 2px solid rgb(0, 225, 190);
  outline-offset: 2px;
}

.single-download__icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.single-download__icon:first-child {
  margin-right: 20px;
}

.destaques-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 48px;
}

.destaques-link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: rgb(0, 225, 190);
  border-radius: 24px;
  padding: 22px 28px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  text-decoration: none;
}
.destaques-link:hover {
  transform: translateY(-2px);
  background: #56c1ae;
}
.destaques-link .pdf-icon {
  width: 40px;
  height: 40px;
  color: rgb(0, 80, 150);
  flex-shrink: 0;
}
.destaques-link__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.destaques-link .name {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: rgb(0, 80, 150);
}
.destaques-link .desc {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: rgb(0, 80, 150);
  opacity: 0.7;
}
.destaques-link .action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(0, 80, 150);
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.destaques-link .action:hover {
  opacity: 0.7;
}
.destaques-link .action svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .destaques-link {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .destaques-link .action {
    grid-column: 2;
  }
}

.page-body--premio-curtas .container {
  max-width: 1136px;
}

.premio-curtas-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: start;
}
@media (min-width: 901px) {
  .premio-curtas-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 0;
  }
}
@media (max-width: 600px) {
  .premio-curtas-layout {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 900px) {
  .premio-curtas-media {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 901px) {
  .premio-curtas-media {
    grid-column: 1/span 4;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.premio-curtas-media__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 901px) {
  .premio-curtas-media__img {
    padding-top: 6px;
  }
}
@media (max-width: 900px) {
  .premio-curtas-media__img {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.premio-curtas-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}
@media (min-width: 901px) {
  .premio-curtas-content {
    grid-column: 5/span 6;
    gap: 30px;
  }
}
.premio-curtas-content > * {
  margin-top: 0;
  margin-bottom: 0;
}
.premio-curtas-content p,
.premio-curtas-content li,
.premio-curtas-content a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.premio-curtas-content > p:first-of-type,
.premio-curtas-content > .wp-block-paragraph:first-of-type p {
  line-height: 1.35 !important;
}
.premio-curtas-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.premio-curtas-content a:hover {
  color: rgb(0, 225, 190);
}
.premio-curtas-content .wp-block-heading {
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}
.premio-curtas-content strong,
.premio-curtas-content b {
  font-weight: 700;
}

.post-type-archive-premio .page-body .list-cards {
  margin-top: 32px;
  width: 100%;
}
@media (min-width: 1024px) {
  .post-type-archive-premio .page-body .list-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 10px;
    align-items: start;
  }
}
.post-type-archive-premio .page-body .list-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .post-type-archive-premio .page-body .list-card {
    width: 47%;
    margin-bottom: 45px;
  }
}

.page-body .error-layout,
.page-body .search-layout {
  padding: 80px 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.page-body .error-layout h1 {
  font-family: "Canal Brasil VF", "Bowlby One", "Anton", sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9;
  margin: 0;
  color: rgb(0, 225, 190);
  text-transform: uppercase;
}
.page-body .error-layout p {
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 22px;
  color: rgb(248, 249, 247);
  margin: 0 0 16px;
}
.page-body .search-layout input[type=search] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgb(0, 225, 190);
  color: rgb(255, 255, 255);
  padding: 18px 0;
  font-family: "Canal Brasil VF", "Bowlby One", "Anton", sans-serif;
  font-size: 48px;
  outline: none;
}
.page-body .search-layout .search-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .page-body .search-layout .search-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 24px;
  }
}
.page-body .search-layout .search-result {
  display: grid;
  grid-template-columns: minmax(120px, 42%) 1fr;
  column-gap: 24px;
  align-items: stretch;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .page-body .search-layout .search-result {
    grid-template-columns: minmax(100px, 38%) 1fr;
    column-gap: 16px;
  }
}
@media (max-width: 600px) {
  .page-body .search-layout .search-result {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}
@media (min-width: 1024px) {
  .page-body .search-layout .search-result {
    grid-template-columns: minmax(140px, 40%) 1fr;
    column-gap: 20px;
  }
}
.page-body .search-layout .search-result .search-result__thumb {
  display: block;
  align-self: stretch;
  min-height: 120px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
}
.page-body .search-layout .search-result .card-thumb {
  height: 100%;
  min-height: 120px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.page-body .search-layout .search-result .search-result__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 100%;
}
.page-body .search-layout .search-result .search-result__main {
  flex: 1 1 auto;
}
.page-body .search-layout .search-result .search-result__title {
  margin: 0;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(0, 225, 190);
}
.page-body .search-layout .search-result .search-result__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.page-body .search-layout .search-result .search-result__title a:hover, .page-body .search-layout .search-result .search-result__title a:focus-visible {
  opacity: 0.85;
}
.page-body .search-layout .search-result .search-result__title a:focus-visible {
  outline: 2px solid rgb(0, 225, 190);
  outline-offset: 2px;
}
.page-body .search-layout .search-result .search-result__schedule {
  margin-top: 10px;
}
.page-body .search-layout .search-result .search-result__schedule-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}
.page-body .search-layout .search-result .search-result__schedule-row--fallback {
  color: rgb(248, 249, 247);
  gap: 8px 12px;
}
.page-body .search-layout .search-result .search-result__day,
.page-body .search-layout .search-result .search-result__date {
  color: rgb(255, 255, 255);
}
.page-body .search-layout .search-result .search-result__schedule-row--fallback .search-result__date {
  color: rgba(248, 249, 247, 0.95);
}
.page-body .search-layout .search-result .search-result__time {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.page-body .search-layout .search-result .search-result__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 50px;
  row-gap: 12px;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding-top: 14px;
}
.page-body .search-layout .search-result .search-result__meta {
  color: rgb(248, 249, 247);
  min-width: 0;
}
.page-body .search-layout .search-result .single-download--search {
  flex: 0 0 auto;
}
.page-body .search-layout .search-result .single-download--search .single-download__inner {
  gap: 12px;
}
.page-body .search-layout .search-result .single-download--search .single-download__icon {
  width: 30px;
  height: 30px;
}
.page-body .search-layout .search-result .single-download--search .single-download__icon:first-child {
  margin-right: 0;
}

.page-body .pagination {
  margin-top: 8px;
  font-size: 0;
  width: 100%;
}
.page-body .pagination ul.page-numbers,
.page-body .pagination > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
  width: 100%;
}
.page-body .pagination ul.page-numbers li,
.page-body .pagination > ul > li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-family: "Sharp Grotesk", "Inter", system-ui, sans-serif;
}
.page-body .pagination ul.page-numbers li::marker,
.page-body .pagination > ul > li::marker {
  content: none;
}
.page-body .pagination a.page-numbers,
.page-body .pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  color: rgb(248, 249, 247);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}
.page-body .pagination a.page-numbers:hover {
  color: rgb(0, 80, 150);
  background: rgb(0, 225, 190);
  border-color: rgb(0, 225, 190);
}
.page-body .pagination span.page-numbers.current {
  color: rgb(0, 80, 150);
  background: rgb(0, 225, 190);
  border-color: rgb(0, 225, 190);
  font-weight: 600;
}
.page-body .pagination span.page-numbers.dots {
  border: 0;
  min-width: auto;
  padding: 0 4px;
  color: rgba(248, 249, 247, 0.6);
  background: transparent;
}

.page-body {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgb(0, 80, 150);
  isolation: isolate;
}
.page-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg.webp");
  background-size: auto;
  background-repeat: repeat;
  background-position: top left;
  opacity: 0.35;
  z-index: 0;
  mix-blend-mode: normal;
  pointer-events: none;
}
.page-body > * {
  position: relative;
  z-index: 1;
}
.page-body {
  padding-bottom: 75px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
