@charset "UTF-8";

/*!
 *  CSS v1.0.1-a (Mobile first CSS)
 */
/*  Default Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --content-width: min(90%, 1024px);
  --font-family-base: 'Lexend', sans-serif;
  --line-height-base: 1.55;
  --line-height-medium: 1.25;
  --line-height-compact: 1.15;
  --scroll-behavior: smooth;

  /* Font sizes */
  --font-size-base: 1.125rem;
  --h1: clamp(2.25rem, 7vw, 2.75rem);
  --h2: 2rem;
  --h3: 1.125rem;

  /* Colors */
  --white: #fafafa;
  --black: #112426;
  --blue: #b3b3e8;
  --purple: #6253ad;
  --blue-bright: #74c0fc;
  --green: #2d4710;
  --light-green: #bddba0;
  --yellow: #E8D6A3;
  --gray: #dfddff;
  --color-accent: var(--blue-bright);
  --primary-focus: var(--blue-bright);
  --color-text: var(--black);
  --color-text-gray: rgba(0, 0, 0, .64);
  --color-text-green: #357c00;
  --color-text-red: #de574d;
  --color-icon: #9292ee;
  --color-background-page: var(--gray);
  --color-background-gray: rgba(22, 51, 0, .05);
  --color-text-decoration: rgba(0, 0, 0, .16);
  --color-border-gray: rgba(0, 0, 0, .12);

  /* Borders */
  --border-radius-medium: 6px;
  --border-radius-large: 12px;

  /* Shadow */
  --shadow-card: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .02);
  --shadow-image: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .02), 0 0 4px rgba(0, 0, 0, .08);
  --shadow-small: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:where(:root) {
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  /* Adjust font size */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Smoothing */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --scroll-behaviour: auto;
  }
}

/* ::-moz-selection {
  background: #1d1f1f;
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: #1d1f1f;
  color: var(--white);
  text-shadow: none;
} */

article,
aside,
details,
caption,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
picture,
section,
summary {
  display: block
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a,
a:visited {
  cursor: pointer
}

b,
strong {
  font-weight: 700;
}

em,
i,
cite {
  font-style: italic
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
  cursor: help
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

hr {
  border: none;
  border-top: 1px solid var(--color-border-gray);
  margin: 2.5rem 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none
}

button {
  transition: background-color 250ms ease 0s;
  overflow: visible;
  cursor: pointer;
  outline: none
}

details {
  display: block
}

summary {
  display: list-item;
}

[hidden] {
  display: none
}

/* Base Default Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  font-size: 100%;
  scroll-behavior: var(--scroll-behavior);
  position: relative;
}

body {
  /* display: grid; */
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: normal;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-background-page);
  width: 100%;
  min-height: 100vh;
}

main {
  min-height: calc(100vh - 410px);
}

h1,
.h1 {
  font-family: var(--font-family-title);
  font-size: var(--h1);
  font-weight: 600;
  line-height: var(--line-height-compact);
  margin-bottom: 1.75rem;
}

.h1-landing {
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1.05;
  font-weight: 400;
}

.h1-landing span:not(.subtitle-h1-landing) {
  --color-text-gradient: radial-gradient(130% 100% at 120% 80%, #112426 30%, #10507f 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background: var(--color-text-gradient);
  background-clip: text;
}

h2,
.h2 {
  font-family: var(--font-family-title);
  font-size: var(--h2);
  font-weight: 500;
  line-height: var(--line-height-compact);
  margin-bottom: 1.75rem;
  text-wrap: balance;
  max-width: 40ch;
}

h2:not(:first-child) {
  margin-top: 5rem;
}

.h2-landing {
  font-size: clamp(2.375rem, 5vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
}

.h2-subtitle {
  margin-bottom: 2.5rem;
}

@media (min-width: 860px) {
  .h2-landing {
    margin-bottom: 0;
  }

  .h2-landing.faq-heading {
    margin-top: 1.375rem;
    margin-bottom: 1.75rem;
  }

  .h2-subtitle {
    margin-bottom: 0;
  }
}

h3,
.h3 {
  font-size: var(--h3);
  font-weight: 700;
  color: inherit;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.h3-form-heading {
  text-wrap: balance;
  font-weight: 500;
  font-size: 1.3125rem;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

ul[class],
ol[class] {
  list-style: none
}

a {
  text-decoration: underline;
  color: var(--color-text);
  color: inherit;
  font-weight: 600;
  text-decoration-color: var(--color-text-decoration);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

a:not([class]):hover {
  color: rgba(0, 0, 0, .5);
  transition: all .25s ease-in-out;
}

a:focus {
  outline: 0;
}

a:focus-visible:not(.logo-block) {
  outline: .1875rem solid var(--primary-focus);
  outline-offset: .0625rem;
}

p:not(:last-child) {
  margin-bottom: 1.125rem;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 20px;
  margin-bottom: 1.125rem;
}

ul:not([class]):last-child,
ol:not([class]):last-child {
  margin-bottom: 0;
}

ul:not([class]) {
  padding-left: 22px;
}

ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: .5rem;
}

ol:not([class]) li {
  padding-left: 2px;
}

ol li::marker {
  font-weight: 600;
}

/* h1 e h2 subtitles
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.subtitle-h1,
.subtitle-h1-landing,
.subtitle-h2,
.subtitle-h2-videos {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: .75rem;
  font-weight: 500;
}

.subtitle-h1-landing {
  margin-bottom: 1rem;
}

.subtitle-h2,
.subtitle-h2-videos {
  font-size: 1.0625rem;
  margin-bottom: .5rem;
}

.subtitle-h1:before,
.subtitle-h1-landing:before,
.subtitle-h2:before,
.subtitle-h2-videos:before {
  background-color: var(--light-green);
  position: relative;
  display: inline-block;
  min-width: 1.375rem;
  border-radius: 50%;
  margin-right: 1rem;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
}

.subtitle-h2:before {
  background-color: var(--blue);
}

.subtitle-h2-videos:before {
  background-color: var(--light-green);
}

/* Form e Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-container {
  background-color: #d2ccff;
  /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, #d2ccff 42%); */
  border: 6px solid var(--gray);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  padding: 2.25rem 1.25rem 2.75rem;
  /* margin-bottom: 2.25rem; */
}

@media (min-width: 500px) {
  .form-container {
    padding: 2.25rem 2rem 2.75rem;
  }
}

.form-result {
  display: none;
}

.form-result.visible {
  display: block;
  margin-top: 2.25rem;
}

.loader {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

::placeholder {
  color: var(--color-text-gray);
}

label {
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-gray);
}

input {
  outline: none;
  width: 100%;
  line-height: 1;
  padding: 1.0625rem 1rem;
  margin: .375rem 0 1.5rem;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px var(--blue);
  transition: box-shadow .3s ease-in-out;
}

input:hover,
input:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .72);
}

input:focus {
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, .8);
}

.button-group {
  display: flex;
  justify-content: space-between;
}

button[type="submit"],
button[type="button"],
button[type="reset"] {
  width: calc(50% - 6px);
  line-height: 1;
  padding: 1.0625rem 0.875rem;
  color: var(--color-text);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 9999px;
  box-shadow: rgba(35, 35, 35, 0.05) 0 1px 2px 0;
  font-weight: 400;
  transition: all .15s ease-in-out;
}

button[type="submit"]:hover,
button[type="button"]:hover {
  background-color: #9696ee;
  border-color: #9696ee;
}

button[type="submit"]:focus-visible,
button[type="button"]:focus-visible,
button[type="reset"]:focus-visible {
  box-shadow: 0 0 0 0.1875rem var(--color-accent);
}

button[type="reset"] {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
  border-color: var(--blue);
}

button[type="reset"]:hover {
  background: var(--blue);
}

/* Main container and header
 –––––––––––––––––––––––––––––––––––––––––––––––––– */

.container,
.header-container {
  max-width: var(--content-width);
  margin-inline: auto;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem;
  max-width: 550px;
}

.header-container img {
  width: 550px;
}

.footer-container {
  font-size: 1rem;
  padding: 3.25rem 0;
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  align-items: center;
}

@media (min-width: 500px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between
  }
}

section {
  padding-block: 5rem;
}

.section-faq {
  padding-block: 6rem 10rem;
}

.logos-section {
  background: var(--black);
  padding: clamp(1.25rem, 5vw, 2.125rem) 0;
}

.logos-wrapper {
  display: flex;
  column-gap: 2rem;
  row-gap: .25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logos-wrapper a:hover {
  opacity: .8;
}

.logo-secretaria-sp {
  width: 460px;
}

.logo-univesp {
  width: 140px;
}

@media (min-width: 860px) {
  .sticky {
    position: sticky;
    top: 1.5rem;
  }
}

.faq-word-styled {
  font-size: 1rem;
  text-align: right;
  margin-bottom: .875rem;
}

.faq-word-styled span {
  background: var(--blue);
  /* background: #afafef; */
  padding: .125rem 1rem;
}

/* Cards
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.card-regular {
  border: 1px solid var(--color-border-gray);
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  row-gap: 1rem;
  margin-block: 2rem;
}

@media (min-width: 860px) {
  .card-regular {
    flex-direction: row;
    padding: 1.75rem;
    column-gap: 1.75rem;
  }
}

.card-regular:first-child {
  margin-top: 0;
}

.card-regular:last-child {
  margin-bottom: 0;
}

.card-regular .card-icon {
  max-width: 100px;
  flex: 0 0 100px;
}

.card-regular h3 {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.card-regular .material-symbols-outlined {
  font-size: 30px;
  color: var(--color-icon);

}

.card-gray {
  background: var(--color-background-gray);
  padding: clamp(2rem, 5vw, 2.5rem) 2rem;
  padding: 2rem;
  border-radius: 6px;
  margin-block: 1.5rem;
}

aside {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-block: 1.5rem;
}

aside .material-symbols-outlined {
  color: var(--color-icon);
  font-size: 28px;
}

aside p {
  font-style: italic;
  font-size: .9375rem;
  line-height: 1.45;
}

/* Two columns
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid2col {
  display: grid;
  gap: 1.75rem;
  margin: 1.5rem 0;
}

.grid2col:first-child {
  margin-top: 0;
}

.grid2col:last-child {
  margin-bottom: 0;
}

.grid2col>* {
  margin-block: 0 !important;
}

@media (min-width: 860px) {
  .grid2col {
    grid-template-columns: repeat(2, minmax(1em, 1fr));
  }
}

.grid-landing {
  display: grid;
  margin-bottom: clamp(5.5rem, 12vw, 9rem);
}

.grid-landing:first-child {
  margin-top: 0;
}

.grid-landing:last-child {
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .grid-landing {
    grid-template-columns: 5fr 7fr;
    align-items: flex-start
  }

  .column-1 {
    padding-right: 5rem;
  }
}

/* .grid-landing+.grid-landing {
  border-top: 1px dashed #aaaa;
  padding-top: 2.5rem;
} */

/**
/* List two columns */
.list2col {
  display: grid;
  column-gap: 2rem;
}

@media (min-width: 860px) {
  .list2col {
    grid-template-columns: repeat(2, minmax(1em, 1fr));
  }
}

/**
/* Two columns centered vertical */
.row-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.figure-wrapper {
  width: 100%;
}

@media (min-width: 860px) {
  .row-wrapper {
    flex-direction: row;
  }

  .text-wrapper,
  .figure-wrapper {
    width: 50%;
  }

  /* .figure-wrapper {
    margin-left: 24px;
  } */
}

/* List with stylized numbering
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.list-styled-numbers {
  list-style: none;
  counter-reset: num;
  margin-block: 1.75rem;
}

.list-styled-numbers>li {
  margin: 0 0 0 38px;
  padding-left: 0;
  counter-increment: num;
}

.list-styled-numbers>li:not(:last-child) {
  margin-bottom: 1.125rem
}

.list-styled-numbers>li::before {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  min-width: 27px;
  height: 27px;
  margin-right: 11px;
  margin-left: -38px;
  border-radius: 50%;
  font-size: .9375rem;
  content: counter(num);
  background-color: #e5e5e5;
  background-color: var(--color-text);
  color: #dfddff;
}

/* Simples Classes
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.background-black {
  background: var(--black);
}

.background-green {
  background: var(--green);
}

.background-light-green {
  background: var(--light-green);
}

.background-blue {
  background: var(--blue);
}

.background-img-flowers {
  background-image: url("../img/bg-flowers.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 165px;
}

.text-green {
  color: var(--color-text-green);
}

.text-red {
  color: var(--color-text-red);
}

.text-yellow {
  color: var(--yellow);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: .007em;
}

.text-italic {
  font-style: italic;
}

.text-align-center {
  text-align: center;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-800 {
  font-weight: 800;
}

.font-size-small {
  font-size: .9375rem;
}

.flex-icon-text {
  display: flex;
  gap: .75rem;
}

.flex-icon-text .material-symbols-outlined {
  font-size: 26px;
  margin-top: -2px;
}

.column-gap-large {
  column-gap: 3rem;
}

.gap-for-text {
  column-gap: 2rem;
  row-gap: 1.125rem;
}

.gap-small {
  gap: 1.25rem;
}


/* Nav-tabs e nav-tabs-videos navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tabs,
.tabs-wrapper {
  margin: 1.5rem 0;
}

.tabs-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

@media (min-width: 860px) {
  .tabs-wrapper {
    flex-direction: row;
    column-gap: 1.75rem;
  }
}

.tabs-wrapper:first-child {
  margin-top: 0;
}

.tabs-wrapper:last-child {
  margin-bottom: 0;
}

.tabs-wrapper>div {
  margin-top: .8125rem;
}

.nav-tabs-content>:last-child {
  margin-bottom: 0 !important;
}

ul.nav-tabs {

  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
}

ul.nav-tabs li {
  list-style: none;
}

ul.nav-tabs li::before {
  content: "";
}

ul.nav-tabs a {
  display: flex;
  gap: .75rem;
  padding: .8375rem 1rem;
  text-decoration: none;
  min-width: 240px;
  background: rgba(0, 0, 0, .05);
  border-radius: 3px;
}

ul.nav-tabs li.active a,
ul.nav-tabs [aria-selected] {
  background: var(--light-green);
}

ul.nav-tabs a:hover {
  color: var(--black);
  background: var(--light-green);
}

/* Details (accordions)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

details {
  padding: 0 1.375rem;
  border-bottom: 1px solid var(--color-border-gray);
  border-left: 1px solid var(--color-border-gray);
  border-right: 1px solid var(--color-border-gray);
}

.details-landing {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .64);
  border-bottom: 1px solid rgba(0, 0, 0, .64);
  padding: 0;
  /* color: #454547; */
}

details[open] {
  padding-bottom: 1.375rem;
}

.details-landing[open] {
  padding-bottom: 2.5rem;
}

details+details {
  margin-top: 1rem;
}

.details-landing+.details-landing {
  margin-top: 0;
  border-top: 0;
}

details:first-of-type {
  margin-top: 0;
}

details:last-of-type {
  margin-bottom: 0;
}

details>:last-child {
  margin-bottom: 0;
}

summary {
  position: relative;
  cursor: pointer;
  outline: none;
  background: var(--light-green);
  margin-inline: -1.375rem;
  padding-block: 1rem;
  padding-right: 50px;
  padding-left: 1.375rem;
  font-weight: 500;
  line-height: 1.45em;
  text-wrap: balance
}

summary:hover {
  background-color: rgba(189, 219, 160, .85);
}

.details-landing summary {
  background-color: transparent;
  padding: 1.75rem 2.5rem 1.75rem 0;
  margin-inline: 0;
}

.details-landing summary h3 {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.35em;
  color: var(--color-text);
  margin: 0;
}

details[open] summary {
  margin-bottom: 1.375rem;
}

.details-landing[open] summary {
  margin-bottom: 0;
}

details[open] summary+figure {
  margin-top: 1.375rem;
}

details summary::-webkit-details-marker {
  display: none;
  content: "";
}

summary::marker {
  display: none;
  content: none;
}

summary::before,
summary::after {
  content: '';
  width: 16px;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  top: calc(50% - 1px);
  right: 1.125rem;
  transform: translateY(-50%);
  transition: 200ms;
}

.details-landing summary::before,
.details-landing summary::after {
  right: 0;
}

summary::after {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
  top: calc(50% - 2px);
}

[open] summary::after {
  transform: rotate(0deg);
}

details summary:focus-visible {
  outline: .1875rem solid var(--primary-focus);
  outline-offset: .0625rem;
}

iframe,
figure img,
video {
  display: block;
  overflow: hidden
}

figure img {
  border-radius: var(--border-radius-large);
}

video,
iframe[src*="youtube"],
iframe[src$=".mp4"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  /* min-height: 300px; */
  box-shadow: var(--shadow-image);
  border-radius: 12px;
}

figure img {
  margin: 0 auto;
}

figure {
  position: relative;
  margin: 2rem auto;
}

figure:first-child {
  margin-top: 0;
}

figure:last-child {
  margin-bottom: 0;
}

:where(figcaption, caption) {
  line-height: 1.4;
  color: var(--color-text-gray);
  font-size: .9375rem;
  margin-top: .5rem
}

/* Styled blockquote
–––––––––––––––––––––––––––––––––––––––––––––––––– */
blockquote {
  padding: 0 0 0 46px;
  position: relative;
  font-style: normal;
  border: none;
  margin: 2.5rem 0 2rem 0;
}

blockquote:before {
  background: url('data:image/svg+xml,<svg width="27px" height="21px" viewBox="0 0 27 21" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-opacity="1"><g transform="translate(-378.000000, -2778.000000)" stroke="%23bddba0" fill="%23bddba0"><g transform="translate(340.000000, 2788.000000)"><path d="M38.9,3.5 C38.9,7.88 41.78,10.46 45.02,10.46 C48.02,10.46 50.54,7.94 50.54,4.88 C50.54,1.94 48.44,-0.04 45.92,-0.04 C45.32,-0.04 44.78,0.08 44.54,0.14 C45.14,-2.02 47.66,-4.6 49.58,-5.56 L45.74,-8.68 C41.54,-5.68 38.9,-1.42 38.9,3.5 Z M52.4,3.5 C52.4,7.88 55.34,10.46 58.58,10.46 C61.52,10.46 64.04,7.94 64.04,4.88 C64.04,1.94 62,-0.04 59.42,-0.04 C58.82,-0.04 58.28,0.08 58.04,0.14 C58.7,-2.02 61.16,-4.6 63.08,-5.56 L59.24,-8.68 C55.04,-5.68 52.4,-1.42 52.4,3.5 Z"></path></g></g></g></svg>');
  background-size: 34px 22px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 22px;
}

blockquote:first-child {
  margin-top: 0;
}

blockquote:last-child {
  margin-bottom: 0;
}

blockquote>footer {
  color: var(--color-text-gray);
  font-size: .9375rem;
  margin-top: 1rem
}


/* Flipped cards
 –––––––––––––––––––––––––––––––––––––––––––––––––– */

.cards {
  --time: 0.707s;
  display: grid;
}

.card {
  perspective: 40rem;
}

.card-body {
  display: flex;
  transform-style: preserve-3d;
  transition: var(--time) transform;
  min-width: 100%;
}

.card-front,
.card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  min-width: 100%;
  max-width: 100%;
}

.card-back {
  transform: rotateX(-180deg) translate(-100%, 0);
}

/* Make it Pretty */
.cards {
  gap: 1.5rem;
  grid-auto-rows: 1fr;
  justify-content: center;
  margin-block: 1.75rem;
}

.cards:last-child {
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .cards {
    grid-template-columns: repeat(2, minmax(1em, 1fr));
  }
}

.card {
  display: flex;
  transition: z-index, transform calc(var(--time) / 4);
  transition-delay: var(--time), 0s;
  z-index: 0;
  max-width: 450px;
  min-width: 100%;
  cursor: pointer;
}

.card:focus {
  outline: 0;
}

.card:focus-visible {
  outline: .1875rem solid var(--primary-focus);
  outline-offset: .0625rem;
}

.card.card.is-flipped {
  transition-delay: 0s;
  z-index: 1;
}

.card:active {
  transform: scale(0.975);
}

.card-body {
  border-radius: 12px;
  flex: 1;
}

.card-front,
.card-back {
  /* box-sizing: border-box; */
  padding: 2rem;
  border-radius: 18px;
  background: var(--blue);
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04);
  --time-animation-200: .20s;
  transition: border-radius var(--time-animation-200) linear;
}

.card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  /* outline-offset: -12px;
  outline: 1px solid #fafafa; */
  min-height: 450px;

  background: var(--black);
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.card-front:hover,
.card-back:hover {
  border-radius: 50px;
}

.card.is-flipped .card-body {
  transform: rotateX(-180deg);
}

.card h3 {
  color: var(--blue);
  /* text-wrap: balance; */
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.15;
  font-family: var(--font-family-title);
}

.card button {
  background: var(--blue);
  display: flex;
  gap: .75rem;
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 8px 18px;
}

.card button:hover {
  background-color: var(--light-green);
  border: 2px solid var(--light-green);
}

.card button:hover .material-symbols-outlined {
  transform: rotate(-130deg);
  transition: all .20s linear;
}

.card button:focus-visible {
  outline: .1875rem solid var(--primary-focus);
  outline-offset: .0625rem;
}


/* Quizzes: Falso/Verdadeiro e Múltipla Escolha
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.quiz-container {
  --color-background-gray-hover: rgba(22, 51, 0, .09);
  --color-background-green: var(--light-green);
  --color-background-light-green: rgba(189, 219, 160, .12);
  /* --color-background-light-green: rgba(234, 239, 233, .85); */
  --color-background-light-red: rgba(222, 87, 77, .04);
}

.quiz-container:not(:last-child) {
  margin-bottom: 1.75rem;
}

.quiz-container .quiz-question {
  position: relative;
  display: flex;
  column-gap: .75rem;
  background-color: var(--color-background-green);
  padding: 1.25rem;
  /* border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0; */
  box-shadow: var(--shadow-card);
}

.quiz-container .quiz-question .material-symbols-outlined {
  font-size: 26px;
}

.quiz-container .quiz-question+details {
  border-top: 0;
}

.quiz-container details {
  padding: 0 1.25rem;
  margin: 0;
  /* background: var(--color-background-gray); */
  border-block: 1px solid var(--color-border-gray);
  box-shadow: none;
}

.quiz-container details+details {
  border-block-start: none;
}

.quiz-container details:not([open]):hover {
  background: var(--color-background-gray-hover);
  background: var(--color-background-gray);
}

/* .quiz-container details:not([open]):hover summary::after {
  color: var(--color-accent);
} */

.quiz-container details summary {
  padding: 1.125rem 3rem 1.125rem 0;
  margin: 0;
  font-weight: 400;
  background: inherit;
}

.quiz-container details summary:hover {
  color: inherit;
}

.quiz-container details summary:focus-visible {
  outline: 0;
}

.quiz-container details[open] {
  padding-bottom: 1rem;
  font-size: .9375rem;
}

.quiz-container details[open] summary {
  padding-bottom: 1.125rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.quiz-container details>summary::before {
  display: none;
}

.quiz-container details:not([class]) summary::after {
  width: 24px;
  height: 24px;
  border: none;
  inset-block-start: calc(50% - 12px);
  inset-inline-end: 0;
  transform: none;
  content: "check_box_outline_blank";
  font: normal normal normal 24px/24px Material Icons;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-transform: none;
  word-wrap: normal;
}

.quiz-container details:not([data-answer="correct"])[open] {
  background: var(--color-background-light-red);
  border-bottom: 2px solid var(--color-text-red);
}

.quiz-container details[data-answer="correct"][open] {
  background: var(--color-background-light-green);
  border-bottom: 2px solid var(--color-text-green);
}

.quiz-container details:not([data-answer="correct"])[open] summary::after {
  color: var(--color-text-red);
  content: "not_interested";
}

.quiz-container details[data-answer="correct"][open] summary::after {
  color: var(--color-text-green);
  content: "check";
}

.quiz-container details:not([open]) summary:where(:focus-visible):not([class]):after {
  color: var(--blue-bright);
}

/* Styles for Print
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media print {

  @page {
    margin: 1.25cm 1cm;
  }

  a {
    text-decoration-color: var(--color-text-gray);
    text-decoration-thickness: 1px;
  }

  html,
  body {
    margin: 0 !important;
  }
}