:root {
  --red: #b7192c;
  --cream: #f6efe5;
  --gray: #ececeb;
  --ink: #5b5b5b;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--gray);
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 30;
  background: #fff;
  padding: 0.75rem;
}
.skip:focus {
  top: 1rem;
}
.hero {
  display: block;
  background: #ddd;
}
.hero img {
  width: 100%;
  height: auto;
}
.section-pad {
  padding-left: max(8vw, 24px);
  padding-right: max(8vw, 24px);
}
.intro {
  text-align: center;
  background: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
}
.intro h1,
.story h2,
.more h2 {
  color: var(--red);
  font-weight: 800;
}
.intro h1 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 20px;
}
.intro p {
  max-width: 1110px;
  margin: auto;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.58;
}
.featured {
  padding-top: 55px;
  padding-bottom: 55px;
}
.story {
  max-width: 1280px;
  margin: 0 auto 105px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 42px;
  align-items: center;
}
.story:last-child {
  margin-bottom: 0;
}
.story .video {
  order: 2;
}
.story.reverse {
  grid-template-columns: 5fr 7fr;
}
.story.reverse .video {
  order: 0;
}
.story h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.28;
  margin: 0 0 12px;
}
.story p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
.video {
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lead-section {
  background: #fafafa;
  padding: 64px 24px;
}
.lead-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  width: min(1180px, 100%);
  margin: auto;
  border-radius: 32px;
  background: linear-gradient(110deg, #c7192a 0%, #c7192a 45%, #cf2632 100%);
  color: #fff;
  box-shadow: 0 14px 35px rgba(106, 22, 29, 0.12);
}
.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background: radial-gradient(circle at 48% 40%, rgba(255,255,255,.07), transparent 55%);
  pointer-events: none;
}
.lead-text {
  position: relative;
  z-index: 1;
  padding: 62px 30px 62px 58px;
  align-self: center;
}
.eyebrow {
  font-weight: 800;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 16px;
}
.lead-text h2,
.structure h2 {
  font-family: "Open Sans", Arial, sans-serif;
}
.lead-text h2 {
  color: #f5cf27;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.35;
  margin: 0 0 14px;
  font-weight: 800;
}
.lead-text:not(:has(.eyebrow)) h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}
.structure h2 em {
  font-weight: 400;
}
.lead-text > p:last-child {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}
.lead-card > .form-slot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 38px 56px 38px 28px;
}
.interest-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin: 0;
}
.interest-form input:not([type="checkbox"]),
.interest-form select {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 0 16px;
  font: inherit;
  color: #666;
  background: #fff;
}
.interest-form input[name="nome"] {
  grid-column: 1/-1;
}
.interest-form > select {
  grid-column: 1/-1;
}
.interest-form fieldset,
.interest-form select:last-of-type {
  grid-column: 1/-1;
}
.interest-form fieldset {
  border: 0;
  margin: 0;
  padding: 8px 0 4px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 20px;
}
.interest-form legend {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
}
.interest-form label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  line-height: 1.3;
}
.interest-form input[type="checkbox"] {
  appearance: auto;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #edc72f;
}
.interest-form button {
  grid-column: 1/-1;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #f5cf27;
  color: #c7192a;
  padding: 16px 24px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.structure {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 600px;
}
.structure-photo {
  position: relative;
  overflow: hidden;
}
.structure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(183, 25, 44, 0.86);
  color: #fff;
  font: 400 2.2rem/1 Georgia, serif;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}
.gallery-prev { left: 22px; }
.gallery-next { right: 22px; }
.structure-copy {
  background: var(--cream);
  padding: 70px clamp(25px, 5vw, 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.structure h2 {
  color: var(--red);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 30px;
}
.structure-copy p {
  line-height: 1.75;
}
.more {
  text-align: center;
  background: #fff;
  padding-top: 65px;
  padding-bottom: 80px;
}
.more h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 14px;
}
.more > p {
  line-height: 1.6;
}
.more-grid {
  max-width: 1080px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
footer {
  background: #f2f2f2;
  color: #929292;
}
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 26px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
}
.footer-inner p {
  line-height: 1.65;
  font-size: 0.86rem;
  margin: 16px 0 0;
}
.footer-inner strong {
  color: #c72a35;
  font-size: 0.95rem;
}
.footer-logo {
  width: 180px;
  height: auto;
}
.school-advisor {
  display: block;
  width: 180px;
  height: auto;
  margin-top: 20px;
}
.footer-social h2,
.footer-brands h2 {
  color: #8d8d8d;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 12px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a {
  color: #c72a35;
  text-decoration: none;
  line-height: 1;
}
.social-links svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.footer-brands {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 2px solid #e6e6e6;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 58px;
}
.brand-row img {
  display: block;
  max-width: 100px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.technologies img {
  filter: grayscale(1);
  opacity: 0.68;
}
.technologies img:nth-child(2) {
  max-width: 62px;
}
.copyright {
  text-align: center;
  color: #999;
  padding: 6px 24px 18px;
  font-size: 0.78rem;
}
.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20c663;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px #0003;
  z-index: 20;
}
.whatsapp svg {
  width: 34px;
  height: 34px;
}
.aerial-card {
  grid-template-columns: 1fr 1fr;
  background: #c7192a;
}
.aerial-card > .form-slot {
  padding: 48px;
  order: 1;
}
.aerial-card > img {
  order: 2;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.aerial-card::before {
  display: none;
}
@media (max-width: 760px) {
  .story,
  .story.reverse,
  .structure {
    grid-template-columns: 1fr;
  }
  .story {
    gap: 22px;
    margin-bottom: 80px;
  }
  .story .video,
  .story.reverse .video {
    order: 0;
  }
  .intro {
    padding-top: 38px;
  }
  .intro h1 br {
    display: none;
  }
  .featured {
    padding-bottom: 30px;
  }
  .lead-section {
    padding: 36px 16px;
  }
  .lead-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .aerial-card {
    grid-template-columns: 1fr;
  }
  .aerial-card > .form-slot {
    padding: 36px 28px;
  }
  .aerial-card > img {
    min-height: 280px;
  }
  .lead-text {
    padding: 36px 28px 18px;
  }
  .lead-card > .form-slot {
    padding: 18px 28px 36px;
  }
  .interest-form,
  .lead-bottom .interest-form {
    grid-template-columns: 1fr;
  }
  .interest-form fieldset,
  .interest-form select:last-of-type {
    grid-column: 1;
  }
  .interest-form fieldset {
    grid-template-columns: 1fr;
  }
  .more-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 42px 0 32px;
  }
  .footer-social h2 br {
    display: none;
  }
  .footer-brands {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 30px 0 35px;
  }
  .brand-row {
    flex-wrap: wrap;
    gap: 24px 30px;
  }
  .brand-row img {
    max-width: 100px;
    max-height: 48px;
  }
  .structure {
    min-height: 0;
  }
  .structure-photo {
    min-height: 350px;
  }
}
