@font-face {
      font-family: "Amelia";
      src: url("../fontes/TipoType - Amelia.otf") format("opentype");
      font-display: swap;
      font-style: normal;
      font-weight: 400;
    }

    @font-face {
      font-family: "Amelia";
      src: url("../fontes/TipoType - Amelia-Bold.otf") format("opentype");
      font-display: swap;
      font-style: normal;
      font-weight: 700;
    }

    :root {
      --blue-950: #11133f;
      --blue-900: #1d2057;
      --blue-800: #262262;
      --blue-700: #003087;
      --blue-500: #0055a5;
      --sky-100: #e8f4fa;
      --sky-200: #c9e7f5;
      --cream: #f6efe4;
      --cream-2: #fffaf1;
      --gold: #f5a800;
      --gold-2: #ffd463;
      --ink: #20233a;
      --muted: #62677b;
      --line: rgba(29, 32, 87, .14);
      --white: #fff;
      --shadow: 0 24px 70px rgba(17, 19, 63, .14);
      --shadow-sm: 0 10px 30px rgba(17, 19, 63, .10);
      --font-display: "Plus Jakarta Sans", Arial, sans-serif;
      --font-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
      --font-accent: "Spectral", Georgia, serif;
      --font-brand: "Amelia", "Plus Jakarta Sans", Arial, sans-serif;
      --maxw: 1180px;
      --header-h: 78px;
      --radius: 8px;
      --radius-lg: 22px;
      --radius-xl: 34px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-h) + 24px);
      max-width: 100%;
      overflow-x: clip;
    }

    body {
      margin: 0;
      background: var(--cream-2);
      color: var(--ink);
      font-family: var(--font-body);
      max-width: 100%;
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }

    body.nav-open { overflow: hidden; }

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

    .container {
      width: min(100% - 40px, var(--maxw));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -60px;
      z-index: 999;
      background: var(--gold);
      color: var(--blue-950);
      padding: 10px 14px;
      border-radius: var(--radius);
      font-weight: 800;
      transition: top .2s ease;
    }

    .skip-link:focus { top: 16px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 16px;
      color: var(--blue-700);
      font-size: .78rem;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .eyebrow svg { width: 16px; height: 16px; }
    .eyebrow--gold { color: var(--gold-2); }
    .eyebrow--white { color: rgba(255,255,255,.82); }

    .display {
      margin: 0;
      color: var(--blue-900);
      font-family: var(--font-display);
      font-weight: 900;
      line-height: 1.04;
      text-wrap: balance;
    }

    .display em {
      color: var(--blue-700);
      font-family: var(--font-accent);
      font-style: italic;
      font-weight: 800;
    }

    .display--hero { font-size: 4.15rem; max-width: 800px; }
    .display--section { font-size: 2.65rem; }
    .display--compact { font-size: 2.05rem; }

    .lead {
      margin: 20px 0 0;
      max-width: 690px;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.65;
      text-wrap: pretty;
    }

    .body {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.62;
      text-wrap: pretty;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      border: 2px solid transparent;
      border-radius: 999px;
      padding: 13px 24px;
      font-family: var(--font-body);
      font-size: .96rem;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
    }

    .btn svg { width: 18px; height: 18px; }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn--primary { background: var(--gold); color: var(--blue-950); border-color: var(--gold); }
    .btn--primary:hover { background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 14px 30px rgba(245,168,0,.24); }
    .btn--blue { background: var(--blue-800); color: #fff; border-color: var(--blue-800); }
    .btn--blue:hover { background: var(--blue-950); border-color: var(--blue-950); }
    .btn--candidate { background: #fff; color: var(--blue-800); border-color: rgba(29,32,87,.24); }
    .btn--candidate:hover { background: var(--sky-100); border-color: var(--blue-500); }
    .btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
    .btn--ghost:hover { background: #fff; color: var(--blue-900); border-color: #fff; }
    .btn--outline { background: transparent; color: var(--blue-800); border-color: var(--blue-800); }
    .btn--outline:hover { background: var(--blue-800); color: #fff; }

    .section {
      position: relative;
      overflow: hidden;
      padding: 96px 0;
    }

    .section--cream { background: var(--cream-2); }
    .section--white { background: var(--white); }
    .section--sky { background: var(--sky-100); }
    .section--navy { background: var(--blue-900); color: #fff; }
    .section--navy .display, .section--navy .body, .section--navy .lead { color: #fff; }
    .section--navy .lead, .section--navy .body { color: rgba(255,255,255,.78); }

    .section__head {
      max-width: 780px;
      margin-bottom: 42px;
    }

    .geo {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }

    .geo--gold {
      width: 86px;
      height: 86px;
      background: var(--gold-2);
      border-radius: 18px;
    }

    .geo--sky {
      width: 190px;
      height: 190px;
      background: var(--sky-200);
      border-radius: 30px;
    }

    .geo--outline {
      width: 70px;
      height: 70px;
      border: 2px solid rgba(245,168,0,.62);
      border-radius: 16px;
    }

    .hd {
      position: fixed;
      inset: 0 0 auto;
      z-index: 80;
      height: var(--header-h);
      background: rgba(255,250,241,.92);
      border-bottom: 1px solid rgba(29,32,87,.12);
      backdrop-filter: blur(14px);
    }

    .hd__in {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      height: var(--header-h);
    }

    .hd__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex: none;
    }

    .logo-pair {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      max-width: 100%;
    }

    .logo-pair__mark {
      flex: none;
      object-fit: contain;
    }

    .logo-pair__divider {
      flex: none;
      width: 1px;
      height: 38px;
      background: rgba(29,32,87,.18);
    }

    .logo-pair--header .logo-pair__mark--ituiutaba {
      width: 124px;
      height: 58px;
    }

    .logo-pair--header .logo-pair__mark--agro {
      width: 108px;
      height: 58px;
    }

    .hd__nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex: 1;
    }

    .hd__nav a {
      color: var(--blue-900);
      font-size: .88rem;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
      opacity: .82;
      transition: opacity .16s ease, color .16s ease;
    }

    .hd__nav a:hover {
      color: var(--blue-500);
      opacity: 1;
    }

    .hd__actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: none;
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--blue-900);
      cursor: pointer;
      place-items: center;
    }

    .menu-btn svg { width: 21px; height: 21px; }

    .hero {
      position: relative;
      min-height: 82vh;
      display: grid;
      align-items: center;
      padding: calc(var(--header-h) + 44px) 0 0;
      background:
        linear-gradient(90deg, rgba(17,19,63,.97) 0%, rgba(29,32,87,.92) 52%, rgba(29,32,87,.70) 78%, rgba(29,32,87,.42) 100%),
        url("../imagems/Ituiutaba.jpg") center / cover no-repeat;
      color: #fff;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      z-index: 0;
      right: max(clamp(6%, 13vw, 18%), calc((100vw - var(--maxw)) / 2 + 82px));
      bottom: 66px;
      width: clamp(180px, 16vw, 250px);
      height: clamp(330px, 47vh, 430px);
      background: rgba(245,168,0,.72);
      border-radius: 36px;
      transform: rotate(0deg);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 0;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(17,19,63,0) 0%, rgba(17,19,63,.22) 72%, rgba(17,19,63,.64) 100%);
      pointer-events: none;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(360px, .65fr);
      gap: 30px;
      align-items: end;
      min-height: calc(82vh - var(--header-h) - 44px);
    }

    .hero .display {
      color: #fff;
      text-transform: uppercase;
    }

    .hero .display em {
      color: var(--gold-2);
    }

    .hero .lead {
      color: rgba(255,255,255,.84);
      max-width: 690px;
    }

    .hero__cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .hero__copy {
      align-self: center;
      padding: 0 0 72px;
    }

    .hero__person {
      position: relative;
      display: block;
      width: min(100%, 470px);
      margin: 0 0 0 auto;
      z-index: 1;
      filter: drop-shadow(0 22px 34px rgba(17,19,63,.34));
    }

    .hero__person img {
      width: 100%;
      max-height: min(70vh, 635px);
      object-fit: contain;
      object-position: bottom center;
    }

    .intro {
      padding: 34px 0;
      background: var(--cream);
      border-bottom: 1px solid var(--line);
    }

    .intro__grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .intro__title {
      margin: 0;
      color: var(--blue-900);
      font-size: 1.35rem;
      font-weight: 900;
      line-height: 1.25;
    }

    .intro__items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .intro__item {
      min-height: 92px;
      padding: 16px;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .intro__item b {
      display: block;
      color: var(--blue-800);
      font-size: 1.3rem;
      line-height: 1;
    }

    .intro__item span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 800;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .story {
      overflow: visible;
      background:
        linear-gradient(90deg, #fff 0 50%, var(--sky-100) 50% 100%);
    }

    .story__grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 62px;
      align-items: start;
    }

    .founders {
      position: sticky;
      top: calc(var(--header-h) + 24px);
      align-self: start;
      height: fit-content;
      display: grid;
      gap: 24px;
    }

    .founder {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 142px;
      gap: 22px;
      min-height: 232px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--blue-700);
      color: #fff;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .founder--light {
      background: var(--sky-200);
      color: var(--blue-900);
    }

    .founder::before {
      content: "";
      position: absolute;
      right: -18px;
      bottom: -18px;
      width: 74px;
      height: 74px;
      border-radius: 16px;
      background: rgba(255,255,255,.14);
    }

    .founder__name {
      margin: 0 0 10px;
      font-weight: 900;
      color: inherit;
    }

    .founder__role {
      display: block;
      max-width: 24ch;
      margin-bottom: 18px;
      color: currentColor;
      font-size: .72rem;
      font-weight: 800;
      line-height: 1.3;
      opacity: .74;
    }

    .founder .body {
      color: currentColor;
      font-size: .86rem;
      line-height: 1.5;
      opacity: .88;
    }

    .founder__photo {
      align-self: center;
      width: 142px;
      aspect-ratio: 1 / 1.35;
      border-radius: 18px;
      background: rgba(255,255,255,.24);
      object-fit: cover;
    }

    .story__copy {
      position: relative;
      padding: 54px 46px;
      border-radius: var(--radius-xl);
      background: rgba(232,244,250,.78);
    }

    .story__copy .body + .body { margin-top: 16px; }

    .story__logo {
      position: absolute;
      right: 34px;
      top: 30px;
      width: 68px;
      height: 54px;
      object-fit: contain;
    }

    .story-visual {
      padding: 0 0 96px;
      background:
        linear-gradient(90deg, #fff 0 50%, var(--sky-100) 50% 100%);
    }

    .story-visual__image {
      display: block;
      width: 100%;
      height: clamp(300px, 42vw, 520px);
      border-radius: 0 28px 28px 0;
      object-fit: cover;
      box-shadow: var(--shadow-sm);
    }

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

    .campus .geo--sky {
      right: -60px;
      top: 46px;
      opacity: .22;
    }

    .campus__grid {
      display: grid;
      grid-template-columns: .94fr 1.06fr;
      gap: 58px;
      align-items: center;
    }

    .campus__media {
      position: relative;
      min-height: auto;
    }

    .campus__media::before {
      display: none;
    }

    .campus__img-main {
      display: block;
      width: 100%;
      height: auto;
      max-height: 600px;
      border-radius: 0 28px 28px 0;
      object-fit: contain;
      box-shadow: var(--shadow);
    }

    .campus__copy .display,
    .campus__copy .display em { color: #fff; }

    .campus__facts {
      display: grid;
      gap: 14px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    .campus__facts li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      background: rgba(255,255,255,.07);
    }

    .campus__facts svg {
      width: 22px;
      height: 22px;
      color: var(--gold-2);
      margin: 3px auto 0;
    }

    .campus__facts b {
      display: block;
      color: #fff;
      font-size: .98rem;
      line-height: 1.2;
    }

    .campus__facts span {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.72);
      font-size: .9rem;
      line-height: 1.45;
    }

    .course-cats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .course-cat {
      min-height: 214px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--blue-900);
      cursor: pointer;
      text-align: left;
      font-family: var(--font-sans);
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }

    .course-cat:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
    }

    .course-cat.on {
      border-color: var(--blue-600);
      box-shadow: 0 0 0 2px var(--blue-600), var(--shadow-sm);
    }

    .course-cat__ic {
      width: 52px;
      height: 52px;
      border-radius: var(--radius);
      background: var(--sky-200);
      color: var(--blue-700);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
    }

    .course-cat.on .course-cat__ic {
      background: var(--blue-800);
      color: #fff;
    }

    .course-cat__ic svg { width: 26px; height: 26px; }

    .course-cat h3 {
      margin: 0 0 10px;
      color: var(--blue-900);
      font-size: 1.05rem;
      line-height: 1.2;
    }

    .course-cat p {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.5;
    }

    .course-cat__link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 18px;
      color: var(--blue-600);
      font-size: .84rem;
      font-weight: 900;
    }

    .course-cat__link svg {
      width: 16px;
      height: 16px;
    }

    .course-panel {
      display: grid;
      grid-template-columns: .52fr 1.48fr;
      align-items: start;
      gap: 38px;
      margin-top: 42px;
    }

    .course-aside {
      position: sticky;
      top: calc(var(--header-h) + 24px);
    }

    .course-aside__title {
      margin: 0 0 12px;
      color: var(--blue-900);
      font-family: var(--font-display);
      font-size: clamp(1.55rem, 2.4vw, 2.05rem);
      line-height: 1.12;
    }

    .course-aside__hint {
      margin: 0;
      color: var(--muted);
      font-size: .93rem;
      line-height: 1.55;
    }

    .course-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .course-row {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 14px;
      min-height: 78px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 1px 0 rgba(29,32,87,.04);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }

    .course-row:hover {
      transform: translateX(3px);
      border-color: rgba(0,85,165,.45);
      background: var(--sky-100);
    }

    .course-row__text {
      min-width: 0;
      display: grid;
      gap: 5px;
    }

    .course-row__name {
      color: var(--blue-900);
      font-weight: 900;
      line-height: 1.2;
    }

    .course-row__area {
      color: var(--muted);
      font-size: .8rem;
      font-weight: 700;
      line-height: 1.25;
    }

    .course-row__apply {
      border: 0;
      border-radius: 999px;
      padding: 11px 14px;
      background: var(--gold);
      color: var(--blue-950);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
      font-size: .8rem;
      font-weight: 900;
      transition: transform .16s ease, background .16s ease;
    }

    .course-row__apply:hover {
      transform: translateY(-1px);
      background: var(--gold-2);
    }

    .course-row__apply--disabled,
    .course-row__apply--disabled:hover {
      background: #d5dbe5;
      color: #596575;
      cursor: not-allowed;
      transform: none;
    }

    .course-row__apply svg { width: 17px; height: 17px; }

    .course-note {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.45;
    }

    .course-note svg {
      width: 20px;
      height: 20px;
      color: var(--blue-500);
      flex: none;
    }

    .human__grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 58px;
      align-items: center;
    }

    .human__media {
      position: relative;
      min-height: 620px;
    }

    .human__photo {
      position: absolute;
      left: 0;
      top: 0;
      width: min(78%, 430px);
      height: 520px;
      border-radius: 20px;
      object-fit: cover;
      object-position: center top;
      box-shadow: var(--shadow);
      z-index: 2;
    }

    .human__gold {
      position: absolute;
      right: 0;
      top: 40px;
      z-index: 3;
      width: min(62%, 340px);
      padding: 24px;
      border-radius: 0 18px 18px 18px;
      background: var(--gold-2);
      color: var(--blue-950);
      box-shadow: var(--shadow-sm);
    }

    .human__gold span {
      display: block;
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.15;
    }

    .human__gold b {
      display: block;
      margin-top: 4px;
      font-size: 1.12rem;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .human__shape {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 58%;
      height: 250px;
      border-radius: 26px;
      background: var(--sky-200);
    }

    .human__badges {
      position: absolute;
      right: 30px;
      bottom: 78px;
      z-index: 4;
      display: grid;
      gap: 8px;
      width: 250px;
    }

    .human__badges span {
      min-height: 32px;
      border: 2px solid var(--blue-500);
      border-radius: 5px;
      background: #fff;
      color: var(--blue-800);
      display: flex;
      align-items: center;
      padding: 5px 12px;
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .human__stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
    }

    .human__stat {
      min-height: 122px;
      padding: 20px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
    }

    .human__stat b {
      display: block;
      color: var(--blue-800);
      font-size: 1.7rem;
      line-height: 1;
    }

    .human__stat span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.4;
    }

    .contact__grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 42px;
      align-items: start;
    }

    .form-panel,
    .contact-card {
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--line);
    }

    .form-panel {
      min-height: 580px;
      padding: 34px;
    }

    .form-wrapper {
      margin-top: 24px;
      min-height: 430px;
      display: grid;
      align-items: start;
    }

    .form-message {
      margin: 22px auto;
      max-width: 460px;
      color: var(--blue-900);
      text-align: center;
      line-height: 1.5;
      font-weight: 700;
    }

    .form-message--error { color: #a03a2f; }

    #form,
    #form * {
      font-family: var(--font-body) !important;
    }

    #form .card-div {
      background: var(--blue-800) !important;
      border-color: var(--blue-800) var(--blue-800) var(--blue-500) !important;
      color: #fff !important;
    }

    #form .card-div label,
    #form .card-div .card-div-content,
    #form .card-div .card-div-dados {
      color: #fff !important;
    }

    #form .card-div .badges,
    #form .card-div .badges * {
      color: var(--blue-900) !important;
    }

    #form .radio-label {
      background: var(--blue-700) !important;
      border: 1px solid var(--blue-500) !important;
      border-radius: 8px !important;
      color: #fff !important;
      box-shadow: 0 6px 16px rgba(0, 48, 135, .16);
    }

    #form .radio-label .radio-text {
      color: #fff !important;
      font-weight: 800 !important;
    }

    #form .radio-label .custom-radio {
      border-color: rgba(255,255,255,.92) !important;
    }

    #form .box-input:checked + .custom-radio {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
    }

    #form input,
    #form select,
    #form textarea {
      color: var(--blue-900) !important;
    }

    .contact-card {
      padding: 30px;
      position: sticky;
      top: calc(var(--header-h) + 24px);
    }

    .contact-card__hero {
      position: relative;
      overflow: hidden;
      min-height: 210px;
      border-radius: 18px;
      background: var(--blue-900);
      padding: 24px;
      color: #fff;
      display: grid;
      align-content: end;
    }

    .contact-card__hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../imagems/Ituiutaba.jpg") center / cover no-repeat;
      opacity: .34;
    }

    .contact-card__hero b,
    .contact-card__hero span { position: relative; }

    .contact-card__hero b {
      display: block;
      font-size: 1.45rem;
      line-height: 1.1;
    }

    .contact-card__hero span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.74);
      font-size: .9rem;
      line-height: 1.45;
    }

    .info-list {
      display: grid;
      gap: 14px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .info-list li {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .info-list li:last-child { border-bottom: 0; }

    .info-list svg {
      width: 22px;
      height: 22px;
      color: var(--blue-500);
      margin-top: 2px;
    }

    .info-list b {
      display: block;
      color: var(--blue-900);
      font-size: .92rem;
      line-height: 1.2;
    }

    .info-list span,
    .info-list a {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.45;
      text-decoration: none;
    }

    .info-list a:hover { color: var(--blue-500); }

    .closing {
      position: relative;
      background:
        linear-gradient(90deg, rgba(29,32,87,.98), rgba(29,32,87,.94)),
        url("../imagems/Foto Institucional.jpg") center bottom / cover no-repeat;
      color: #fff;
      overflow: visible;
    }

    .closing::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(17,19,63,.42), rgba(255,255,255,.04) 45%, rgba(17,19,63,.14));
      pointer-events: none;
    }

    .closing__grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(300px, .62fr) auto;
      gap: 34px;
      align-items: center;
      min-height: 270px;
    }

    .closing .display,
    .closing .display em {
      color: #fff;
    }

    .closing .display {
      max-width: 620px;
      font-size: clamp(2.25rem, 4vw, 3.4rem);
      line-height: .98;
    }

    .closing__person {
      align-self: end;
      width: min(100%, 365px);
      margin: -108px auto 0;
      filter: drop-shadow(0 20px 28px rgba(17,19,63,.28));
    }

    .closing__person img {
      width: 100%;
      object-fit: contain;
    }

    .ft {
      padding: 52px 0 28px;
      background: var(--blue-950);
      color: #fff;
    }

    .ft__grid {
      display: grid;
      grid-template-columns: 1.25fr .65fr .75fr 1fr;
      gap: 44px;
      align-items: start;
    }

    .ft__brand .logo-pair {
      padding: 12px;
      border-radius: var(--radius);
      background: #fff;
    }

    .ft__brand .logo-pair__divider {
      height: 44px;
      background: rgba(29,32,87,.16);
    }

    .logo-pair--footer .logo-pair__mark--ituiutaba {
      width: 156px;
      height: 56px;
    }

    .logo-pair--footer .logo-pair__mark--agro {
      width: 136px;
      height: 56px;
    }

    .ft__brand .body {
      margin-top: 20px;
      max-width: 420px;
      color: rgba(255,255,255,.72);
    }

    .ft__col {
      display: grid;
      gap: 12px;
    }

    .ft__col h3 {
      margin: 0 0 8px;
      color: var(--gold-2);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .ft__col a,
    .ft__col span {
      color: rgba(255,255,255,.72);
      font-size: .92rem;
      line-height: 1.4;
      text-decoration: none;
    }

    .ft__col a:hover { color: #fff; }

    .ft__socials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .ft__socials a {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.1);
      color: #fff;
      text-decoration: none;
      transition: background .16s ease, color .16s ease, transform .16s ease;
    }

    .ft__socials a:hover {
      transform: translateY(-2px);
      background: var(--gold);
      color: var(--blue-950);
    }

    .ft__socials svg {
      width: 19px;
      height: 19px;
    }

    .ft__socials .brand-icon {
      display: block;
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .ft__phone {
      line-height: 1.5;
    }

    .ft__base {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 46px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.55);
      font-size: .78rem;
      line-height: 1.45;
    }

    .wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 70;
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: #28a745;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 18px 40px rgba(17,19,63,.22);
      text-decoration: none;
      transition: transform .18s ease;
    }

    .wa-float:hover { transform: translateY(-3px); }
    .wa-float svg {
      width: 29px;
      height: 29px;
      fill: currentColor;
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1120px) {
      .display--hero { font-size: 3.35rem; }
      .display--section { font-size: 2.28rem; }
      .hd__nav { gap: 16px; }
      .logo-pair--header { gap: 10px; }
      .logo-pair--header .logo-pair__mark--ituiutaba { width: 108px; }
      .logo-pair--header .logo-pair__mark--agro { width: 92px; }
      .hd__actions .btn--candidate { display: none; }
      .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
        gap: 24px;
      }
      .hero__person { width: min(100%, 360px); }
      .hero__person img { max-height: 560px; }
      .closing__grid {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
        gap: 18px 30px;
      }
      .closing__person {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: min(100%, 320px);
        margin-top: -82px;
      }
      .closing__grid > .btn {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
      }
      .story__grid, .campus__grid, .human__grid, .contact__grid { grid-template-columns: 1fr; }
      .story { background: #fff; }
      .story__copy { padding: 42px 32px; }
      .story-visual { background: #fff; }
      .contact-card { position: relative; top: auto; }
      .founders { position: static; }
      .course-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .course-panel { grid-template-columns: 1fr; gap: 26px; }
      .course-aside { position: static; }
    }

    @media (max-width: 930px) {
      :root { --header-h: 72px; }
      .container { width: min(100% - 28px, var(--maxw)); }
      .hd__nav {
        position: fixed;
        inset: var(--header-h) 0 auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: var(--cream-2);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
        padding: 8px 14px 18px;
      }
      .hd__nav.open { display: grid; }
      .hd__nav a { padding: 14px 6px; border-bottom: 1px solid var(--line); }
      .hd__actions .btn { display: none; }
      .menu-btn { display: grid; }
      .hero { min-height: auto; padding-top: calc(var(--header-h) + 32px); }
      .hero::before {
        right: 50%;
        bottom: 34px;
        width: 210px;
        height: 360px;
        transform: translateX(50%);
      }
      .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 8px;
      }
      .hero__copy {
        padding: 0 0 26px;
      }
      .hero__person {
        width: min(78vw, 330px);
        margin: 0 auto;
      }
      .hero__person img { max-height: 455px; }
      .display--hero { font-size: 2.85rem; }
      .display--section { font-size: 2rem; }
      .intro__grid, .intro__items, .human__stats, .closing__grid, .ft__grid { grid-template-columns: 1fr; }
      .closing { padding-top: 58px; }
      .closing__grid {
        gap: 22px;
        min-height: auto;
      }
      .closing__grid > .btn {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
      }
      .closing__person {
        grid-column: auto;
        grid-row: auto;
        width: min(82vw, 340px);
        margin: -22px auto 0;
      }
      .course-list { grid-template-columns: 1fr; }
      .founder { grid-template-columns: 1fr; }
      .founder__photo { display: none; }
      .campus__media { min-height: auto; }
      .human__media { min-height: 560px; }
      .human__gold { width: 74%; }
      .human__badges { width: 220px; right: 12px; }
      .ft__base { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 640px) {
      .section { padding: 72px 0; }
      .display--hero { font-size: 2.35rem; }
      .display--section { font-size: 1.75rem; }
      .lead { font-size: 1rem; }
      .logo-pair--header .logo-pair__mark--ituiutaba { width: 96px; }
      .logo-pair--header .logo-pair__mark--agro { width: 78px; }
      .logo-pair--header .logo-pair__divider { height: 32px; }
      .logo-pair--footer {
        align-items: flex-start;
        flex-direction: column;
      }
      .logo-pair--footer .logo-pair__divider { display: none; }
      .hero__cta { flex-direction: column; align-items: stretch; }
      .hero { padding-top: calc(var(--header-h) + 26px); }
      .hero::before {
        right: 50%;
        bottom: 28px;
        width: 178px;
        height: 336px;
        border-radius: 28px;
        transform: translateX(50%);
      }
      .hero__person { width: min(88vw, 300px); }
      .hero__person img { max-height: 410px; }
      .closing .display { font-size: 2rem; }
      .closing__person { width: min(92vw, 310px); }
      .intro__item { min-height: auto; }
      .story__copy { padding: 34px 22px; }
      .story__logo { display: none; }
      .story-visual { padding-bottom: 72px; }
      .story-visual__image { height: 300px; border-radius: 0 22px 22px 0; }
      .campus__media { min-height: auto; }
      .campus__img-main { width: 100%; border-radius: 0 22px 22px 0; }
      .course-cats { grid-template-columns: 1fr; }
      .course-cat { min-height: auto; }
      .course-row { grid-template-columns: 1fr; }
      .course-row__apply { width: 100%; }
      .human__media { min-height: 500px; }
      .human__photo { width: 72%; height: 410px; }
      .human__gold { left: 26%; right: auto; width: 70%; padding: 18px; }
      .human__shape { width: 70%; height: 190px; }
      .human__badges { bottom: 42px; width: 190px; }
      .form-panel, .contact-card { padding: 24px; }
      .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
    }
