@charset "UTF-8";
/*!
Theme Name: PODHE
Author: Diego Perez Marciano
Author URI: https://wordpress.org/fmarciano
Description: PODHE theme is designed to take advantage of simplicity, SEO and performance.Pure uses semantic HTML5 tags, customized DOM, responsive CSS and Typescript.
Requires at least: 6.1
Tested up to: 6.1
Requires PHP: 5.6
Version: 1.0
License: GPL-3.0
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: podhe
Tags: pure, semantic, performance, SEO, standards
*/
/**
 * Base css file
 */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/**
 * Configuration (cfg) file
 */
:root {
  /* COLOR SETTINGS */
  --color-background: rgba(255, 255, 255, 1);
  --color-surface: rgba(240, 240, 240, 1);
  --color-error: rgba(128, 0, 0, 1);
  --color-primary: rgba(128, 196, 255, 1);
  --color-secondary: rgba(128, 255, 196, 1);
  --color-link: #00f;
  --color-on-background: #999;
  --color-on-surface: #999;
  --color-on-error: #fff;
  --color-on-primary: #333;
  --color-on-secondary: #000;
  --font-color-general-text: #3c3c3c;
  --card-background-color: #fff;
  /* GENERAL SETTINGS */
  --base-value: 2;
  --font-base-size: 10px;
  --paragraph-font-size: 1.6rem;
  --paragraph-line-height: 1.5em;
  --paragraph-margin-bottom: 1.5em;
  --regular-gap: calc(pow(var(--base-value), 4) * 1px);
  --dir-icon: "assets/media/icon";
  /* HEADER SETTINGS */
  --header-height: calc((pow(var(--base-value), 6) * 1px));
  --header-mobile-height: 100px;
  --header-bg-color: #fff;
  --header-workspace-max-width: calc(pow(var(--base-value), 10) * 1px);
  --header-border-width: 0;
  --header-border-style: solid;
  --header-border-color: var(--color-on-surface);
  --header-border-radius: 0;
  --header-z-index: 4;
  --header-active-bg-color: var(--color-primary);
  --header-active-border-width: 0 0 1px 0;
  --header-active-border-style: dashed;
  --header-active-border-color: var(--color-on-surface);
  --header-active-border-radius: 0;
  /* HEADER BUTTON SETTINGS */
  --header-button-len-x: calc(pow(var(--base-value), 7) * 1px);
  --header-button-len-y: calc(pow(var(--base-value), 5) * 1px);
  --header-button-bg-color: transparent;
  --header-button-border-width: 0;
  --header-button-border-style: none;
  --header-button-border-color: transparent;
  --header-button-border-radius: 0;
  --header-button-bg-image: url("assets/media/icon/ico-menu-open.svg");
  --header-button-bg-position: left center;
  --header-button-bg-repeat: no-repeat;
  --header-button-bg-size: 24px auto;
  --header-button-active-bg-color: transparent;
  --header-button-active-border-width: 0;
  --header-button-active-border-style: none;
  --header-button-active-border-color: transparent;
  --header-button-active-border-radius: 0;
  --header-button-active-bg-image: url("assets/media/icon/ico-menu-close.svg");
  --header-button-active-bg-position: left center;
  --header-button-active-bg-repeat: no-repeat;
  --header-button-active-bg-size: no-repeat;
  /* MAIN MENU */
  --navigation-menu-max-width: calc(pow(var(--base-value), 8) * 1px);
  --navigation-menu-bg-color: var(--color-surface);
  --navigation-menu-border-style: solid;
  --navigation-menu-border-color: var(--color-on-surface);
  --navigation-menu-border-width: 0 1px 0 0;
  /* BODY NAVIGATION SETTINGS */
  --body-nav-z-index: 9;
  /* FOOTER SETTINGS */
  --footer-bg-color: transparent;
  --footer-workspace-max-width: calc(pow(var(--base-value), 10) * 1px);
  --footer-z-index: 2;
  --footer-border-style: solid;
  --footer-border-color: var(--color-on-surface);
  --footer-border-width: 1px 0 0 0;
  /* CONTENT SETTINGS */
  --content-bg-color: transparent;
  --content-z-index: 3;
  --content-min-height: calc(100vh - var(--header-height));
  --content-workspace-max-width: var(--header-workspace-max-width);
  /* FONT SETTINGS */
  --tablet-highlight-font-size: 4rem;
  --second-title-font-size: 3.1rem;
  --color-fflch: #142d69;
  --main-font-color: #1c1351;
  --news-font-color: #003459;
  --font-scale: 1;
  /* Desktop padrão */
  --title-font-size: 3.6rem;
  --font-size-general: 1.6rem;
  /* Desktop grande */
  --title-large-font-size: 3.8rem;
  --general-large-font-size: 1.9rem;
  /* Mobile padrão */
  --title-font-size-mobile: 2.4rem;
  --font-size-general-mobile: 1.4rem;
  /* Mobile grande */
  --title-large-font-size-mobile: 3rem;
  --general-large-font-size-mobile: 1.6rem;
  /* SPACING SETTINGS */
  --margin-content: 25px;
  --section-default-spacing: 60px;
  --breadcrumb-spacing: 30px;
  --title-bottom-spacement: 16px;
}

/**
 * Base css file
 */
/**
 * Header CSS file
 */
#body-header {
  position: sticky;
  top: 0;
  background-color: var(--header-bg-color);
  border-style: var(--header-border-style);
  border-color: var(--header-border-color);
  border-width: var(--header-border-width);
  border-radius: var(--header-border-radius);
  z-index: var(--header-z-index);
  height: 126px;
  transition: background-color 0.5s;
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--margin-content);
}
#body-header > div {
  position: relative;
  width: 100%;
  height: 100%;
}
#body-header > div > #body-header-identity {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  user-select: none;
}
#body-header > div > #body-header-identity > #body-header-headline {
  display: block;
}
#body-header > div > #body-header-identity > #body-header-headline > a {
  display: block;
  width: 200px;
  height: 60px;
  text-indent: -9999px;
  background-image: url("assets/media/podhe-logo.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#body-header > div > #body-header-identity > h2 {
  font-size: 1.4rem;
  color: var(--main-font-color);
}
#body-header > div > #container-header-menu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  gap: 12px;
  align-items: center;
}
#body-header > div > #container-header-menu > div {
  display: flex;
  background-color: var(--main-font-color);
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
}
#body-header > div > #container-header-menu > div > button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}
#body-header > div > #container-header-menu > div > button.font-size-control-small {
  font-size: 1.2rem;
}
#body-header > div > #container-header-menu > div > button.font-size-control-large {
  font-size: 1.8rem;
}
#body-header > div > #container-header-menu {
  /* SEARCH BAR */
}
#body-header > div > #container-header-menu > form > fieldset {
  position: relative;
  display: flex;
  align-items: center;
}
#body-header > div > #container-header-menu > form > fieldset:hover #frm-search-term,
#body-header > div > #container-header-menu > form > fieldset #frm-search-term:focus {
  transform: scaleX(1);
  opacity: 1;
}
#body-header > div > #container-header-menu > form > fieldset > button {
  width: 24px;
  height: 40px;
  border-radius: 0 8px 8px 0;
  background: transparent url("assets/media/icon/search.svg") center/24px no-repeat;
  cursor: pointer;
  z-index: 2;
  color: transparent;
  user-select: none;
}
#body-header > div > #container-header-menu #frm-search-term {
  position: absolute;
  right: 100%;
  top: 0;
  height: 40px;
  width: 250px;
  padding-left: var(--regular-gap);
  border-radius: 8px 0 0 8px;
  border: none;
  background-color: #f0f0f0;
  transform-origin: right;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  box-sizing: border-box;
}
#body-header > div > #container-header-menu {
  /* SEARCH BAR */
}
#body-header-toggle-nav-button {
  height: var(--header-button-len-y);
  background-color: var(--header-button-bg-color);
  border-width: var(--header-button-border-width);
  border-style: var(--header-button-border-style);
  border-color: var(--header-button-border-color);
  border-radius: var(--header-button-border-radius);
  background-image: var(--header-button-bg-image);
  background-position: var(--header-button-bg-position);
  background-repeat: var(--header-button-bg-repeat);
  background-size: var(--header-button-bg-size);
  transition: transform 0.5s;
  color: transparent;
  display: none;
}
[data-body-navigation] #body-header-toggle-nav-button {
  background-color: var(--header-button-active-bg-color);
  border-width: var(--header-button-active-border-width);
  border-style: var(--header-button-active-border-style);
  border-color: var(--header-button-active-border-color);
  background-image: var(--header-button-active-bg-image);
}
#body-header-headline {
  display: block;
}

[data-scroll=true] #body-header {
  border-width: 0;
  border-style: var(--header-active-border-style);
  border-color: var(--header-active-border-color);
}

#body-header-nav-main-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  height: 40px;
  align-items: center;
}
#body-header-nav-main-menu > li {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#body-header-nav-main-menu > li > a {
  font-size: var(--font-size-general);
  transition: color 0.2s ease;
}
#body-header-nav-main-menu > li > a:hover {
  color: #499acf;
}
#body-header-nav-main-menu .menu-producoes-podhe:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
#body-header-nav-main-menu .menu-producoes-podhe {
  position: relative;
}
#body-header-nav-main-menu .menu-producoes-podhe::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
#body-header-nav-main-menu .menu-producoes-podhe > a {
  display: flex;
  align-items: center;
  gap: 12px;
}
#body-header-nav-main-menu .menu-producoes-podhe > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("assets/media/arrow-dropdown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
#body-header-nav-main-menu .menu-producoes-podhe > .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  width: max-content;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
#body-header-nav-main-menu .menu-producoes-podhe > .sub-menu > li {
  width: 100%;
}
#body-header-nav-main-menu .menu-producoes-podhe > .sub-menu > li > a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
#body-header-nav-main-menu .menu-producoes-podhe > .sub-menu > li > a:hover {
  color: #499acf;
}
#body-header-nav-main-menu .menu-producoes-podhe > .sub-menu > .menu-item-back {
  display: none;
}
#body-header-nav-main-menu .menu-producoes-podhe.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.current-menu-item > a {
  color: #499acf;
}

#footer-nav-social-menu {
  display: flex;
  gap: 10px;
  height: 40px;
  align-items: center;
  user-select: none;
}
#footer-nav-social-menu > li {
  width: 24px;
  height: 24px;
}
#footer-nav-social-menu > li > a {
  color: transparent;
  display: block;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.menu-item-has-children > a {
  display: flex;
  gap: 12px;
  align-items: center;
}
.menu-item-has-children > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("assets/media/arrow-dropdown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  width: max-content;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.menu-item-has-children > .sub-menu > li {
  width: 100%;
}
.menu-item-has-children > .sub-menu > li > a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.menu-item-has-children > .sub-menu > li > a:hover {
  color: #499acf;
}
.menu-item-has-children > .sub-menu > .menu-item-back {
  display: none;
}
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

@media (max-width: 1023px) {
  #body-header {
    height: var(--header-mobile-height);
  }
  #body-header > div > #body-header-identity {
    width: 140px;
    gap: 0;
  }
  #body-header > div > #body-header-identity > #body-header-headline > a {
    width: 140px;
  }
  #body-header > div > #body-header-identity > h2 {
    font-size: 1rem;
  }
  #body-header #search-submit {
    display: none;
  }
  #body-header #body-header-nav-main-menu {
    display: none;
  }
  #body-header #container-header-menu > nav {
    display: none;
  }
  #body-header #body-header-toggle-nav-button {
    display: block;
  }
}
/**
 * Base css file
 */
/**
  * Navigation
  */
#body-navigation {
  position: fixed;
  right: 0;
  width: 100%;
  max-width: 390px;
  top: var(--header-mobile-height);
  bottom: 0;
  transform: translate(100%, 0);
  background: var(--navigation-menu-bg-color);
  border-style: var(--navigation-menu-border-style);
  border-color: var(--navigation-menu-border-color);
  border-width: var(--navigation-menu-border-width);
  transition: transform 0.2s ease-in-out;
  z-index: var(--body-nav-z-index);
  overflow: auto;
  background-color: #ffffff;
}
[data-body-navigation] #body-navigation {
  transform: translate(0, 0);
}
#body-navigation > header {
  padding: var(--regular-gap);
  display: none;
}
#body-navigation > menu {
  padding: 32px 32px 0 32px;
}
#body-navigation > menu > li {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border-bottom: 1px solid #bcbcbc;
}
#body-navigation > menu > li > a {
  display: block;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  padding: 32px 16px;
  user-select: none;
}
#body-navigation > menu > li ul a {
  display: block;
  background-color: #ffffff;
  padding: var(--regular-gap);
  padding-left: calc(var(--regular-gap) * 2);
}

#body-nav-footer {
  padding: 32px;
}
#body-nav-footer > h4 {
  margin-bottom: 16px;
  color: var(--font-color-general-text);
  font-weight: bold;
  padding-left: 16px;
}
#body-nav-footer #nav-social-menu > li {
  padding-left: 16px;
  margin-bottom: 8px;
}
#body-nav-footer #nav-social-menu > li > a {
  display: block;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 12px;
}

#frm-nav-search {
  display: none;
}

.menu-producoes-podhe > .sub-menu {
  opacity: 0;
}
.menu-producoes-podhe:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

@media (max-width: 1023px) {
  #body-navigation {
    padding-top: 32px;
    background-color: #fff;
  }
  #body-navigation > #frm-search > fieldset {
    display: flex;
    justify-content: center;
  }
  #body-navigation > #frm-search > fieldset > input {
    background-color: #f0f0f0;
    border-radius: 8px 0 0 8px;
    text-indent: 8px;
    width: 180px;
  }
  #body-navigation > #frm-search > fieldset > button {
    background-color: var(--main-font-color);
    color: #fff;
    border-radius: 0 8px 8px 0;
    padding: 8px 8px;
  }
  #body-navigation #nav-main-menu-mobile {
    margin-top: 0;
  }
  #body-navigation #nav-main-menu-mobile.is-submenu-open > li {
    display: none;
  }
  #body-navigation #nav-main-menu-mobile.is-submenu-open > li.is-open {
    display: flex;
    width: 100%;
  }
  #body-navigation #nav-main-menu-mobile > li {
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
  }
  #body-navigation #nav-main-menu-mobile > li > a {
    margin: 0;
    padding: 16px;
    color: var(--main-font-color);
    width: 100%;
    display: block;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe,
  #body-navigation #nav-main-menu-mobile .menu-sobre {
    width: 100%;
    position: relative;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > a,
  #body-navigation #nav-main-menu-mobile .menu-sobre > a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > a::after,
  #body-navigation #nav-main-menu-mobile .menu-sobre > a::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("assets/media/arrow-dropdown.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > .sub-menu,
  #body-navigation #nav-main-menu-mobile .menu-sobre > .sub-menu {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > .sub-menu > li,
  #body-navigation #nav-main-menu-mobile .menu-sobre > .sub-menu > li {
    width: 100%;
    border-bottom: 1px solid #bcbcbc;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > .sub-menu > .menu-item-back > a,
  #body-navigation #nav-main-menu-mobile .menu-sobre > .sub-menu > .menu-item-back > a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    color: var(--color-fflch);
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > .sub-menu > .menu-item-back > a::before,
  #body-navigation #nav-main-menu-mobile .menu-sobre > .sub-menu > .menu-item-back > a::before {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("assets/media/arrow-dropdown.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: transform 0.2s ease;
    transform: rotate(90deg);
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe > .sub-menu > li > a,
  #body-navigation #nav-main-menu-mobile .menu-sobre > .sub-menu > li > a {
    display: block;
    width: 100%;
    padding: 16px;
    color: var(--main-font-color);
    white-space: normal;
    background: transparent;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe.is-open > a,
  #body-navigation #nav-main-menu-mobile .menu-sobre.is-open > a {
    display: none;
  }
  #body-navigation #nav-main-menu-mobile .menu-producoes-podhe.is-open > .sub-menu,
  #body-navigation #nav-main-menu-mobile .menu-sobre.is-open > .sub-menu {
    display: block;
  }
}
#body-nav-footer {
  text-align: center;
  padding: 32px;
}
#body-nav-footer > h4 {
  margin-bottom: 16px;
  color: var(--color-fflch);
  font-weight: bold;
  padding: 0;
}
#body-nav-footer #nav-social-menu {
  display: flex;
  gap: 24px;
  height: 40px;
  align-items: center;
  user-select: none;
  justify-content: center;
}
#body-nav-footer #nav-social-menu > li {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
}
#body-nav-footer #nav-social-menu > li > a {
  color: transparent;
  display: block;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
 * Base css file
 */
/**
 * Footer CSS file
 */
#body-footer {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#body-footer > div {
  padding: 0 var(--margin-content);
  text-align: center;
}
#body-footer > div > #body-footer-infos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #fceed5;
  padding: 24px;
  border-radius: 20px 20px 0 0;
}
#body-footer > div > #body-footer-infos > p {
  font-size: 10px;
}

/**
 * Base css file
 */
/**
 * Content CSS file
 */
.wp-block-list {
  list-style-type: disc !important;
  list-style-position: inside;
}

.wp-block-list li {
  margin-bottom: 16px;
}

body > main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  box-sizing: border-box;
  z-index: var(--content-z-index);
}
body > main > header {
  display: none;
}
body > main > footer {
  display: none;
}

/* Logo Background fixo */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  width: 700px;
  height: 700px;
  transform: translate(10%, 20%);
  background-image: url("assets/media/quater-logo.svg");
  background-size: 700px;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

a[href^="https://instagram.com"] {
  display: inline-block;
  background: url("assets/media/icon/instagram-icon.svg") no-repeat center;
}

#body-footer a[href^="https://instagram.com"] {
  background-image: url("assets/media/icon/instagram-icon.svg");
}

a[href^="https://facebook.com"] {
  display: inline-block;
  background: url("assets/media/icon/facebook1-icon.svg") no-repeat center;
}

#body-footer a[href^="https://facebook.com"] {
  background-image: url("assets/media/icon/facebook-icon.svg");
}

a[href^="https://youtube.com"] {
  display: inline-block;
  background: url("assets/media/icon/youtube-icon.svg");
}

#body-footer a[href^="https://youtube.com"] {
  background-image: url("assets/media/icon/youtube-icon.svg");
}

a[href^="https://open.spotify.com"] {
  display: inline-block;
  background: url("assets/media/icon/spotify-icon.svg") no-repeat center;
}

/**
 * Base css file
 */
/**
 * Web Site Schema CSS file
 */
/**
 * Base css file
 */
/**
 * Web Site Schema CSS file
 */
/**
 * Base css file
 */
/**
 * Web Site Schema CSS file
 */
/**
 * Base css file
 */
/**
 * News Article Schema CSS file
 */
/**
 * Base css file
 */
/**
 * Profile Page Schema CSS file
 */
/**
 * Base css file
 */
/**
 * Web Site Schema CSS file
 */
ul[itemtype$="/BreadcrumbList"] {
  display: flex;
  flex-direction: row;
}
ul[itemtype$="/BreadcrumbList"] li {
  white-space: nowrap;
}
ul[itemtype$="/BreadcrumbList"] li:first-child:before {
  display: none;
}
ul[itemtype$="/BreadcrumbList"] li:before {
  display: inline-block;
  content: "/";
  margin: 0 calc(var(--regular-gap) / 2);
}

.home-section-highlights {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
}
.home-section-highlights > div {
  padding: 0 var(--margin-content);
}
.home-section-highlights > div > ul {
  display: flex;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1380/720;
  scroll-behavior: smooth;
  border-radius: 0 0 40px 40px;
}
.home-section-highlights > div > ul > li {
  position: relative;
  flex: 0 0 100%;
  border-radius: 0 0 40px 40px;
  height: 100%;
}
.home-section-highlights > div > ul > li > figure {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-section-highlights > div > ul > li > figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
}
.home-section-highlights > div > ul > li > figure > a {
  display: block;
  width: 100%;
  height: 100%;
}
.home-section-highlights > div > ul > li > figure > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-section-highlights > div > ul > li > div {
  position: absolute;
  top: 45%;
  box-sizing: border-box;
  padding-right: 50%;
  color: white;
  left: 65px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-section-highlights > div > ul > li > div > h2 > a {
  font-size: 6rem;
  text-transform: uppercase;
  font-family: "Baloo 2", sans-serif !important;
  line-height: 70px;
}
.home-section-highlights > div > ul > li > div > h3 > a {
  font-size: 2rem;
  line-height: 26px;
  display: inline-block;
  width: 85%;
}
.home-section-highlights > div > ul > li > div > a {
  font-size: 1.8rem;
  line-height: 26px;
  font-weight: normal;
  display: inline-block;
  width: 85%;
}
.home-section-highlights > div > ul > li > div > footer {
  display: flex;
  gap: 24px;
  padding-top: 30px;
}
.home-section-highlights > div > ul > li > div > footer > #highlight-button-contact {
  border-radius: 57px;
  background-color: transparent;
  border: solid 1.5px #1b1351;
  position: relative;
  color: #1b1351;
}
.home-section-highlights > div > ul > li > div > footer > #highlight-button-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 28px;
  width: 24px;
  height: 24px;
  background-image: url("assets/media/icon/message.svg");
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
}
.home-section-highlights > div > ul > li > div > footer > #highlight-button-contact > a {
  color: #1b1351;
  padding-right: 60px;
  padding-left: 0px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 28px;
}
.home-section-highlights > div > ul > li > div > footer > #highlight-button {
  padding: 14px 42px;
  background-color: #1b1351;
  border-radius: 57px;
}
.home-section-highlights > div > ul > li > div > footer > #highlight-button > a {
  color: #ffffff;
}
.home-section-highlights > #footer-highlight-control > button[data-action] {
  background-color: #fff;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translate(0, -50%);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  border-radius: 50px;
  border: none;
}
.home-section-highlights > #footer-highlight-control > button[data-action=prev] {
  left: 33px;
  background-image: url("assets/media/icon-arrow.svg");
  transform: translate(0, -50%) rotateY(180deg);
}
.home-section-highlights > #footer-highlight-control > button[data-action=next] {
  right: 33px;
  width: 24px;
  height: 24px;
  background-image: url("assets/media/icon-arrow.svg");
}
.home-section-highlights ol {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  gap: 15px;
}
.home-section-highlights ol > li > button {
  background-color: transparent;
  border: 1px solid white;
  width: 10px;
  height: 10px;
  color: transparent;
  text-indent: -9999px;
  border-radius: 50px;
}
.home-section-highlights ol > li button[data-selected] {
  background-color: #1b1351;
  border: #1b1351 solid 1px;
}

@media (max-width: 1023px) {
  .home-section-highlights {
    height: auto;
    padding: 0;
  }
  .home-section-highlights > div {
    height: auto;
    padding: 0;
  }
  .home-section-highlights > div > ul {
    width: 100%;
    aspect-ratio: 412/584;
    height: auto;
    max-height: 90svh;
    margin: 0 auto;
    position: relative;
  }
  .home-section-highlights > div > ul li {
    position: relative;
  }
  .home-section-highlights > div > ul li > figure {
    height: 100%;
  }
  .home-section-highlights > div > ul li > figure > a {
    display: block;
    height: 100%;
  }
  .home-section-highlights > div > ul li > figure > a > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-section-highlights > div > ul li > div {
    position: absolute;
    display: grid;
    place-content: center;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: clamp(16px, 5vw, 32px);
    max-width: min(560px, 92%);
    margin: 0 auto;
  }
  .home-section-highlights > div > ul li > div > h2 > a {
    font-size: 4rem;
    line-height: 50px;
  }
  .home-section-highlights > div > ul li > div > a {
    width: 100%;
  }
  .home-section-highlights > div > ul li > div > footer {
    justify-content: center;
  }
  .home-section-highlights footer > button[data-action] {
    display: none;
  }
}
@media (max-width: 769px) {
  .home-section-highlights {
    height: calc(100vh - var(--header-mobile-height));
    padding: 0;
  }
  .home-section-highlights > div {
    height: 100%;
  }
  .home-section-highlights > div > ul {
    width: 100%;
    height: 100%;
    aspect-ratio: 412/584;
    max-height: 100vh;
    margin: 0 auto;
    position: relative;
  }
  .home-section-highlights > div > ul li {
    position: relative;
  }
  .home-section-highlights > div > ul li > figure {
    height: 100%;
  }
  .home-section-highlights > div > ul li > figure > a {
    display: block;
    height: 100%;
  }
  .home-section-highlights > div > ul li > figure > a > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-section-highlights > div > ul li > div {
    position: absolute;
    display: grid;
    place-content: center;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: clamp(16px, 5vw, 32px);
    max-width: min(560px, 92%);
    margin: 0 auto;
  }
  .home-section-highlights > div > ul li > div > h2 > a {
    font-size: 3rem;
    line-height: 1.2;
  }
  .home-section-highlights > div > ul li > div > a {
    font-size: 1.4rem;
  }
  .home-section-highlights > div > ul li > div > footer {
    justify-content: center;
  }
}
@media (max-width: 1242px) and (min-width: 1024px) {
  .home-section-highlights > div > ul li > div > h2 > a {
    font-size: 5rem;
  }
  .home-section-highlights > div > ul li > div > h3 > a {
    font-size: 1.6rem;
  }
  .home-section-highlights > div > ul li > div > a {
    font-size: 1.4rem;
  }
}
@media (max-width: 1098px) and (min-width: 1024px) {
  .home-section-highlights > div > ul li > div > h2 > a {
    font-size: 4.5rem;
  }
  .home-section-highlights > div > ul li > div > a {
    font-size: 1.4rem;
  }
}
#section-all-news {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-all-news > header {
  padding: 0 var(--margin-content);
  padding-bottom: var(--title-bottom-spacement);
}
#section-all-news > header > h1 {
  padding-bottom: var(--title-bottom-spacement);
}
#section-all-news > header > p {
  color: #1e1e1e;
}
#section-all-news {
  /* 
  **MOBILE TAGS FILTER
  */
}
#section-all-news > .filter-tags-floater {
  display: none;
  padding: 24px;
  border-radius: 12px;
}
#section-all-news > .filter-tags-floater > header > h2 {
  font-size: 1.8rem;
  color: var(--news-font-color);
  line-height: 28px;
  display: none;
}
#section-all-news > .filter-tags-floater > ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
#section-all-news > .filter-tags-floater > ul > li {
  cursor: pointer;
  background-color: #fdfdfd;
  border-radius: 12px;
  font-size: var(--font-size-general);
  color: var(--news-font-color);
  line-height: 26px;
  padding: 14px 20px;
  padding-left: 40px;
  position: relative;
}
#section-all-news > .filter-tags-floater > ul > li:hover {
  background-color: #f9f9f9;
}
#section-all-news > .filter-tags-floater > ul > li::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--tag-color);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
#section-all-news > .filter-tags-floater > ul > li > a {
  font-size: 1.6rem;
  color: #003459;
}
#section-all-news > div {
  padding: 0 var(--margin-content);
  display: flex;
  padding-bottom: 88px;
  /*
  ** SIDE NEWS INFOS
  */
}
#section-all-news > div > #news-side {
  padding-left: 80px;
  max-width: 400px;
  width: 100%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
#section-all-news > div > #news-side > nav {
  padding: 24px;
  background-color: #fdfdfd;
  border-radius: 12px;
  margin-bottom: 43px;
}
#section-all-news > div > #news-side > nav > header > h2 {
  font-size: 1.8rem;
  color: var(--news-font-color);
  line-height: 28px;
}
#section-all-news > div > #news-side > nav > ul > li {
  cursor: pointer;
  border-radius: 8px;
  font-size: var(--font-size-general);
  color: var(--news-font-color);
  line-height: 26px;
  padding: 12px;
  position: relative;
}
#section-all-news > div > #news-side > nav > ul > li:hover {
  background-color: #f9f9f9;
}
#section-all-news > div > #news-side > nav > ul > li::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--tag-color);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
#section-all-news > div > #news-side > nav > ul > li > a {
  font-size: 1.6rem;
  color: #003459;
}
#section-all-news > div > #news-side > .material-list-floating {
  padding: 0;
  padding-top: 40px;
}
#section-all-news > div > #news-side > .material-list-floating > div {
  padding: 0;
}
#section-all-news > div > #news-side > .material-list-floating > div > div {
  padding: 0;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul {
  width: 100%;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li {
  padding: 0;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > div {
  max-width: none;
  padding: 24px;
  padding-bottom: 36px;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > div > h2 {
  font-size: var(--font-size-general);
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > div > h2 > a {
  font-size: var(--font-size-general);
  display: inline-block;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > div > button {
  width: 100%;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > figure {
  display: none;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > ul > li > figure > img {
  display: none;
}
#section-all-news > div > #news-side > .material-list-floating > div > div > .material-controls > button {
  display: none;
}
#section-all-news > div > div > ul {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  width: 100%;
  gap: 40px;
}
#section-all-news > div > div > ul > li {
  background-color: var(--card-background-color);
  box-sizing: border-box;
  padding: 45px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#section-all-news > div > div > ul > li > figure {
  width: 100%;
  height: 310px;
}
#section-all-news > div > div > ul > li > figure > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
#section-all-news > div > div > ul > li > figure .post-card-video,
#section-all-news > div > div > ul > li > figure .post-card-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 8px;
}
#section-all-news > div > div > ul > li > .posts-metadata {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
#section-all-news > div > div > ul > li > .posts-metadata > ul {
  display: flex;
  gap: 12px;
}
#section-all-news > div > div > ul > li > .posts-metadata > ul > li {
  width: fit-content;
}
#section-all-news > div > div > ul > li > .posts-metadata > ul > li > a {
  width: fit-content;
  display: block;
  padding: 6px 18px;
  background-color: var(--tag-color);
  border-radius: 50px;
  color: #fff;
  line-height: 24px;
}
#section-all-news > div > div > ul > li > .posts-metadata > .post-date {
  color: #777c82;
  font-size: 1.2rem;
  line-height: 36px;
}
#section-all-news > div > div > ul > li > .posts-metadata > .post-metainfo-author {
  display: flex;
  gap: 5px;
}
#section-all-news > div > div > ul > li > .posts-metadata > .post-metainfo-author > dt,
#section-all-news > div > div > ul > li > .posts-metadata > .post-metainfo-author dd {
  font-size: 1.2rem;
  color: #777c82;
  line-height: 36px;
}
#section-all-news > div > div > ul > li > h2 {
  line-height: 26px;
}
#section-all-news > div > div > ul > li > h2 > .post-title {
  font-size: 1.8rem;
  color: var(--news-font-color);
}
#section-all-news > div > div > ul > li > .post-read-more {
  font-size: var(--font-size-general);
  color: #0080c4;
  display: block;
  width: fit-content;
  padding-right: 24px;
  position: relative;
  line-height: 24px;
}
#section-all-news > div > div > ul > li > .post-read-more::after {
  content: "";
  background-image: url("assets/media/icon/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
}
#section-all-news > div > div > ul > li > .post-description {
  font-size: var(--font-size-general);
  color: var(--news-font-color);
  line-height: 26px;
}
#section-all-news > ul.page-numbers {
  display: flex;
  gap: 16px;
  justify-content: center;
}
#section-all-news > ul.page-numbers > li {
  width: 60px;
  height: 60px;
}
#section-all-news > ul.page-numbers > li > .page-numbers {
  background-color: var(--card-background-color);
  text-align: center;
  line-height: 60px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: solid 1px #d7d7d7;
  user-select: none;
  font-size: 1.8rem;
  color: #003459;
}
#section-all-news > ul.page-numbers > li > .page-numbers.current {
  background-color: #0080c4;
  color: #fff;
}
#section-all-news > ul.page-numbers > li > .next.page-numbers {
  color: transparent;
  background-image: url("assets/media/icon/arrow-next-page.svg");
  background-position: center;
  background-repeat: no-repeat;
}
#section-all-news > ul.page-numbers > li > .prev.page-numbers {
  color: transparent;
  background-image: url("assets/media/icon/arrow-prev-page.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.post-description {
  font-size: var(--font-size-general);
  color: var(--news-font-color);
  line-height: 26px;
}

.post-title {
  font-size: 1.8rem;
  color: var(--news-font-color);
}

.post-read-more {
  font-size: var(--font-size-general);
  color: #0080c4;
  display: block;
  width: fit-content;
  padding-right: 24px;
  position: relative;
  line-height: 24px;
}
.post-read-more::after {
  content: "";
  background-image: url("assets/media/icon/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
}

@media (max-width: 1023px) {
  #section-all-news > .filter-tags-floater {
    display: block;
  }
  #section-all-news > div {
    flex-direction: column;
    gap: 24px;
  }
  #section-all-news > div > #news-list-container > ul > li > figure {
    width: 100%;
    height: 250px;
  }
  #section-all-news > div > #news-side {
    position: static;
    padding-left: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #section-all-news > div > #news-side > nav {
    order: 0;
  }
  #section-all-news > div > #news-side > .material-list-floating {
    order: 3;
  }
  #section-all-news > div > #news-side > nav {
    padding: 16px;
    position: sticky;
    top: 64px;
    z-index: 2;
    display: none;
  }
  #section-all-news > div > #news-side > nav > ul {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 2px;
  }
  #section-all-news > div > #news-side > nav > ul > li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
  }
  #section-all-news > div > #news-side > nav > ul > li::after {
    left: 0;
  }
  #section-all-news > div > div > ul {
    max-width: 100%;
    gap: 24px;
  }
}
.global-section-partners {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
.global-section-partners > div {
  padding: 0 var(--margin-content);
}
.global-section-partners > div > ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
.global-section-partners > div > ul > li {
  user-select: none;
}
.global-section-partners > div > ul > li > div {
  display: none;
}
.global-section-partners > div > ul > li > figure {
  max-width: 300px;
  width: 100%;
  height: 60px;
}
.global-section-partners > div > ul > li > figure > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1023px) {
  .global-section-partners > div > ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .global-section-partners > div > ul > li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .global-section-partners > div > ul > li > figure {
    width: auto;
    max-width: none;
    height: 44px;
  }
  .global-section-partners > div > ul > li > figure > a > img {
    width: auto;
    height: 100%;
    max-width: 70vw;
  }
}
#home-section-newsletter {
  background-color: #003d5e;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#home-section-newsletter > header > h2 {
  font-size: var(--font-size-general);
  color: #fff;
  margin-bottom: 24px;
}
#home-section-newsletter > header > p {
  color: #fff;
  line-height: 26px;
}
#home-section-newsletter > div > #frm-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#home-section-newsletter > div > #frm-newsletter > fieldset > #frm-newsletter-email {
  background-color: transparent;
  border: solid 1.5px #fff;
  color: #fff;
  line-height: 24px;
  padding: 14px 0;
  text-indent: 28px;
  border-radius: 50px;
  width: 100%;
}
#home-section-newsletter > div > #frm-newsletter > fieldset > #frm-newsletter-submit {
  width: 100%;
  border: solid 1.5px #fff;
  border-radius: 50px;
  line-height: 24px;
  padding: 14px 0;
}
#home-section-newsletter > div > #frm-newsletter > fieldset > label {
  color: #fff;
  font-size: 10px;
}
#home-section-newsletter > div > #frm-newsletter > fieldset > label > a {
  color: #fff;
  font-size: 10px;
  text-decoration: underline;
}
#home-section-newsletter > div > #frm-newsletter #privacy-container {
  height: 10px;
}
#home-section-newsletter > div > #frm-newsletter #privacy-container > #frm-newsletter-privacy {
  width: 10px;
  height: 10px;
}
#home-section-newsletter > div > #frm-newsletter #privacy-container > label {
  color: #fff;
  font-size: 10px;
}

#section-schools {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-schools > header {
  padding: 0 var(--margin-content);
  margin-bottom: var(--title-bottom-spacement);
}
#section-schools > div {
  padding: 0 var(--margin-content);
}
#section-schools > div > ul {
  display: flex;
  gap: 43px;
}
#section-schools > div > ul > li {
  position: relative;
  width: 33%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  padding: 0 24px;
  padding-top: 114px;
  padding-bottom: 150px;
  border-radius: 12px;
  background-color: var(--card-background-color);
}
#section-schools > div > ul > li > h2 {
  line-height: 28px;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--color-fflch);
}
#section-schools > div > ul > li > p {
  line-height: 26px;
  font-size: var(--font-size-general);
  color: var(--color-fflch);
}
#section-schools > div > ul > li > .btn {
  position: absolute;
  padding: 14px 28px;
  border: 1.5px #1b1351 solid;
  border-radius: 50px;
  bottom: 24px;
  left: 24px;
}
#section-schools .card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  display: block;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
#section-schools {
  /* 1º, 4º, 7º, 10º... */
}
#section-schools .card:nth-child(3n+1)::before {
  background-image: url("assets/media/library.svg");
}
#section-schools {
  /* 2º, 5º, 8º, 11º... */
}
#section-schools .card:nth-child(3n+2)::before {
  background-image: url("assets/media/Vector.svg");
}
#section-schools {
  /* 3º, 6º, 9º, 12º... */
}
#section-schools .card:nth-child(3n+3)::before {
  background-image: url("assets/media/global-education.svg");
}

@media (max-width: 1023px) {
  #section-schools > div > ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    gap: 16px;
  }
  #section-schools > div > ul > li {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
#section-single-post {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
  display: flex;
  flex-direction: column;
  gap: 43px;
}
#section-single-post > header {
  padding: 0 var(--margin-content);
}
#section-single-post > header > h1 {
  line-height: 50px;
  margin-bottom: 16px;
}
#section-single-post > header > .single-post-description {
  font-size: 1.8rem;
  line-height: 26px;
  margin-bottom: var(--title-bottom-spacement);
  color: #499acf;
}
#section-single-post > header > #single-post-content {
  padding: 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  border-radius: 12px;
}
#section-single-post > header > #single-post-content > figure {
  width: 100%;
  height: 600px;
}
#section-single-post > header > #single-post-content > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
#section-single-post > header > #single-post-content > figure .post-card-video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
#section-single-post > header > #single-post-content > figure .post-card-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
#section-single-post > #single-post-data {
  padding: 0 var(--margin-content);
  display: flex;
  gap: 24px;
}
#section-single-post > #single-post-data > span {
  line-height: 36px;
  color: #777c82;
}
#section-single-post > #single-post-data > #single-post-tag-list {
  display: flex;
  gap: 24px;
}
#section-single-post > #single-post-data > #single-post-tag-list > li {
  width: fit-content;
}
#section-single-post > #single-post-data > #single-post-tag-list > li > a {
  width: fit-content;
  display: block;
  padding: 6px 18px;
  background-color: #0080c4;
  border-radius: 50px;
  color: #fff;
  line-height: 24px;
}
#section-single-post > .article-single-post {
  padding: 0 var(--margin-content);
}
#section-single-post > .article-single-post > div > p {
  margin-bottom: 24px;
  font-size: var(--font-size-general);
  line-height: 32px;
  color: #1e1e1e;
}
#section-single-post > .article-single-post > div > p > img {
  max-width: 500px;
  max-height: 400px;
}
#section-single-post > .article-single-post > div p:has(.alignleft),
#section-single-post > .article-single-post > div p:has(.alignright) {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 30px;
}

@media (max-width: 1023px) {
  #section-single-post > header > #single-post-content {
    padding: 12px;
  }
  #section-single-post > header > #single-post-content > figure {
    width: 100%;
    height: 430px;
  }
  #section-single-post > .article-single-post > div > p > img {
    max-width: 350px;
  }
  #section-single-post > .article-single-post > div p:has(.alignleft),
  #section-single-post > .article-single-post > div p:has(.alignright) {
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  #section-single-post > header > #single-post-content {
    padding: 12px;
  }
  #section-single-post > header > #single-post-content > figure {
    width: 100%;
    height: 230px;
  }
}
#section-process-list {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-process-list > header {
  padding: 0 var(--margin-content);
  margin-bottom: var(--title-bottom-spacement);
}
#section-process-list > div {
  padding: 0 var(--margin-content);
}
#section-process-list > div > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#section-process-list > div > ul > li {
  border-radius: 12px;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 48px;
  background-color: #f8f9fa;
  /* CICLO DE CORES — AQUI */
}
#section-process-list > div > ul > li:nth-child(3n+1) > .item-order {
  background-color: #499acf;
}
#section-process-list > div > ul > li:nth-child(3n+2) > .item-order {
  background-color: #fd6f06;
}
#section-process-list > div > ul > li:nth-child(3n+3) > .item-order {
  background-color: #fc257a;
}
#section-process-list > div > ul > li:nth-child(3n+4) > .item-order {
  background-color: #10b981;
}
#section-process-list > div > ul > li > .item-order {
  user-select: none;
  min-width: 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.4rem;
  border-radius: 50%;
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: bold;
  flex-shrink: 0;
}
#section-process-list > div > ul > li > .item-text > h3 {
  font-size: 1.5rem;
}
#section-process-list > div > ul > li > .item-text > p {
  font-size: var(--font-size-general);
  color: var(--color-fflch);
  line-height: 36px;
}

@media (max-width: 1023px) {
  #section-process-list > div > ul > li {
    gap: 16px;
    padding: 18px;
    align-items: flex-start;
  }
  #section-process-list > div > ul > li > .item-order {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.9rem;
  }
  #section-process-list > div > ul > li > .item-text > p {
    line-height: 1.45;
  }
}
#section-privacy-policy {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-privacy-policy > article {
  padding: 0 var(--margin-content);
}
#section-privacy-policy > article > header {
  padding-bottom: 24px;
}
#section-privacy-policy > article > header > h1 {
  color: var(--main-font-color);
}
#section-privacy-policy > article > div > h2 {
  padding-bottom: 16px;
  font-size: 26px;
}
#section-privacy-policy > article > div > p {
  padding-bottom: 16px;
  color: #1e1e1e;
}

#div-frm-page-contato {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#div-frm-page-contato > h2 {
  padding: 0 var(--margin-content);
  color: #fd6f06;
  font-size: var(--font-size-general);
}
#div-frm-page-contato > p {
  padding: 0 var(--margin-content);
  color: var(--main-font-color);
  padding-bottom: 24px;
}
#div-frm-page-contato > section {
  padding: 0 var(--margin-content);
  display: flex;
  gap: 80px;
}
#div-frm-page-contato > section > #side-contact-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#div-frm-page-contato > section > #side-contact-nav menu > nav > ul {
  display: flex;
}
#div-frm-page-contato > section > #side-contact-nav menu > nav > ul > li > a {
  color: rgba(0, 0, 0, 0);
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
}
#div-frm-page-contato > section > form {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  background-color: #fdfdfd;
  max-width: 960px;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
}
#div-frm-page-contato > section > form > h2 {
  font-size: 1.8rem;
  padding-bottom: 24px;
}
#div-frm-page-contato > section > form > #container-user-data {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 24px;
}
#div-frm-page-contato > section > form > #container-user-data > legend {
  display: none;
}
#div-frm-page-contato > section > form > #container-user-data > fieldset {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#div-frm-page-contato > section > form > #container-user-data > fieldset > label {
  color: #003459;
}
#div-frm-page-contato > section > form > #container-user-data > fieldset > input {
  border: 1px #d7d7d7 solid;
  border-radius: 8px;
  padding: 15px 0;
  text-indent: 15px;
}
#div-frm-page-contato > section > form > #container-user-data > fieldset > legend {
  display: none;
}
#div-frm-page-contato > section > form #container-textarea > legend {
  display: none;
}
#div-frm-page-contato > section > form #container-textarea > fieldset {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
#div-frm-page-contato > section > form #container-textarea > fieldset {
  width: 100%;
}
#div-frm-page-contato > section > form #container-textarea > fieldset > textarea {
  padding: 15px;
  border: 1px #d7d7d7 solid;
  border-radius: 8px;
  padding: 15px;
  height: 500px;
  font-family: "Outfit", sans-serif;
}
#div-frm-page-contato > section > form > #container-privacy {
  padding: 24px 0;
}
#div-frm-page-contato > section > form > #container-privacy > input {
  border: solid 1.5px #777c82;
}
#div-frm-page-contato > section > form > #container-privacy > label > a {
  color: #777c82;
}
#div-frm-page-contato > section > form > button {
  background-color: #003459;
  padding: 14px 28px;
  color: #fdfdfd;
  border-radius: 57px;
}
#div-frm-page-contato > section > #side-contact-nav {
  max-width: 400px;
  width: 100%;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact {
  padding: 0;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div {
  padding: 24px;
  padding-left: 0;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div > h2 {
  font-size: 1.8rem;
  color: var(--color-fflch);
  line-height: 28px;
  padding-bottom: 24px;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div > nav > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div > nav > ul > li {
  padding-left: 60px;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div > nav > ul > li > h4 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-fflch);
  line-height: 24px;
}
#div-frm-page-contato > section > #side-contact-nav > #container-infos-contact > div > nav > ul > li > p {
  color: #6b7280;
  font-size: 1.4rem;
  line-height: 24px;
}
#div-frm-page-contato > section > #side-contact-nav > menu {
  padding: 24px;
  background-color: #fceed5;
  border-radius: 12px;
}
#div-frm-page-contato > section > #side-contact-nav > menu > h5 {
  font-size: 1.8rem;
  line-height: 28px;
  padding-bottom: 24px;
}
#div-frm-page-contato > section > #side-contact-nav > menu > p {
  font-size: 1.6rem;
  color: var(--color-fflch);
  padding-bottom: 24px;
}
#div-frm-page-contato > section > #side-contact-nav > menu nav > ul {
  display: flex;
  gap: 48px;
  justify-content: center;
}

#page-contato-article {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--title-bottom-spacement);
}
#page-contato-article > header {
  padding: 0 var(--margin-content);
}
#page-contato-article > header > h1 {
  margin-bottom: var(--title-bottom-spacement);
}
#page-contato-article > div {
  padding: 0 var(--margin-content);
}
#page-contato-article > div > p {
  color: #1e1e1e;
}

.contact-email {
  position: relative;
}
.contact-email::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-image: url("assets/media/icon/mail.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #499acf;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-tel {
  position: relative;
}
.contact-tel::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-image: url("assets/media/icon/phone.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fd6f06;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-adress {
  position: relative;
}
.contact-adress::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-image: url("assets/media/icon/location.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fc257a;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1023px) {
  #page-contato-article > header > h1 {
    padding-bottom: 24px;
  }
  #container-user-data {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #container-textarea textarea {
    max-height: 180px;
  }
}
@media (max-width: 768px) {
  #div-frm-page-contato {
    /* layout geral */
  }
  #div-frm-page-contato > section {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    /* Form primeiro */
  }
  #div-frm-page-contato > section > form {
    order: 1;
    padding: 16px;
    max-width: 100%;
  }
  #div-frm-page-contato > section {
    /* Infos depois */
  }
  #div-frm-page-contato > section > #side-contact-nav {
    order: 2;
    max-width: 100%;
    gap: 16px;
    /* cards (bloco infos + bloco social) */
  }
  #div-frm-page-contato > section > #side-contact-nav > div, #div-frm-page-contato > section > #side-contact-nav > menu {
    padding: 24px;
    border-radius: 12px;
  }
  #div-frm-page-contato > section > #side-contact-nav {
    /* lista email/tel/endereço mais compacta */
  }
  #div-frm-page-contato > section > #side-contact-nav > div > nav > ul {
    gap: 14px;
  }
  #div-frm-page-contato > section > #side-contact-nav > div > nav > ul > li {
    padding-left: 52px;
  }
  #div-frm-page-contato > section > #side-contact-nav > div > nav > ul > li > h4 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  #div-frm-page-contato > section > #side-contact-nav > div > nav > ul > li > p {
    font-size: 1.05rem;
    line-height: 1.35;
  }
  #div-frm-page-contato > section > #side-contact-nav {
    /* ícones (pseudo-elements) menores */
  }
  #div-frm-page-contato > section > #side-contact-nav .contact-email::before,
  #div-frm-page-contato > section > #side-contact-nav .contact-tel::before,
  #div-frm-page-contato > section > #side-contact-nav .contact-adress::before {
    width: 34px;
    height: 34px;
    background-size: 20px;
  }
  #div-frm-page-contato > section > #side-contact-nav {
    /* socials: vira uma barra horizontal com scroll se precisar */
  }
  #div-frm-page-contato > section > #side-contact-nav > menu > h5,
  #div-frm-page-contato > section > #side-contact-nav > menu p {
    text-align: center;
  }
  #div-frm-page-contato > section > #side-contact-nav > menu > ul {
    justify-content: center;
    gap: 24px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  #div-frm-page-contato > section > #side-contact-nav > menu > ul::-webkit-scrollbar {
    display: none;
  }
  #div-frm-page-contato {
    /* form: grid 2 colunas -> 1 coluna no mobile */
  }
  #div-frm-page-contato > section > form > #container-user-data {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #div-frm-page-contato > section > form {
    /* textarea muito alto no mobile */
  }
  #div-frm-page-contato > section > form #container-textarea textarea {
    max-height: 180px;
  }
  #div-frm-page-contato > section > form {
    /* botão full width (opcional, melhora tap) */
  }
  #div-frm-page-contato > section > form > button {
    width: 100%;
  }
}
#section-quem-somos {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-quem-somos > header {
  padding: 0 var(--margin-content);
  padding-bottom: var(--title-bottom-spacement);
}
#section-quem-somos > header > h1 {
  padding-bottom: var(--title-bottom-spacement);
}
#section-quem-somos > header > p {
  color: #1e1e1e;
}
#section-quem-somos > div {
  padding: 0 var(--margin-content);
  padding-bottom: var(--section-default-spacing);
}

#common-section-contact {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
#common-section-contact #div-contact-container {
  padding: 0 var(--margin-content);
}
#common-section-contact #div-contact-container > div {
  padding: 72px 0;
  text-align: center;
  background-image: linear-gradient(to left, rgb(0, 128, 196), rgb(0, 61, 94));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}
#common-section-contact #div-contact-container > div > h2 {
  color: #f8f9fa;
}
#common-section-contact #div-contact-container > div > p {
  color: #f8f9fa;
}
#common-section-contact #div-contact-container > div > button {
  width: fit-content;
  margin: 0 auto;
  border-radius: 57px;
}
#common-section-contact #div-contact-container > div > button > a {
  font-size: 1.4rem;
  display: block;
  padding: 14px 28px;
  color: #003459;
}

@media (max-width: 768px) {
  #section-quem-somos > div > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #section-quem-somos > div > ul > li {
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  #section-quem-somos > div > ul > li > figure {
    width: 100%;
    height: 230px;
  }
  #section-quem-somos > div > ul > li > figure > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
  }
  #section-quem-somos > div > ul > li > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #section-quem-somos > div > ul > li > div > div {
    display: flex;
    gap: 24px;
  }
  #section-quem-somos > div > ul > li > div > div > span {
    line-height: 36px;
    color: #777c82;
  }
  #section-quem-somos > div > ul > li > div > div > ul {
    display: flex;
    gap: 12px;
  }
  #section-quem-somos > div > ul > li > div > div > ul > li > a {
    width: fit-content;
    display: block;
    padding: 6px 18px;
    background-color: #0080c4;
    border-radius: 50px;
    color: #fff;
    line-height: 24px;
  }
  #common-section-contact > #div-contact-container > div {
    padding: 72px 24px;
  }
  #common-section-contact > #div-contact-container > div > button > a {
    font-size: 1.6rem;
    padding: 12px 18px;
  }
}
#section-productions {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-productions > header {
  padding: 0 var(--margin-content);
  padding-bottom: var(--title-bottom-spacement);
}
#section-productions > header > h1 {
  padding-bottom: var(--title-bottom-spacement);
}
#section-productions > header > p {
  color: #1e1e1e;
}
#section-productions > div {
  padding: 0 var(--margin-content);
  padding-bottom: var(--section-default-spacing);
}

@media (max-width: 768px) {
  #section-productions > div > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #section-productions > div > ul > li {
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  #section-productions > div > ul > li > figure {
    width: 100%;
    height: 230px;
  }
  #section-productions > div > ul > li > figure > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
  }
  #section-productions > div > ul > li > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #section-productions > div > ul > li > div {
    display: flex;
    gap: 24px;
  }
  #section-productions > div > ul > li > div > span {
    line-height: 36px;
    color: #777c82;
  }
  #section-productions > div > ul > li > div > ul {
    display: flex;
    gap: 12px;
  }
  #section-productions > div > ul > li > div > ul > li > a {
    width: fit-content;
    display: block;
    padding: 6px 18px;
    background-color: #0080c4;
    border-radius: 50px;
    color: #fff;
    line-height: 24px;
  }
}
.default-page-section {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
.default-page-section > .page-content {
  padding: 0 var(--margin-content);
}
.default-page-section > .page-content > p {
  line-height: 26px;
}
.default-page-section > header {
  padding: 0 var(--margin-content);
}
.default-page-section .content-default {
  padding: 0 var(--margin-content);
}

.page-default-article {
  padding: 0 var(--margin-content);
  padding-bottom: 24px;
}
.page-default-article > div > p {
  line-height: 26px;
}
.page-default-article .main-image-container {
  padding: 24px 0;
}

.article-editor-default .main-subpage-text > h3 {
  font-size: 24px;
  padding-bottom: 12px;
}
.article-editor-default .main-subpage-text > p > img {
  max-width: 750px;
  border-radius: 12px;
  margin: 0 auto;
}
.article-editor-default .main-subpage-text p:has(.alignleft) {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  line-height: 30px;
}
.article-editor-default .main-subpage-text p:has(.alignright) {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 16px;
  line-height: 30px;
}
.article-editor-default .main-subpage-text p:has(.alignleft) > img,
.article-editor-default .main-subpage-text p:has(.alignright) > img {
  max-width: 600px;
  height: auto;
  align-self: stretch;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .article-editor-default .main-subpage-text p:has(.alignleft) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    line-height: 30px;
  }
  .article-editor-default .main-subpage-text p:has(.alignright) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    line-height: 30px;
  }
  .article-editor-default .main-subpage-text p:has(.alignleft) > img,
  .article-editor-default .main-subpage-text p:has(.alignright) > img {
    max-width: 600px;
    height: auto;
    align-self: stretch;
    object-fit: cover;
    border-radius: 12px;
  }
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft {
  float: left;
  margin: 0 16px 16px 0;
  max-width: 50%;
}
.entry-content .alignright {
  float: right;
  margin: 0 0 16px 16px;
  max-width: 50%;
}
.entry-content .aligncenter {
  display: block;
  margin: 16px auto;
  float: none;
}
.entry-content::after {
  content: "";
  display: block;
  clear: both;
}

#section-search {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: var(--section-default-spacing) 0;
}
#section-search > header {
  padding: 0 var(--margin-content);
  padding-bottom: var(--title-bottom-spacement);
}
#section-search > header > h2 {
  color: var(--color-fflch);
  padding-bottom: var(--title-bottom-spacement);
}
#section-search > header > p {
  font-size: var(--font-size-general);
  color: #1e1e1e;
}
#section-search > header > p > code {
  font-size: var(--font-size-general);
  color: #1e1e1e;
  font-weight: bold;
}
#section-search > div {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
#section-search > div > ul {
  display: flex;
  flex-direction: column;
  padding: 0 var(--margin-content);
  gap: 24px;
}
#section-search > div > ul > li {
  padding: 24px;
  background-color: #ebedee;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#section-search > div > ul > li > strong > a {
  color: var(--news-font-color);
  font-size: 1.8rem;
}
#section-search > div > ul > li > p > a {
  color: #499acf;
  font-size: var(--font-size-general);
}

#material-list-section {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
#material-list-section > div {
  padding: 0 var(--margin-content);
  padding-bottom: var(--section-default-spacing);
}
#material-list-section > div > #material-list-container {
  border-radius: 20px;
  background-image: linear-gradient(to right, rgb(255, 164, 112), rgb(255, 197, 146));
  overflow: hidden;
  position: relative;
}
#material-list-section > div > #material-list-container > ul {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
#material-list-section > div > #material-list-container > ul > li {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 23px 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
#material-list-section > div > #material-list-container > ul > li > div {
  padding-left: 100px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: calc(100% - 343px);
  justify-content: center;
  z-index: 1;
}
#material-list-section > div > #material-list-container > ul > li > div > h2 > a {
  font-family: "Baloo 2", sans-serif;
  display: inline-block;
  width: 100%;
}
#material-list-section > div > #material-list-container > ul > li > div > h2 > a {
  width: 80%;
  display: inline-block;
  line-height: 26px;
}
#material-list-section > div > #material-list-container > ul > li > div > button {
  width: 200px;
  background-color: transparent;
  border: solid #1b1351 1.5px;
  border-radius: 50px;
  position: relative;
  box-sizing: border-box;
}
#material-list-section > div > #material-list-container > ul > li > div > button ::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("assets/media/icon/download-icon.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
#material-list-section > div > #material-list-container > ul > li > div > button > a {
  font-size: var(--font-size-general);
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 28px;
  padding-right: 60px;
}
#material-list-section > div > #material-list-container > ul > li > figure {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 320px;
  border-radius: 0 20px 20px 0;
}
#material-list-section > div > #material-list-container > ul > li > figure > img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.material-controls > button[data-action] {
  background-color: #fff;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translate(0, -50%);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  border: none;
  color: transparent;
  user-select: none;
}
.material-controls > button[data-action=prev] {
  left: 5px;
  background-image: url("assets/media/icon-arrow.svg");
  transform: translate(0, -50%) rotateY(180deg);
}
.material-controls > button[data-action=next] {
  right: 5px;
  width: 24px;
  height: 24px;
  background-image: url("assets/media/icon-arrow.svg");
}

.material-dots {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.material-dots > li > button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #1b1351;
  background: transparent;
  text-indent: -9999px;
  cursor: pointer;
}
.material-dots > li > button.active {
  background: #1b1351;
}

@media (max-width: 1023px) {
  #material-list-section > div {
    padding: 0 var(--margin-content);
    padding-bottom: var(--section-default-spacing);
  }
  #material-list-section > div > #material-list-container {
    border-radius: 20px;
    padding-bottom: 0;
    padding-left: 0;
  }
  #material-list-section > div > #material-list-container > ul {
    width: 100%;
  }
  #material-list-section > div > #material-list-container > ul > li {
    padding-left: 40px;
  }
  #material-list-section > div > #material-list-container > ul > li > div {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
  }
  #material-list-section > div > #material-list-container > ul > li > figure {
    height: 100%;
    min-width: 150px;
    max-width: 250px;
    position: absolute;
    right: 0;
  }
  #material-list-section > div > #material-list-container > ul > li > figure > img {
    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    object-fit: fill;
  }
}
@media (max-width: 768px) {
  #material-list-section > div {
    padding: 0 var(--margin-content);
    padding-bottom: var(--section-default-spacing);
  }
  #material-list-section > div > #material-list-container {
    border-radius: 20px;
    padding-top: 44px;
    padding-bottom: 44px;
    padding-left: 0;
  }
  #material-list-section > div > #material-list-container > ul {
    width: 100%;
  }
  #material-list-section > div > #material-list-container > ul > li {
    text-align: center;
    align-items: center;
    display: flex;
    padding: 0;
    flex-direction: column;
    padding-left: 0;
  }
  #material-list-section > div > #material-list-container > ul > li > div {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
    text-align: center;
    justify-content: center;
    max-width: none;
  }
  #material-list-section > div > #material-list-container > ul > li > div > button {
    width: 100%;
    background-color: transparent;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
    padding-right: 0;
    border: solid #1b1351 1.5px;
    border-radius: 50px;
    position: relative;
    box-sizing: border-box;
  }
  #material-list-section > div > #material-list-container > ul > li > figure {
    display: none;
    height: 300px;
    max-width: none;
    position: static;
    border-radius: 0 20px 20px 0;
    padding: 0 24px;
    width: 100%;
  }
  #material-list-section > div > #material-list-container > ul > li > figure > img {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 0 0 20px 20px;
    object-fit: fill;
  }
  .material-controls > button {
    display: none;
  }
}
#section-partners {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--section-default-spacing);
}
#section-partners > div > div {
  background-color: #fceed5;
  padding: 72px 24px;
  border-radius: 20px;
  text-align: center;
}
#section-partners > div > div > h2 {
  line-height: 50px;
  color: var(--main-font-color);
}
#section-partners > div > div > p {
  font-size: var(--font-size-general);
  line-height: 36px;
}

.card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.card-list > li {
  background-color: var(--card-background-color);
  box-sizing: border-box;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-list > li > figure {
  width: 100%;
  height: 310px;
}
.card-list > li > figure > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
.card-list > li > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-list > li > div > h2 {
  line-height: 26px;
}
.card-list > li > div > h2 > a {
  line-height: 26px;
}
.card-list > li > div > div {
  display: flex;
  gap: 24px;
}
.card-list > li > div > div > span {
  line-height: 36px;
  color: #777c82;
}
.card-list > li > div > div > ul {
  display: flex;
  gap: 12px;
}
.card-list > li > div > div > ul > li > a {
  width: fit-content;
  display: block;
  padding: 6px 18px;
  background-color: #0080c4;
  border-radius: 50px;
  color: #fff;
  line-height: 24px;
}

div.section-breadcrumb {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--breadcrumb-spacing);
  padding-top: var(--breadcrumb-spacing);
}
div.section-breadcrumb > nav.breadcrumb {
  padding: 0 var(--margin-content);
  user-select: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}
div.section-breadcrumb > nav.breadcrumb > .home-path-breadcrumb {
  background-image: url("assets/media/icon/home-breadcrumbs.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: transparent;
  flex-shrink: 0;
}
div.section-breadcrumb > nav.breadcrumb > a, div.section-breadcrumb > nav.breadcrumb > span {
  white-space: nowrap;
  flex-shrink: 0;
}
div.section-breadcrumb > nav.breadcrumb > span {
  margin-left: 10px;
}
div.section-breadcrumb > nav.breadcrumb > a {
  padding: 0 10px;
}
div.section-breadcrumb > nav.breadcrumb > span:last-child {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  flex-shrink: 1;
}

@media (max-width: 768px) {
  div.section-breadcrumb > nav.breadcrumb > span:last-child {
    max-width: 120px;
  }
  div.section-breadcrumb > nav.breadcrumb > a:not(.home-path-breadcrumb):not(:last-of-type) {
    display: none;
  }
}
.gallery-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.gallery-carousel > header {
  padding: 0 var(--margin-content);
  padding-bottom: 24px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  padding: 0 var(--margin-content);
  user-select: none;
}

.gallery-item {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  display: flex;
  cursor: pointer;
}
.gallery-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  object-fit: cover;
}

.gallery-carousel button {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 60%;
  background: #f0f0f0;
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 30px;
  background-image: url("assets/media/icon/arrow-next-page.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: transparent;
}

.prev {
  left: 0;
  transform: rotateY(180deg);
}

.next {
  right: 0;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  inset: 0;
  z-index: 999999;
}
.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  object-fit: cover;
}
.gallery-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .gallery-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    transform: none !important;
  }
  .gallery-item {
    scroll-snap-align: center;
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  color: rgb(27, 19, 81);
  font-weight: 400px;
}

html,
body {
  font-size: var(--font-base-size);
  font-family: "Outfit", sans-serif;
  background-color: var(--color-background);
  min-height: 100vh;
}

main,
section {
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: #1b1351;
}

address,
var,
em {
  font-style: normal;
}

ul,
ol,
menu {
  list-style-type: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
}

h1,
h2,
h3 {
  color: #142d69;
  font-family: "Baloo 2", sans-serif;
  font-size: var(--title-font-size);
  font-weight: bold;
}

button {
  cursor: pointer;
  user-select: none;
}

img {
  display: block;
}

p,
a,
span,
li {
  font-size: var(--font-size-general);
  font-family: "Outfit", sans-serif;
}

textarea {
  resize: none;
}

/*
** Variáveis para Alternador de tamanho da fonte
*/
/* 1) Em telas pequenas, trocar as variáveis base para as versões mobile */
@media (max-width: 1023px) {
  :root {
    --title-font-size: var(--title-font-size-mobile);
    --font-size-general: var(--font-size-general-mobile);
  }
}
/* 2) Quando estiver em "large", sobrescreve para large (desktop ou mobile) */
@media (min-width: 1024px) {
  body[data-font-size=large] {
    --title-font-size: var(--title-large-font-size);
    --font-size-general: var(--general-large-font-size);
  }
}
@media (max-width: 1023px) {
  body[data-font-size=large] {
    --title-font-size: var(--title-large-font-size-mobile);
    --font-size-general: var(--general-large-font-size-mobile);
  }
}