:root {
  --black: #151515;
  --black-soft: #1c1c1c;
  --white: #ffffff;
  --text: #202020;
  --muted: #5d5d5d;
  --gold: #d99b4f;
  --gold-light: #f5c472;
  --gold-dark: #bd7d3b;
  --line: rgba(217, 155, 79, 0.7);
  --page-gutter: 200px;
  --content-width: min(1520px, calc(100vw - (var(--page-gutter) * 2)));
  --serif: "Bodoni 72", Didot, "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
}

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

.mobile-break {
  display: none;
}

.title-mobile-break {
  display: none;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}

.header-inner {
  width: var(--content-width);
  min-height: min(118px, 6.1458vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: min(160px, 8.3333vw) 1fr min(160px, 8.3333vw);
  align-items: center;
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  width: min(164px, 8.5417vw);
  min-height: min(56px, 2.9167vw);
  color: var(--white);
}

.logo-slot img {
  width: 100%;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(26px, 1.3542vw);
  color: #efefef;
  font-size: min(25px, 1.3021vw);
  text-transform: uppercase;
}

.main-nav span {
  color: #9d9d9d;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.section-inner,
.hero-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: auto;
  background-image: url("assets/image-hero-1920x1080.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero-inner {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, min(610px, 31.7708vw)) 1fr;
  align-items: start;
  gap: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(610px, 31.7708vw);
  padding-top: min(238px, 12.3958vw);
  transform: none;
}

.hero-copy h1,
.about-copy h2,
.why-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: min(610px, 31.7708vw);
  font-size: min(64px, 3.3333vw);
  line-height: 0.93;
}

.hero-copy p {
  max-width: min(510px, 26.5625vw);
  margin: min(34px, 1.7708vw) 0 min(42px, 2.1875vw);
  font-size: min(28px, 1.4583vw);
  line-height: 0.96;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(23px, 1.1979vw);
  min-height: min(82px, 4.2708vw);
  border-radius: 999px;
  font-size: min(26px, 1.3542vw);
  font-weight: 400;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-dark {
  padding: min(8px, 0.4167vw) min(8px, 0.4167vw) min(8px, 0.4167vw) min(38px, 1.9792vw);
  color: var(--white);
  background: var(--black);
}

.button-gold {
  position: relative;
  z-index: 2;
  padding: 8px 8px 8px 48px;
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  font-size: 26px;
}

.button-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: min(66px, 3.4375vw);
  height: min(66px, 3.4375vw);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  font-size: 38px;
  line-height: 1;
}

.button-icon img {
  width: min(28px, 1.4583vw);
  height: min(28px, 1.4583vw);
  object-fit: contain;
}

.button-icon-dark {
  color: var(--white);
  background: var(--black);
}

.hero-media {
  display: none;
}

.about-section {
  min-height: 800px;
  color: var(--white);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  background-image: url("assets/about-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.about-copy {
  width: min(850px, 100%);
}

.about-copy h2 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.5vw, 5.7rem);
  line-height: 0.95;
}

.about-copy h2 span {
  display: block;
  color: #f7c77d;
  background: linear-gradient(90deg, #f7c77d 0%, #a86e3c 50%, #f7c77d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-copy p {
  max-width: 850px;
  margin: 36px 0 0;
  font-size: 32px;
  line-height: 1.02;
}

.why-section {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 80px 0 120px;
  background: #fbfbfb;
}

.why-watermark {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: min(2000px, 120vw);
  max-width: none;
  height: auto;
  opacity: 0.7;
  transform: translateX(-50%);
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.why-inner h2 {
  max-width: 1080px;
  text-align: center;
  font-size: clamp(3.5rem, 5.8vw, 6rem);
  line-height: 0.95;
}

.benefits-grid {
  width: min(1280px, 100%);
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.benefit-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 26px 36px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, #121212, #1f1f1f);
  box-shadow: 0 5px 0 rgba(217, 155, 79, 0.12);
}

.check-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.check-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.benefit-card p {
  margin: 0;
  font-size: 29px;
  line-height: 1.02;
}

.site-footer {
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 48px;
  padding: 0 20px 44px;
  color: var(--white);
  background: radial-gradient(circle at 68% 0%, #303030 0, #141414 38%, #111111 100%);
}

.site-footer .button {
  margin-top: -38px;
}

.site-footer p {
  margin: 0;
  color: #efefef;
  font-size: 19px;
}

.sobre-page {
  background: #151515;
}

.sobre-page .site-header {
  position: absolute;
  background: transparent;
}

.sobre-main {
  background: var(--white);
}

.sobre-hero {
  position: relative;
  overflow: hidden;
  min-height: min(1810px, 94.2708vw);
  background-image: url("assets/sobre-nos-bg-clean.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.sobre-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: min(225px, 11.7188vw);
  padding-bottom: min(90px, 4.6875vw);
  color: #111111;
}

.sobre-content h1,
.sobre-profile h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sobre-content h1 {
  font-size: min(64px, 3.3333vw);
}

.sobre-history {
  width: min(1280px, 100%);
  margin-top: min(36px, 1.875vw);
}

.sobre-profile {
  width: min(720px, 42vw);
  margin-top: min(94px, 4.8958vw);
}

.sobre-profile h2 {
  width: min(650px, 100%);
  font-size: min(64px, 3.3333vw);
}

.sobre-content p,
.sobre-content li {
  font-size: min(28px, 1.4583vw);
  line-height: 0.98;
}

.sobre-content p {
  margin: 0;
}

.sobre-content p + p {
  margin-top: min(28px, 1.4583vw);
}

.sobre-profile h2 + p {
  margin-top: min(26px, 1.3542vw);
}

.sobre-profile ul {
  margin: min(22px, 1.1458vw) 0 min(28px, 1.4583vw);
  padding-left: min(54px, 2.8125vw);
}

.sobre-profile li {
  padding-left: min(10px, 0.5208vw);
}

.sobre-footer {
  min-height: 220px;
  align-content: center;
  padding: 0 20px;
}

.cursos-page {
  background: #151515;
}

.cursos-main {
  background: var(--white);
}

.cursos-section {
  position: relative;
  overflow: hidden;
  min-height: min(3164px, 164.7917vw);
  background-color: var(--white);
  background-image: url("assets/cursos-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.cursos-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: min(154px, 8.0208vw);
  padding-bottom: min(110px, 5.7292vw);
}

.cursos-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: min(64px, 3.3333vw);
  font-weight: 400;
  line-height: calc(min(64px, 3.3333vw) + 3px);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.cursos-content h1 span {
  display: inline;
}

.courses-grid {
  margin-top: min(64px, 3.3333vw);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: min(32px, 1.6667vw);
}

.course-card {
  position: relative;
  grid-column: span 2;
  display: block;
  aspect-ratio: 3 / 4;
  background: #f7f7f7;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}

.course-card:hover,
.course-card:focus-visible,
.course-card.is-hovered {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
  filter: saturate(1.08) contrast(1.03);
}

.course-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 5px;
}

.course-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.course-card:hover img,
.course-card:focus-visible img,
.course-card.is-hovered img {
  transform: scale(1.035);
  filter: brightness(1.04) contrast(1.02);
}

.course-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.course-card:last-child {
  grid-column: 4 / span 2;
}

.cursos-cta {
  margin-top: min(86px, 4.4792vw);
  text-align: center;
}

.cursos-cta p {
  margin: 0;
  font-size: min(33px, 1.7188vw);
  line-height: 0.92;
}

.cursos-cta-button {
  margin-top: min(30px, 1.5625vw);
}

.cursos-footer {
  min-height: 220px;
  align-content: center;
  padding: 0 20px;
}

.contato-page {
  background: #151515;
}

.contato-main {
  background: var(--white);
}

.contato-section {
  position: relative;
  overflow: hidden;
  min-height: min(1010px, 52.6042vw);
  background-color: var(--white);
  background-image: url("assets/contato-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.contato-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: min(220px, 11.4583vw);
  text-align: center;
}

.contato-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: min(64px, 3.3333vw);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contato-lead {
  margin: min(24px, 1.25vw) 0 0;
  font-size: min(38px, 1.9792vw);
  line-height: 0.96;
}

.contato-lead span {
  display: inline;
}

.contact-grid {
  margin-top: min(76px, 3.9583vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(54px, 2.8125vw);
}

.contact-card {
  position: relative;
  min-height: min(324px, 16.875vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: min(84px, 4.375vw) min(42px, 2.1875vw) min(42px, 2.1875vw);
  color: var(--white);
  border-radius: min(42px, 2.1875vw);
  background: linear-gradient(135deg, #101010, #202020);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.contact-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 6px;
}

.contact-icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(150px, 7.8125vw);
  height: min(150px, 7.8125vw);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  transform: translate(-50%, -50%);
}

.contact-icon img {
  width: min(82px, 4.2708vw);
  height: min(82px, 4.2708vw);
  object-fit: contain;
}

.contact-card strong {
  font-size: min(44px, 2.2917vw);
  line-height: 1;
}

.contact-card span:not(.contact-icon) {
  margin-top: min(20px, 1.0417vw);
  font-size: min(38px, 1.9792vw);
  line-height: 1;
}

.contato-button {
  margin-top: min(60px, 3.125vw);
  font-size: min(34px, 1.7708vw);
}

.contato-footer {
  min-height: 170px;
  align-content: center;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  :root {
    --content-width: min(1280px, calc(100% - 40px));
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 100px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 18px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 72px 0 0;
  }

  .hero-copy {
    text-align: center;
    justify-self: center;
    transform: none;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    min-height: 620px;
    justify-items: center;
  }

  .hero-media img {
    width: min(720px, 100%);
    transform: none;
  }

  .about-section {
    min-height: 680px;
  }

  .about-copy p {
    font-size: 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cursos-section {
    min-height: auto;
    background-size: auto 100%;
  }

  .cursos-content {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .cursos-content h1 {
    font-size: 42px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .course-card,
  .course-card:nth-last-child(2),
  .course-card:last-child {
    grid-column: auto;
  }

  .cursos-cta p {
    font-size: 25px;
    line-height: 1.05;
  }

  .contato-section {
    min-height: auto;
    padding-bottom: 90px;
    background-size: auto 100%;
  }

  .contato-content {
    padding-top: 150px;
  }

  .contato-content h1 {
    font-size: 44px;
  }

  .contato-lead {
    font-size: 27px;
  }

  .contact-card {
    min-height: 240px;
    border-radius: 26px;
  }

  .contact-icon {
    width: 112px;
    height: 112px;
  }

  .contact-icon img {
    width: 60px;
    height: 60px;
  }

  .contact-card strong {
    font-size: 32px;
  }

  .contact-card span:not(.contact-icon) {
    font-size: 26px;
  }

  .contato-button {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  :root {
    --mobile-gutter: 74px;
  }

  .section-inner,
  .hero-inner,
  .header-inner {
    width: min(100% - 28px, 1280px);
  }

  .site-header {
    position: absolute;
    background: transparent;
  }

  .header-inner {
    width: min(100%, 668px);
    min-height: 118px;
    display: flex;
    justify-content: flex-start;
    padding: 0 58px;
    gap: 34px;
  }

  body:not(.sobre-page):not(.cursos-page):not(.contato-page) .header-inner {
    opacity: 0;
  }

  .logo-slot {
    width: 104px;
    min-height: 44px;
  }

  .main-nav {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(9px, 2.1vw, 14px);
    font-size: clamp(13px, 2.4vw, 16px);
    white-space: nowrap;
  }

  .main-nav span {
    display: inline;
  }

  .hero-section {
    aspect-ratio: auto;
    min-height: calc(100vw * 1506 / 668);
    background-image: url("assets/mobile-hero.png");
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-inner {
    width: 100%;
    min-height: calc(100vw * 1506 / 668);
    position: relative;
    display: block;
    padding: 0;
  }

  .hero-copy {
    position: absolute;
    top: calc(100vw * 1319 / 668);
    left: calc(100vw * 73 / 668);
    width: calc(100vw * 374 / 668);
    max-width: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .hero-copy h1,
  .hero-copy p {
    display: none;
  }

  .hero-copy .button {
    width: 100%;
    min-height: calc(100vw * 74 / 668);
    padding: 0;
    opacity: 0;
  }

  .button-dark,
  .button-gold {
    padding: 8px 8px 8px 34px;
  }

  .button-icon {
    width: 58px;
    height: 58px;
  }

  .button-icon img {
    width: 26px;
    height: 26px;
  }

  .hero-media {
    display: none;
  }

  .about-section {
    height: calc(100vw * 1551 / 1413);
    min-height: 0;
    border-top: 4px solid var(--gold-light);
    border-bottom-width: 0;
    background-image: url("assets/mobile-s2-bg.png");
    background-position: center top;
    background-size: 100% auto;
  }

  .about-overlay {
    height: 100%;
    min-height: 0;
    align-items: flex-start;
  }

  .about-section .section-inner {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .about-copy {
    display: none;
  }

  .about-copy h2 {
    max-width: none;
    font-size: 57px;
    line-height: 0.96;
  }

  .about-copy p {
    max-width: none;
    margin-top: 60px;
    font-size: 25px;
    line-height: 1.06;
  }

  .about-copy p + p {
    margin-top: 60px;
  }

  .mobile-break {
    display: block;
  }

  .why-section {
    padding: 58px 0 96px;
  }

  .why-inner h2 {
    font-size: 57px;
    line-height: 0.96;
  }

  .benefits-grid {
    margin-top: 42px;
  }

  .benefit-card {
    min-height: 96px;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 12px;
  }

  .check-icon {
    width: 34px;
    height: 34px;
    border-width: 3px;
    font-size: 21px;
  }

  .benefit-card p {
    font-size: 25px;
  }

  .site-footer {
    gap: 34px;
  }

  .site-footer .button-gold {
    min-height: 56px;
    gap: 12px;
    padding: 6px 6px 6px 28px;
    font-size: 19px;
    white-space: nowrap;
  }

  .site-footer .button-gold .button-icon {
    width: 44px;
    height: 44px;
  }

  .site-footer .button-gold .button-icon img {
    width: 21px;
    height: 21px;
  }

  .site-footer p {
    max-width: 300px;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
  }

  .cursos-content {
    width: calc(100% - (var(--mobile-gutter) * 2));
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .cursos-content h1 {
    max-width: 410px;
    font-size: 32px;
    line-height: 0.92;
    text-align: center;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .cursos-content h1 span {
    display: block;
    white-space: nowrap;
  }

  .courses-grid {
    width: 100%;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 42px;
  }

  .course-card,
  .course-card:nth-last-child(2),
  .course-card:last-child {
    grid-column: auto;
    width: min(100%, 295px);
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .course-card:hover,
  .course-card:focus-visible,
  .course-card.is-hovered {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    filter: saturate(1.06) contrast(1.03);
  }

  .cursos-cta {
    margin-top: 38px;
  }

  .cursos-cta p {
    font-size: 25px;
    line-height: 1.02;
  }

  .cursos-cta-button {
    min-height: 56px;
    gap: 12px;
    margin-top: 22px;
    padding: 6px 6px 6px 26px;
    font-size: 19px;
    white-space: nowrap;
  }

  .cursos-cta-button .button-icon {
    width: 44px;
    height: 44px;
  }

  .cursos-cta-button .button-icon img {
    width: 21px;
    height: 21px;
  }

  .cursos-section {
    min-height: 0;
    background-color: var(--white);
    background-image: none;
    background-position: center 0;
    background-size: 100% auto;
  }

  .cursos-section.reveal {
    opacity: 1;
    transform: none;
  }

  .contato-content {
    width: min(100% - 28px, 1280px);
    padding-top: 58px;
  }

  .contato-content h1 {
    font-size: 34px;
  }

  .contato-lead {
    font-size: 20px;
    line-height: 1.08;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 78px;
  }

  .contact-card {
    min-height: 220px;
    padding: 70px 22px 30px;
    border-radius: 20px;
  }

  .contact-card span:not(.contact-icon) {
    font-size: 22px;
  }

  .contato-button {
    margin-top: 42px;
    font-size: 18px;
  }

  .sobre-page .site-header {
    position: fixed;
    background: radial-gradient(circle at 68% 0%, #303030 0, #141414 38%, #111111 100%);
  }

  .cursos-page .site-header {
    position: fixed;
    background: radial-gradient(circle at 68% 0%, #303030 0, #141414 38%, #111111 100%);
  }

  .contato-page .site-header {
    position: fixed;
    background: radial-gradient(circle at 68% 0%, #303030 0, #141414 38%, #111111 100%);
  }

  .sobre-page .header-inner {
    width: min(100%, 668px);
    min-height: 118px;
    padding: 0 58px;
    gap: 28px;
    opacity: 1;
  }

  .cursos-page .header-inner {
    width: min(100%, 668px);
    min-height: 118px;
    padding: 0 58px;
    gap: 28px;
    opacity: 1;
  }

  .contato-page .header-inner {
    width: min(100%, 668px);
    min-height: 118px;
    padding: 0 58px;
    gap: 28px;
    opacity: 1;
  }

  .sobre-page .logo-slot {
    flex: 0 0 92px;
    width: 92px;
  }

  .cursos-page .logo-slot {
    flex: 0 0 92px;
    width: 92px;
  }

  .contato-page .logo-slot {
    flex: 0 0 92px;
    width: 92px;
  }

  .sobre-page .main-nav {
    flex: 1 1 auto;
    gap: 10px;
    font-size: 13px;
    min-width: 0;
  }

  .cursos-page .main-nav {
    flex: 1 1 auto;
    gap: 10px;
    font-size: 13px;
    min-width: 0;
  }

  .contato-page .main-nav {
    flex: 1 1 auto;
    gap: 10px;
    font-size: 13px;
    min-width: 0;
  }

  .sobre-page .main-nav span {
    display: inline;
  }

  .cursos-page .main-nav span {
    display: inline;
  }

  .contato-page .main-nav span {
    display: inline;
  }

  .cursos-main {
    padding-top: 118px;
  }

  .contato-main {
    padding-top: 118px;
  }

  .sobre-main {
    padding-top: 96px;
  }

  .sobre-hero {
    min-height: calc((100vw * 3427 / 668) - 28px);
    background-image: url("assets/sobre-mobile-page.png");
    background-position: center -28px;
    background-size: 100% auto;
  }

  .sobre-content {
    display: none;
  }

  .sobre-footer {
    min-height: 170px;
  }
}

@media (max-width: 700px) {
  .sobre-page .site-header,
  .cursos-page .site-header,
  .contato-page .site-header {
    position: fixed;
    background: radial-gradient(circle at 68% 0%, #303030 0, #141414 38%, #111111 100%);
  }

  .sobre-page .header-inner,
  .cursos-page .header-inner,
  .contato-page .header-inner {
    width: min(100%, 668px);
    min-height: 118px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 34px;
    opacity: 1;
  }

  .sobre-page .logo-slot,
  .cursos-page .logo-slot,
  .contato-page .logo-slot {
    flex: 0 0 74px;
    width: 74px;
    min-height: 44px;
  }

  .sobre-page .main-nav,
  .cursos-page .main-nav,
  .contato-page .main-nav {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    max-width: 360px;
    color: #efefef;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .sobre-page .main-nav span,
  .cursos-page .main-nav span,
  .contato-page .main-nav span {
    display: inline;
  }

  .contato-main,
  .contato-footer {
    width: min(100%, 668px);
    margin: 0 auto;
  }

  .contato-main {
    padding-top: 118px;
    background: var(--white);
  }

  .contato-section {
    min-height: 720px;
    background-image: none;
    background-position: center top;
    background-size: auto 720px;
  }

  .contato-section.reveal {
    opacity: 1;
    transform: none;
  }

  .contato-content {
    width: calc(100% - 74px);
    padding-top: 84px;
  }

  .contato-content h1 {
    max-width: 560px;
    margin: 0 auto;
    font-size: 57px;
    line-height: 0.95;
  }

  .contato-lead {
    width: 100%;
    max-width: 520px;
    margin: 44px auto 0;
    font-size: 18px;
    line-height: 1.02;
    text-align: center;
  }

  .contato-lead span {
    display: block;
    white-space: nowrap;
  }

  .cursos-main,
  .cursos-footer {
    width: min(100%, 668px);
    margin: 0 auto;
  }

  .cursos-main {
    padding-top: 118px;
    background: var(--white);
  }

  .cursos-section {
    min-height: 0;
    background-color: var(--white);
    background-image: none;
    background-position: center top;
    background-size: 100% auto;
  }

  .cursos-section.reveal {
    opacity: 1;
    transform: none;
  }

  .cursos-content {
    width: calc(100% - 74px);
    padding-top: 22px;
    padding-bottom: 64px;
  }

  .cursos-content h1 {
    max-width: 410px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .cursos-content h1 span {
    display: block;
    white-space: nowrap;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
  }

  .course-card,
  .course-card:nth-last-child(2),
  .course-card:last-child {
    grid-column: auto;
    width: 295px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .course-card:hover,
  .course-card:focus-visible,
  .course-card.is-hovered {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    filter: saturate(1.06) contrast(1.03);
  }

  .cursos-cta {
    margin-top: 38px;
  }

  .cursos-cta p {
    font-size: 25px;
    line-height: 1.02;
  }

  .cursos-cta-button {
    min-height: 56px;
    gap: 12px;
    margin-top: 22px;
    padding: 6px 6px 6px 26px;
    font-size: 19px;
    white-space: nowrap;
  }

  .cursos-cta-button .button-icon {
    width: 44px;
    height: 44px;
  }

  .cursos-cta-button .button-icon img {
    width: 21px;
    height: 21px;
  }

  .cursos-footer {
    min-height: 170px;
  }
}
