.divCookie{position: fixed;min-width: 100%;z-index: 100000;font-size: 13px;letter-spacing: 0px;text-align: center;background-color: #00034c;bottom: 0;left: 0;}.spanTexto{color: #FFF;text-align: center;vertical-align: middle;display: inline-block;padding: 15px 20px;}.spanButton{display: inline-block;padding: 15px 0px;}.btn-ok{background-color:#86ad1a;color:#000;}.divChat{margin:0; padding:0; text-align: center;height:70px;width:70px;position:fixed;bottom:20px;right:20px;border-radius: 50%;cursor: pointer;z-index: 10;}.divChat img{border: 0px; vertical-align: baseline;height:60px;width:60px;margin-top: 10px;}.rotate{-webkit-transition-duration: 0.8s;-moz-transition-duration: 0.8s;-o-transition-duration: 0.8s;transition-duration: 0.8s;-webkit-transition-property: -webkit-transform;-moz-transition-property: -moz-transform;-o-transition-property: -o-transform;transition-property: transform;overflow:hidden;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg); -o-transform:rotate(360deg);} #mainChart, #mac_wrap, #red_wrap, #hero { 
    scroll-margin-top: 80px; 
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent:       #95c11f;
  --accent-dark:  #66860f;
  --accent-light: #c8e87a;
  --blue:         #0026ff;
  --blue-dark:    #0019b8;
  --navy:         #03178e;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --surface:      #111318;
  --surface2:     #1e2330;
  --border:       rgba(40,40,40,0.12);
  --glass:        rgba(241,241,241,0.82);
  --glass-border: rgba(255,255,255,0.7);
  --gold:   #749810;
  --silver: #b0b8c8;
  --bronze: #a07040;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  background-image: url(https://www.federalonline.com.br/imagemsite/3950/Background.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  font-family: degular, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    background-image: url(https://www.federalonline.com.br/imagemsite/3970/Background-Responsivo.jpg);
    background-size: 140%;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

#simuladao-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

#simuladao-nav.is-sticky {
  position: fixed;
  animation: slideDown 0.35s var(--ease-out-expo) both;
  margin-top: 2%;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.simuladao-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s var(--ease-spring);
  min-width: 110px;
}

a.simuladao-nav__item:hover {
  background: rgba(149,193,31,0.12);
  transform: translateY(-2px);
}

.simuladao-nav__item--active { 
    background: rgba(185,185,185,0.18); 
}

.simuladao-nav__item--active .simuladao-nav__label { 
    color: var(--text); font-weight: 800; 
}

.simuladao-nav__item--locked { 
    opacity: 0.4; cursor: not-allowed; 
}

.simuladao-nav__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 13px; font-weight: 800;
  transition: box-shadow 0.3s ease, background 0.25s ease;
}

.simuladao-nav__badge--done {
  background: var(--blue);
  color: #fff;
  animation: pulse 2.5s ease infinite;
}

.simuladao-nav__badge--next {
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(68,117,3,0.5);
}

.simuladao-nav__badge--locked {
  background: #d0d0d0;
  color: #888;
}

.simuladao-nav__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.simuladao-nav__status {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.simuladao-nav__item--active .simuladao-nav__status { color: var(--text); }

@keyframes pulse {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(4,33,137,0.65); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 9px rgba(4,33,137,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(4,33,137,0); }
}

@media (max-width: 640px) {
  #simuladao-nav {
    gap: 2px;
    padding: 8px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  #simuladao-nav::-webkit-scrollbar { display: none; }

  .simuladao-nav__item {
    min-width: 76px;
    padding: 7px 10px;
  }

  .simuladao-nav__badge { width: 30px; height: 30px; font-size: 11px; }
  .simuladao-nav__label { font-size: 9.5px; }
  .simuladao-nav__status { font-size: 8px; }
}

.hero-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroTop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroTxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 20px;
  animation: fadeUp 0.7s 0.1s var(--ease-out-expo) both;
}

.heroTxt h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.heroTxt h2 {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0;
  padding: 0;
}

.heroTxt p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  line-height: 1.0;
  max-width: 600px;
  margin: 0 auto;
}

.intro-wave {
  display: block;
  width: 100%;
  height: 24px;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeIn 1s 0.6s ease forwards;
}

.accent-word {
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.accent-word svg {
  position: absolute;
  left: 50%; top: 108%;
  transform: translateX(-50%);
  width: 110%;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  animation: draw 1.8s var(--ease-out-expo) forwards 0.4s;
}

b svg {
  position: absolute;
  left: 50%; top: 135%;
  transform: translateX(-50%);
  width: 170%;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  animation: draw 1.8s var(--ease-out-expo) forwards 0.4s;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.quick-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  animation: fadeUp 0.7s 0.25s var(--ease-out-expo) both;
}

.quick-nav-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(248,249,250,0.9);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-decoration: none;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
  font-family: degular, sans-serif;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.8);
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease, color 0.22s ease, transform 0.2s var(--ease-spring), box-shadow 0.22s ease;
}

.quick-nav-card:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(149,193,31,0.3);
  text-decoration: none;
}

@media (max-width: 900px) {
  .quick-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .quick-nav { grid-template-columns: 1fr; gap: 8px; }
}

.highlight-banner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size:16px;
  color: #5e5e5ea2;
  line-height: 1.0;
  font-weight: 500;
  animation: fadeUp 0.7s 0.3s var(--ease-out-expo) both;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  background: rgba(241,241,241,0.88);
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  width: min(600px, 100%);
  border: 1px solid rgba(255,255,255,0.9);
  animation: fadeUp 0.7s 0.35s var(--ease-out-expo) both;
  transition: box-shadow 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 8px 32px rgba(149,193,31,0.25);
}

.search-box input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  font-size: 15px;
  font-family: degular, sans-serif;
  background: rgba(247,247,247,0.95);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.search-box input::placeholder { color: #aaa; }

.search-box input:focus {
  border-color: var(--accent);
}

.search-box button {
  padding: 13px 22px;
  background: var(--surface);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: degular, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s ease, transform 0.18s var(--ease-spring);
}

.search-box button:hover {
  background: var(--accent);
  transform: scale(1.04);
}

.search-box button:active { transform: scale(0.98); }

@media (max-width: 500px) {
  .search-box {
    flex-direction: column;
    border-radius: 18px;
    padding: 12px;
  }
  .search-box button { border-radius: 12px; width: 100%; }
}

.cursos-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  animation: fadeUp 0.7s 0.4s var(--ease-out-expo) both;
}

.cursos-wrap h4{
    font-weight: 500;
    margin-bottom: 10px;
    color: #5e5e5ea2;
}

.cursos-select {
  width: min(600px, 100%);
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface);
  color: #f1f1f1;
  padding: 14px 44px 14px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-family: degular, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2395c11f' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  transition: box-shadow 0.2s ease;
}

.cursos-select:focus {
  box-shadow: 0 0 0 3px rgba(149,193,31,0.3);
}

.cursos-select option {
  background: var(--surface);
  color: #f1f1f1;
}

.table-wrap {
  max-width: 1100px;
  width: 100%;
  background: rgba(241,241,241,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
  border: 1px solid rgba(40,40,40,0.1);
}

table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 14px;
}

thead {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 2;
}

thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241,241,241,0.85);
  white-space: nowrap;
}

thead th:first-child { width: 60px; text-align: center; }
thead th:nth-child(2){ width: 90px; }
thead th:last-child  { text-align: right; }

tbody tr {
  border-bottom: 1px solid rgba(40,40,40,0.07);
  transition: background 0.15s ease;
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover { background: rgba(149,193,31,0.06); }

tbody td {
  padding: 13px 18px;
  color: var(--text);
  font-weight: 400;
}

tbody td:first-child { text-align: center; }
tbody td:last-child  { text-align: right; font-weight: 700; font-size: 15px; }

.row-highlight {
  background: rgba(149,193,31,0.18) !important;
  animation: rowFlash 0.6s ease both;
}

.row-highlight td {
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  font-weight: 700;
}

@keyframes rowFlash {
  0%   { background: rgba(149,193,31,0.4); }
  100% { background: rgba(149,193,31,0.18); }
}

.medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.medal-1 { background: rgba(149,193,31,0.2); border: 1.5px solid var(--accent); color: #5a7511; }
.medal-2 { background: rgba(176,184,200,0.25); border: 1.5px solid var(--silver); color: #6b7280; }
.medal-3 { background: rgba(160,112,64,0.15); border: 1.5px solid var(--bronze); color: var(--bronze); }
.pos-other { font-size: 14px; color: var(--text-muted); }

.id-chip {
  display: inline-block;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(40,40,40,0.12);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.graficos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 40px;
  font-family: degular, sans-serif;
}

.select-wrapper {
  display: none;
  width: 100%;
  max-width: 480px;
  margin-bottom: 20px;
}

.select-wrapper select {
  width: 100%;
  padding: 12px 44px 12px 18px;
  font-family: degular, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(241,241,241,0.6);
  background: rgba(241,241,241,0.85);
  color: var(--text);
  border-radius: 50px;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23282828' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  outline: none;
  cursor: pointer;
}

.controls {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 960px;
  width: 100%;
}

.controls button {
  font-family: degular, sans-serif;
  font-size: 14px;
  font-weight: 500;
  flex: 1 1 140px;
  max-width: 200px;
  min-width: 130px;
  padding: 10px 14px;
  border: 1px solid rgba(241,241,241,0.7);
  background: #f1f1f199;
  backdrop-filter: blur(4px);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.18s var(--ease-spring), box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.controls button:hover {
  background: #95c11f;
  border-color: var(--accent);
  color: #f1f1f1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(149,193,31,0.2);
}

.controls button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(149,193,31,0.4);
}

.card {
  background: rgba(241,241,241,0.82);
  padding: 28px 24px;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 1px 0 rgba(255,255,255,0.9) inset;
  width: 100%;
  max-width: 1200px;
  animation: fadeUp 0.5s var(--ease-out-expo) both;
}

.chart-container {
  height: 420px;
  position: relative;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 22px);
  line-height: 1.3;
  font-family: degular, sans-serif;
}

@media (max-width: 640px) {
  .controls { display: none; }
  .select-wrapper { display: block; }
  .chart-container { height: 300px; }
  .card { padding: 18px 12px; }
}

@media (max-width: 400px) {
  .chart-container { height: 250px; }
}

#mac_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  text-align: center;
}

#mac_tag {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  padding: 8px 22px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

#mac_title {
  color: var(--navy);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 10px;
}

#mac_intro { color: #666; font-size: 16px; margin-bottom: 30px; line-height: 1.6; }

#mac_dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}

#mac_label { 
    font-size: 15px; 
    font-weight: 700; 
    color: var(--text); 
}

#mac_select {
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 12px 22px;
  min-width: 280px;
  font-size: 15px;
  font-family: degular, sans-serif;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#mac_select:focus { 
    box-shadow: rgba(100, 100, 111, 0.496) 0px 7px 29px 0px;
}

#mac_sub { 
    color: #555; 
    font-size: 16px; 
    margin: 18px 0; 
    font-weight: 500; 
}

#mac_chartWrap { 
    width: 100%; 
    height: 420px; 
    padding: 20px 16px; 
    background: #f1f1f193;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 8px 36px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.85) inset;
}

#mac_chart { 
    width: 100% !important; 
    height: 100% !important; 
}

@media (max-width: 480px) {
  #mac_select { min-width: 100%; }
  #mac_dropdown { flex-direction: column; gap: 8px; }
  #mac_chartWrap { height: 280px; padding: 0; }
}

#red_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

#red_tag {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  padding: 8px 22px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

#red_title { 
    color: var(--navy); 
    font-size: clamp(22px, 4vw, 36px); 
    font-weight: 800; 
    margin: 0 0 10px; 
}

#red_intro { 
    color: #666; 
    font-size: 16px; 
    margin-bottom: 40px; 
}

#red_flex {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

#red_flex > div {
  flex: 1;
  background: #f1f1f193;
  backdrop-filter: blur(5px);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.red_header {
  color: #282828;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.red_dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}

#red_flex canvas { 
    width: 100% !important; 
    height: 340px !important; 
}

@media (
        max-width: 768px) {
    #red_flex { 
        flex-direction: column; 
    }
    #red_flex canvas {
        height: 240px !important; 
    }
}

.depoimentos-section {
  padding: 80px 20px 100px;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 56px;
}

.depoimentos-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(149,193,31,0.4);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.depoimentos-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 14px;
}

.depoimentos-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 50px;
}

.vantagens-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  background: rgba(241,241,241,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .vantagens-wrap {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    gap: 36px;
  }
}

.vantagens-video-col { display: flex; flex-direction: column; gap: 14px; }

.vantagens-video-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,0.2);
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vantagens-lista-col { display: flex; flex-direction: column; gap: 4px; }

.vantagens-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(149,193,31,0.35);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.vantagens-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 26px;
}

.vantagens-lista { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 18px; }

.vantagem-item { display: flex; gap: 16px; align-items: flex-start; }

.vantagem-icone {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(149,193,31,0.35);
  transition: transform 0.2s var(--ease-spring);
}

.vantagem-item:hover .vantagem-icone { transform: scale(1.12) rotate(-4deg); }

.vantagem-item strong { display: block; font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.vantagem-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

.vantagens-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: #fff;
  font-family: degular, sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.22s ease, transform 0.2s var(--ease-spring), box-shadow 0.22s ease;
  box-shadow: 0 4px 18px rgba(17,19,24,0.25);
}

.vantagens-cta:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(149,193,31,0.4);
}

#modalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#modalBox {
  background: #fff;
  border-radius: 20px;
  padding: 44px 38px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  cursor: default;
  animation: modalPop 0.4s var(--ease-spring) both;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.video-modal-box {
  position: relative;
  width: min(960px, 100%);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  cursor: default;
  animation: modalPop 0.4s var(--ease-spring) both;
}

.video-modal-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1280/720;
}

.video-modal-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease;
}

.video-modal-close:hover { background: var(--accent); }

.modal-icon {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon img { width: 52px; height: auto; }

#modalBox h3 { color: var(--navy); font-size: 22px; font-weight: 800; margin: 0 0 12px; }
#modalBox p  { color: #555; font-size: 15px; line-height: 1.65; margin: 0 0 28px; }

.modal-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 44px;
  font-size: 15px;
  font-weight: 700;
  font-family: degular, sans-serif;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s var(--ease-spring);
}

.modal-btn:hover { background: var(--accent); transform: translateY(-2px); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.35); }

::selection { background: rgba(149,193,31,0.3); }
:root {
  --btn-h: 46px;
  --btn-r: 8px;
  --btn-font: 14px;
  --select-h: 46px;
  --card-r: 14px;
  --card-blur: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h);
  padding: 0 22px;
  border: none;
  border-radius: var(--btn-r);
  font-family: degular, 'Segoe UI', sans-serif;
  font-size: var(--btn-font);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s var(--ease-spring), box-shadow 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--surface);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149,193,31,0.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-accent {
  background: var(--accent);
  color: #1a1a1a;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149,193,31,0.35);
}
.btn-accent:active { transform: translateY(0); box-shadow: none; }

.f-select {
  appearance: none;
  -webkit-appearance: none;
  height: var(--select-h);
  padding: 0 44px 0 16px;
  font-family: degular, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--btn-r);
  border: 1.5px solid rgba(40,40,40,0.12);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='%2395c11f' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(149,193,31,0.18); }
.f-select--dark { background-color: var(--surface); color: #f1f1f1; }
.f-select--dark option { background: var(--surface); }
.f-select--light { background-color: rgba(255,255,255,0.9); color: var(--text); }
.f-select--light option { background: #fff; }

.f-card {
  background: rgba(241,241,241,0.82);
  backdrop-filter: blur(var(--card-blur));
  -webkit-backdrop-filter: blur(var(--card-blur));
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--card-r);
  box-shadow: 0 8px 36px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.85) inset;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-tag--navy { 
    background: #03178e; 
    color: #fff; 
}

.section-tag--green {
     background: rgba(255,255,255,0.85); 
     border: 1px solid rgba(149,193,31,0.4); 
     color: var(--accent-dark); 
    }

.search-box button { 
    height: var(--btn-h); 
    border-radius: 999px; 
}

.cursos-select { 
    height: var(--select-h); 
    border-radius: 999px; 
}

.controls button { 
    height: 40px; 
    border-radius: 999px; 
}

#mac_select {
    height: var(--select-h); 
    border-radius: 999px; 
}

.modal-btn { 
    height: var(--btn-h); 
    border-radius: var(--btn-r); 
}

.vantagens-cta { 
    height: var(--btn-h); 
    border-radius: var(--btn-r); 
    }

.graficos {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 20px 96px;
  gap: 56px;
}

.graficos > .card,
#mac_wrap,
#red_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(241,241,241,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
  text-align: center;
}

.graficos > .card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chart-card-tag,
#mac_tag,
#red_tag {
  display: inline-block;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(149,193,31,0.4);
  color: var(--accent-dark);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#chartTitle,
#mac_title,
#red_title {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--text);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
}

#mac_intro,
#red_intro,
#mac_sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.controls {
  margin: 0 auto 24px;
  padding: 10px;
  max-width: 1040px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.05);
}

.controls button {
  height: 42px;
  border: 1px solid rgba(40,40,40,0.08);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  box-shadow: none;
}

.controls button:hover,
.controls button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(149,193,31,0.28);
}

.select-wrapper select,
#mac_select,
.f-select--light {
  min-height: var(--select-h);
  border: 1.5px solid rgba(40,40,40,0.12);
  background-color: rgba(255,255,255,0.88);
  border-radius: var(--btn-r);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

#mac_dropdown {
  margin: 30px auto 18px;
  padding: 14px;
  max-width: 720px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px;
}

.chart-container,
#mac_chartWrap,
#red_flex > div {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.08), 0 1px 0 rgba(255,255,255,0.85) inset;
}

.chart-container {
  width: 100%;
  height: 420px;
  padding: 22px 18px 14px;
}

#mac_chartWrap {
  height: 420px;
  padding: 22px 18px 14px;
}

#red_flex {
  gap: 22px;
  margin-top: 28px;
}

#red_flex > div {
  padding: 24px 20px 18px;
}

.red_header {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.red_dot {
  width: 10px;
  height: 10px;
}

@media (max-width: 900px) {
  .graficos > .card,
  #mac_wrap,
  #red_wrap {
    padding: 34px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .graficos {
    padding: 48px 14px 72px;
    gap: 34px;
  }

  .controls { display: none; }
  .select-wrapper {
    display: block;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .chart-container,
  #mac_chartWrap {
    height: 300px;
    padding: 12px 8px 8px;
    border-radius: 16px;
  }

  #mac_dropdown {
    padding: 12px;
    border-radius: 16px;
  }

  #red_flex canvas {
    height: 260px !important;
  }
}

@media (max-width: 420px) {
  .graficos > .card,
  #mac_wrap,
  #red_wrap {
    padding: 28px 14px;
  }

  .chart-container,
  #mac_chartWrap {
    height: 270px;
  }
}

.graficos > .card .chart-controls-desktop,
.graficos > .card .chart-controls-mobile {
  width: 100%;
}

.graficos > .card .chart-controls-desktop {
  order: 3;
  margin: 16px auto 24px;
}

.graficos > .card .chart-controls-mobile {
  order: 3;
  margin: 14px auto 20px;
}

.graficos > .card .chart-container {
  order: 4;
}

@media (min-width: 641px) {
  .graficos > .card .chart-controls-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .graficos > .card .chart-controls-mobile {
    display: block;
  }
}

:root {
  --accent: #95c11f;
  --accent-strong: #7ca316;
  --accent-dark: #58740d;
  --accent-soft: rgba(149, 193, 31, 0.14);
  --navy: #071a72;
  --navy-strong: #06145a;
  --navy-soft: rgba(7, 26, 114, 0.10);
  --ink: #16181d;
  --text: #16181d;
  --text-soft: #4f5663;
  --text-muted: #747b87;
  --page: #eef1ea;
  --surface: #17191f;
  --surface-raised: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-subtle: rgba(255, 255, 255, 0.64);
  --line: rgba(22, 24, 29, 0.10);
  --line-strong: rgba(22, 24, 29, 0.16);
  --glass-border: rgba(255, 255, 255, 0.78);
  --shadow-sm: 0 6px 18px rgba(24, 29, 20, 0.07);
  --shadow-md: 0 16px 42px rgba(24, 29, 20, 0.10);
  --shadow-lg: 0 28px 72px rgba(24, 29, 20, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --content: 1180px;
  --ease-standard: cubic-bezier(.2,.7,.2,1);
}

html {
  background: var(--page);
  scroll-padding-top: 92px;
}

body {
  position: relative;
  background-image:
    url(https://www.federalonline.com.br/imagemsite/3950/Background.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text);
  font-family: degular, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(149, 193, 31, 0.12), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(7, 26, 114, 0.08), transparent 26%);
}

button,
input,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(149, 193, 31, 0.36);
  outline-offset: 3px;
}

#mainChart,
#mac_wrap,
#red_wrap,
#hero {
  scroll-margin-top: 104px;
}

#simuladao-nav {
  position: absolute;
  top: 14px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 28px), var(--content));
  min-height: 76px;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

#simuladao-nav.is-sticky {
  position: fixed;
  top: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(20, 24, 17, 0.15);
  animation: navEnter .32s var(--ease-standard) both;
}

@keyframes navEnter {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.simuladao-nav__item {
  min-width: 0;
  flex: 1 1 0;
  max-width: 178px;
  min-height: 58px;
  justify-content: center;
  gap: 1px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: background .22s ease, border-color .22s ease, transform .22s var(--ease-standard), box-shadow .22s ease;
}

a.simuladao-nav__item:hover {
  background: #d3d3d3;
  border-color: var(--line);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.simuladao-nav__item--active {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 22px rgba(7, 26, 114, 0.22);
}

.simuladao-nav__item--active .simuladao-nav__label,
.simuladao-nav__item--active .simuladao-nav__status {
  color: #fff;
}

.simuladao-nav__item--active .simuladao-nav__badge--done {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
  animation: none;
}

.simuladao-nav__item--locked {
  opacity: .58;
}

.simuladao-nav__badge {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: .02em;
  box-shadow: none;
}

.simuladao-nav__badge--done { background: var(--navy); animation: none; }
.simuladao-nav__badge--next { background: var(--accent); color: #142000; border: 0; }
.simuladao-nav__badge--locked { background: #dde0e4; color: #7d838d; }

.simuladao-nav__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .045em;
}

.simuladao-nav__status {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .085em;
}

.hero-txt {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 100px 24px 0;
}

.heroTxt {
  position: relative;
  width: min(100%, 940px);
  padding: 64px 54px 48px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.58));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.heroTxt::before {
  content: 'RESULTADOS E DESEMPENHO';
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  padding: 4px 13px;
  border: 1px solid rgba(149, 193, 31, .36);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.heroTxt::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -165px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149,193,31,.25), rgba(149,193,31,0) 68%);
}

.heroTxt h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 950;
  line-height: .93;
  letter-spacing: -.045em;
}

.heroTxt h2 {
  margin: 0 0 0;
  color: var(--text);
  font-size: clamp(24px, 3.7vw, 42px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.heroTxt p {
  max-width: 680px;
  color: var(--text-soft);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
}

.quick-nav {
  width: min(calc(100% - 40px), var(--content));
  max-width: var(--content);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px auto 0;
  padding: 0;
}

.quick-nav-card {
  position: relative;
  min-height: 78px;
  gap: 13px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .76);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
}

.quick-nav-card::after {
  content: '';
  position: absolute;
  inset: auto -30px -46px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(149,193,31,.12);
  transition: transform .3s var(--ease-standard), background .3s ease;
}

.quick-nav-card:hover {
  background: #fff;
  color: var(--navy);
  border-color: rgba(149, 193, 31, .48);
  box-shadow: 0 16px 34px rgba(31, 40, 20, .12);
  transform: translateY(-4px);
}

.quick-nav-card:hover::after {
  transform: scale(1.6);
  background: rgba(149,193,31,.17);
}

.quick-nav-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 16px;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease-standard);
}

.quick-nav-card:hover .quick-nav-icon {
  background: var(--accent);
  color: #172100;
  transform: rotate(-3deg) scale(1.04);
}

.quick-nav-label { position: relative; z-index: 1; }

.highlight-banner {
  width: min(calc(100% - 40px), 760px);
  margin: 30px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.58);
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 16px;
  line-height: 1.45;
}

.highlight-tag {
  display: inline-flex;
  margin: 5px 4px 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #162000;
  font-size: .9em;
  font-weight: 850;
}

.hero {
  width: min(calc(100% - 32px), var(--content));
  margin: 24px auto 0;
  padding: 42px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.search-box {
  width: min(100%, 700px);
  gap: 8px;
  margin: 0 auto 24px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-sm);
}

.search-box:focus-within {
  border-color: rgba(149,193,31,.52);
  box-shadow: 0 0 0 4px rgba(149,193,31,.10), var(--shadow-sm);
}

.search-box input {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.search-box input:focus { border-color: transparent; }

.search-box button,
.btn-primary {
  min-height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7,26,114,.18);
}

.search-box button:hover,
.btn-primary:hover {
  background: var(--accent);
  color: #172100;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(149,193,31,.28);
}

.cursos-wrap { max-width: 100%; }

.cursos-wrap h4 {
  margin: 0 0 9px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
}

.cursos-select {
  width: min(100%, 700px);
  height: 50px;
  margin-bottom: 22px;
  padding: 0 48px 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: var(--surface-solid);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 650;
}

.cursos-select option {
  background: #fff;
  color: var(--text);
}

.table-wrap {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: none;
  scrollbar-gutter: stable;
}

table {
  min-width: 720px;
  font-size: 14px;
}

thead {
  background: var(--navy);
}

thead th {
  padding: 16px 18px;
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

tbody tr {
  border-bottom-color: rgba(22,24,29,.07);
}

tbody tr:nth-child(even) {
  background: rgba(7,26,114,.018);
}

tbody tr:hover {
  background: rgba(149,193,31,.075);
}

tbody td {
  padding: 14px 18px;
  color: #2a2d33;
  font-weight: 520;
}

tbody td:last-child {
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
}

.medal {
  width: 32px;
  height: 32px;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(22,24,29,.08);
}

.medal-1 { background: rgba(149,193,31,.22); color: var(--accent-dark); }
.medal-2 { background: rgba(176,184,200,.26); color: #596171; }
.medal-3 { background: rgba(160,112,64,.17); color: #865b31; }

.id-chip {
  border: 1px solid rgba(7,26,114,.10);
  border-radius: 8px;
  background: rgba(7,26,114,.055);
  color: var(--navy);
  font-weight: 750;
}

.row-highlight {
  background: rgba(149,193,31,.18) !important;
  box-shadow: inset 4px 0 0 var(--accent);
}

.row-highlight td {
  border-top: 1px solid rgba(149,193,31,.36);
  border-bottom: 1px solid rgba(149,193,31,.36);
}

.graficos {
  width: min(100%, 1240px);
  gap: 28px;
  padding: 40px 20px 72px;
}

.graficos > .card,
#mac_wrap,
#red_wrap {
  max-width: var(--content);
  padding: 46px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.chart-card-tag,
#mac_tag,
#red_tag,
.section-tag,
.depoimentos-tag,
.vantagens-tag {
  min-height: 28px;
  padding: 5px 14px;
  border: 1px solid rgba(149,193,31,.34);
  background: rgba(255,255,255,.72);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

#chartTitle,
#mac_title,
#red_title {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.025em;
}

#mac_intro,
#red_intro,
#mac_sub {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.controls,
#mac_dropdown {
  border: 1px solid var(--line);
  background: rgba(247,248,245,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.controls {
  gap: 7px;
  padding: 8px;
  border-radius: 14px;
}

.controls button {
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.controls button:hover {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.controls button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7,26,114,.18);
}

.select-wrapper select,
#mac_select,
.f-select--light {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  font-weight: 650;
}

#mac_dropdown {
  gap: 12px;
  max-width: 760px;
  padding: 12px;
  border-radius: 14px;
}

#mac_label {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.chart-container,
#mac_chartWrap,
#red_flex > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 10px 28px rgba(28,33,24,.06);
}

.chart-container,
#mac_chartWrap {
  height: 430px;
  padding: 24px 18px 14px;
}

#red_flex {
  gap: 16px;
}

#red_flex > div {
  padding: 22px 18px 16px;
}

.red_header {
  min-height: 32px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.red_dot {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 4px rgba(7,26,114,.06);
}

.depoimentos-section {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 14px 20px 100px;
}

.depoimentos-header {
  margin-bottom: 34px;
}

.depoimentos-title {
  max-width: 920px;
  margin: 0 auto 12px;
  color: var(--text);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 920;
  letter-spacing: -.035em;
  line-height: 20px;
}

.depoimentos-subtitle {
  margin-top: 12px;
  color: var(--text-soft);
}

.vantagens-wrap {
  max-width: var(--content);
  gap: 44px;
  padding: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-md);
}

.vantagens-video-label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

.video-frame-wrap {
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(14,18,12,.18);
}

.vantagens-title {
  margin-bottom: 24px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.025em;
}

.vantagens-lista { gap: 14px; }

.vantagem-item {
  gap: 14px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: background .22s ease, border-color .22s ease, transform .22s var(--ease-standard);
}

.vantagem-item:hover {
  border-color: var(--line);
  background: rgba(255,255,255,.62);
  transform: translateX(3px);
}

.vantagem-icone {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: none;
}

.vantagem-item:hover .vantagem-icone {
  background: var(--accent);
  color: #182100;
}

.vantagem-item strong {
  color: var(--text);
  font-size: 15px;
}

.vantagem-item p {
  color: var(--text-soft);
  font-size: 13px;
}

.vantagens-cta {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 11px;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7,26,114,.20);
}

.vantagens-cta:hover {
  background: var(--accent);
  color: #172100;
}

#modalOverlay,
.video-modal-overlay {
  background: rgba(12, 14, 18, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#modalBox {
  width: min(92%, 500px);
  padding: 38px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 32px 90px rgba(0,0,0,.30);
}

.modal-icon {
  width: 68px;
  height: 68px;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7,26,114,.18);
}

#modalBox h3 {
  color: var(--text);
  font-size: 25px;
  font-weight: 900;
}

#modalBox p {
  color: var(--text-soft);
}

.modal-btn {
  min-height: 48px;
  border-radius: 10px;
  background: var(--navy);
}

.video-modal-box {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}

.video-modal-close {
  width: 42px;
  height: 42px;
  background: rgba(9,11,15,.72);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

@media (max-width: 980px) {
  .quick-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { padding: 32px 24px; }
  .graficos > .card, #mac_wrap, #red_wrap { padding: 36px 26px; }
  .vantagens-wrap { gap: 32px; padding: 34px 26px; }
}

@media (max-width: 768px) {
  body {
    background-image:
      linear-gradient(180deg, rgba(247,249,243,.78), rgba(235,239,228,.90)),
      url(https://www.federalonline.com.br/imagemsite/3970/Background-Responsivo.jpg);
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
  }

  #simuladao-nav {
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 7px;
    border-radius: 16px;
  }

  #simuladao-nav.is-sticky {
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
  }

  @keyframes navEnter {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .simuladao-nav__item {
    flex: 0 0 118px;
    min-width: 118px;
  }

  .hero-txt { padding: 126px 16px 0; }
  .heroTxt { padding: 46px 24px 36px; border-radius: 24px; }
  .heroTxt h1 { font-size: clamp(36px, 12vw, 58px); }
  .heroTxt h2 { font-size: clamp(24px, 7vw, 34px); }

  .quick-nav {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-banner { width: calc(100% - 32px); }
  .hero { width: calc(100% - 24px); }
  .graficos { padding-inline: 12px; }
  .graficos > .card, #mac_wrap, #red_wrap { border-radius: 20px; }
  #red_flex { flex-direction: column; }
  .depoimentos-section { padding-inline: 12px; }
}

@media (max-width: 560px) {
  .simuladao-nav__item { flex-basis: 104px; min-width: 104px; }
  .simuladao-nav__label { font-size: 9.5px; }
  .simuladao-nav__status { font-size: 7.5px; }

  .heroTxt::before { margin-bottom: 16px; font-size: 9px; }
  .heroTxt p { font-size: 15px; }

  .quick-nav {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .quick-nav-card { min-height: 66px; }
  .quick-nav-icon { width: 38px; height: 38px; flex-basis: 38px; }

  .hero {
    padding: 24px 14px;
    border-radius: 20px;
  }

  .search-box {
    flex-direction: column;
    padding: 7px;
    border-radius: 14px;
  }

  .search-box input { width: 100%; min-height: 46px; }
  .search-box button { width: 100%; }
  .cursos-select { width: 100%; }

  .graficos { gap: 20px; padding-top: 28px; }
  .graficos > .card, #mac_wrap, #red_wrap { padding: 28px 14px; }
  #chartTitle, #mac_title, #red_title { font-size: 28px; }
  .chart-container, #mac_chartWrap { height: 310px; padding: 12px 6px 8px; }

  #mac_dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  #mac_select { width: 100%; min-width: 0; }
  .vantagens-wrap { padding: 26px 14px; border-radius: 20px; }
  .vantagem-item { padding: 9px; }
  .depoimentos-title br { display: none; }
  #modalBox { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-txt {
  width: min(100%, 1360px);
  padding: 136px 24px 0;
}

.heroTxt {
  width: min(100%, 1220px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: 44px;
  align-items: center;
  padding: 64px;
  text-align: left;
}

.heroTxt::before { display: none; }

.hero-copy { 
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 5px 13px;
  border: 1px solid rgba(149, 193, 31, .34);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.heroTxt h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(46px, 6vw, 80px);
  line-height: .86;
}

.heroTxt h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3.2vw, 43px);
}

.heroTxt p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.55;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(7,26,114,.10);
  border-radius: 10px;
  background: rgba(255,255,255,.56);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 750;
}

.hero-chips i { color: var(--navy); }

.hero-overview {
  position: relative;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 24px;
  background: rgba(7,26,114,.94);
  color: #fff;
  box-shadow: 0 24px 56px rgba(7,26,114,.23);
  overflow: hidden;
}

.hero-overview::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(149,193,31,.22);
  filter: blur(2px);
}

.hero-overview__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.hero-overview__badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--accent);
  color: #172100;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
}

.hero-overview__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
}
.hero-overview__status i { color: var(--accent); }

.hero-overview__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.overview-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
  transition: transform .22s var(--ease-standard), background .22s ease;
}

.overview-item:hover {
  transform: translateX(3px);
  background: rgba(255,255,255,.11);
}

.overview-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(149,193,31,.16);
  color: var(--accent);
}

.overview-item strong,
.overview-item small { display: block; }
.overview-item strong { margin-bottom: 2px; font-size: 13px; font-weight: 850; }
.overview-item small { color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.35; }

/* Acesso rápido ---------------------------------------------------------- */
.quick-nav-section {
  width: min(calc(100% - 40px), 1220px);
  margin: 28px auto 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
}

.quick-nav-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 2px;
}

.quick-nav-heading h2 {
  margin: 0;
  text-align: left;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.02em;
  padding: 0;
}

.quick-nav-heading p {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

.quick-nav {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  animation: none;
}

.quick-nav-card {
  min-height: 86px;
  padding: 14px;
  border-color: var(--line);
  background: rgba(255,255,255,.80);
}

.quick-nav-card::after { display: none; }

.quick-nav-label {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quick-nav-label strong,
.quick-nav-label small { display: block; }
.quick-nav-label strong { color: var(--text); font-size: 14px; font-weight: 850; line-height: 1.2; }
.quick-nav-label small { color: var(--text-muted); font-size: 11px; font-weight: 600; line-height: 1.25; }

.quick-nav-arrow {
  margin-left: auto;
  color: #9aa0a9;
  font-size: 11px;
  transition: transform .22s ease, color .22s ease;
}

.quick-nav-card:hover .quick-nav-label strong { color: var(--navy); }
.quick-nav-card:hover .quick-nav-arrow { color: var(--accent-dark); transform: translate(2px,-2px); }

.highlight-banner {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-color: rgba(149,193,31,.24);
  background: rgba(149,193,31,.09);
  box-shadow: none;
  text-align: left;
}

.highlight-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: var(--accent);
  color: #172100;
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  width: 100%;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.section-heading__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,26,114,.17);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-heading__content h2 {
  max-width: 780px;
  margin: 0 0 7px;
  color: var(--text);
  text-align: left;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 920;
  line-height: 1.05;
  letter-spacing: -.03em;
  padding: 0;
}

.section-heading__content p {
  max-width: 750px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.section-heading__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(149,193,31,.22);
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 20px;
}

.ranking-section {
  width: min(calc(100% - 40px), 1220px);
  margin: 28px auto 0;
  padding: 42px;
  border-radius: 26px;
}

.ranking-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.ranking-tool-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(248,249,246,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
  text-align: left;
}

.ranking-tool-card__heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.ranking-tool-card__heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--navy-soft);
  color: var(--navy);
}

.ranking-tool-card__heading strong,
.ranking-tool-card__heading small { display: block; }
.ranking-tool-card__heading strong { color: var(--text); font-size: 14px; font-weight: 850; }
.ranking-tool-card__heading small { margin-top: 2px; color: var(--text-muted); font-size: 11px; line-height: 1.3; }

.ranking-section .search-box {
  width: 100%;
  margin: auto 0 0;
}

.ranking-section .cursos-select {
  width: 100%;
  margin: auto 0 0;
}

.ranking-table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 12px;
  text-align: left;
}

.ranking-table-heading > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ranking-table-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.ranking-table-heading h3 { margin: 0; color: var(--text); font-size: 16px; font-weight: 900; text-align: left}
.ranking-table-heading p { margin: 2px 0 0; color: var(--text-muted); font-size: 11px; }

.ranking-table-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.ranking-section .table-wrap {
  width: 100%;
  max-height: 680px;
  border-radius: 17px;
}

.ranking-section thead th { top: 0; }
.ranking-section tbody td { font-variant-numeric: tabular-nums; }

.analytics-section {
  width: min(calc(100% - 24px), 1280px);
  max-width: 1280px;
  gap: 22px;
  margin: 32px auto 0;
  padding: 44px 30px 54px;
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(238,242,232,.82), rgba(255,255,255,.48));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.analytics-section__heading {
  width: min(100%, 1160px);
  margin: 0 auto 8px;
  border-bottom-color: rgba(22,24,29,.12);
}

.analytics-card,
.graficos > .analytics-card,
#mac_wrap.analytics-card,
#red_wrap.analytics-card {
  --card-accent: var(--accent);
  position: relative;
  width: min(100%, 1160px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 22px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 16px 40px rgba(24,29,20,.08);
  text-align: left;
}

.analytics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-accent);
}

.analytics-card--answers { --card-accent: var(--accent); }
.analytics-card--averages { --card-accent: var(--navy); }
.analytics-card--writing { --card-accent: #bb7a1e; }

.analytics-card__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
  width: 100%;
}

.analytics-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--card-accent) 13%, transparent);
  color: var(--card-accent);
  font-size: 19px;
}

.analytics-card__title .section-tag,
.analytics-card__title #mac_tag,
.analytics-card__title #red_tag {
  margin: 0 0 9px;
}

.analytics-card__title #chartTitle,
.analytics-card__title #mac_title,
.analytics-card__title #red_title {
  max-width: none;
  margin: 0 0 6px;
  text-align: left;
  color: var(--text);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  padding: 0;
}

.analytics-card__title > p,
.analytics-card__title #mac_intro,
.analytics-card__title #red_intro {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.analytics-control-panel,
.analytics-filter-row {
  width: 100%;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(247,248,245,.88);
  box-shadow: inset 0 1px 0 #fff;
}

.analytics-control-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 4px 9px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.analytics-card .controls {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.analytics-card .controls button {
  flex: 1 1 130px;
  max-width: 50px;
  border-color: var(--line);
  background: #fff;
}

.analytics-card .controls button.active {
  border-color: var(--navy);
  background: var(--navy);
}

#mac_dropdown.analytics-filter-row {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr);
  align-items: center;
  gap: 14px;
  max-width: none;
  padding: 14px;
}

#mac_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

#mac_select { width: 100%; min-width: 0; }

.analytics-selection-summary {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 10px !important;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--navy-soft);
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.analytics-card .chart-container,
.analytics-card #mac_chartWrap {
  height: 430px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 1px 0 #fff, 0 8px 24px rgba(28,33,24,.05);
}

#red_flex {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

#red_flex > .red-chart-card {
  min-width: 0;
  padding: 18px 16px 14px;
  border-radius: 16px;
}

.red-chart-card--summary { border-top: 3px solid var(--navy) !important; }
.red-chart-card--continuation { border-top: 3px solid var(--accent) !important; }

.red_header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 0;
  margin: 0 0 10px;
  text-align: left;
}

.red-chart-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--navy-soft);
  color: var(--navy);
}

.red-chart-card--continuation .red-chart-card__icon {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.red_header strong,
.red_header small { display: block; }
.red_header strong { color: var(--text); font-size: 14px; font-weight: 900; }
.red_header small { margin-top: 2px; color: var(--text-muted); font-size: 11px; font-weight: 650; }

.red-chart-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(22,24,29,.05);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 900;
}

.depoimentos-section {
  width: min(calc(100% - 24px), 1280px);
  max-width: 1280px;
  margin: 30px auto 40px;
  padding: 62px 30px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(149,193,31,.20), transparent 27%),
    linear-gradient(145deg, #071a72, #061354);
  box-shadow: 0 28px 72px rgba(7,26,114,.24);
}

.depoimentos-header { margin-bottom: 30px; }

.depoimentos-tag {
  border-color: rgba(149,193,31,.38);
  background: rgba(255,255,255,.08);
  color: var(--accent-light);
}

.depoimentos-title {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

.depoimentos-subtitle { 
  color: rgba(255,255,255,.68); 
  margin-top: 5%;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1160px);
  margin: 0 auto 18px;
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.proof-stat strong {
  color: var(--accent);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.proof-stat span {
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.depoimentos-section .vantagens-wrap {
  max-width: 1160px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  padding: 34px;
  border-color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.vantagens-video-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.vantagens-video-heading strong {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
}

.depoimentos-section .vantagens-title {
  max-width: 560px;
  line-height: 1.08;
  text-align: left;
}

.depoimentos-section .vantagens-lista { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 9px; 
}

.depoimentos-section .vantagem-item { 
  min-height: 112px; 
  padding: 12px; 
}

@media (max-width: 1040px) {
  .heroTxt { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    padding: 52px; 
  }

  .hero-overview__grid { 
    grid-template-columns: 1fr 1fr; 
  }

  .ranking-section { 
    padding: 34px; 
  }

  .depoimentos-section .vantagens-wrap { 
    grid-template-columns: 1fr; 
  }
  
  .depoimentos-section .vantagens-video-col { 
    max-width: 760px; 
    margin: 0 auto; 
    width: 100%; 
  }

}

@media (max-width: 820px) {
  .quick-nav-heading { 
    align-items: start; 
    flex-direction: column; 
    gap: 8px; 
  }

  .quick-nav-heading p { 
    max-width: 560px; 
    text-align: left; 
  }

  .ranking-tools { 
    grid-template-columns: 1fr; 
  }

  .section-heading { 
    grid-template-columns: auto minmax(0,1fr); 
  }

  .section-heading__symbol { 
    display: none; 
  }

  #red_flex { 
    grid-template-columns: 1fr; 
  }

  .proof-stats { 
    grid-template-columns: 1fr; 
  }

  .proof-stat { 
    justify-content: center; 
    text-align: left; 
  }

  .depoimentos-section .vantagens-lista { 
    grid-template-columns: 1fr; 
  }

  .depoimentos-section .vantagem-item { 
    min-height: 0; 
  }
}

@media (max-width: 640px) {
  .hero-txt { 
    padding: 124px 12px 0; 
  }

  .heroTxt { 
    padding: 34px 20px 24px; 
    border-radius: 22px; 
  }

  .heroTxt h1 { 
    font-size: clamp(40px, 14vw, 58px); 
  }

  .hero-overview { 
    padding: 15px; 
    border-radius: 18px; 
  }

  .hero-overview__top { 
    align-items: flex-start; 
    flex-direction: column; 
  }

  .hero-overview__grid { 
    grid-template-columns: 1fr; 
  }

  .hero-chips { 
    display: grid; 
    grid-template-columns: 1fr; 
  }

  .quick-nav-section { 
    width: calc(100% - 24px); 
    padding: 20px 14px; 
    border-radius: 20px; 
  }

  .quick-nav { 
    grid-template-columns: 1fr; 
  }

  .quick-nav-card { 
    min-height: 74px; 
  }

  .highlight-banner { 
    align-items: flex-start; 
    font-size: 13px; 
  }

  .ranking-section { 
    width: calc(100% - 24px); 
    padding: 26px 14px; 
  }

  .section-heading { 
    gap: 12px; 
    margin-bottom: 22px; 
    padding-bottom: 20px; 
  }

  .section-heading__number { 
    width: 40px; 
    height: 40px; 
    border-radius: 12px; 
  }

  .section-heading__content h2 { 
    font-size: 28px; 
  }

  .section-heading__content p { 
    font-size: 13px; 
  }

  .ranking-tool-card { 
    padding: 14px; 
  }

  .ranking-table-heading { 
    align-items: flex-start; 
    flex-direction: column; 
  }

  .ranking-section .table-wrap { 
    max-height: 570px; 
  }

  .analytics-section { 
    width: calc(100% - 16px); 
    padding: 28px 8px 34px; 
    border-radius: 22px; 
  }

  .analytics-section__heading { 
    padding-inline: 8px; 
  }
  .analytics-card,
  .graficos > .analytics-card,
  #mac_wrap.analytics-card,
  #red_wrap.analytics-card { 
    padding: 24px 12px; 
    border-radius: 18px; 
  }

  .analytics-card__header { 
    grid-template-columns: 42px minmax(0,1fr);
    gap: 11px; 
  }

  .analytics-card__icon { 
    width: 42px; 
    height: 42px; 
    border-radius: 12px; 
    font-size: 16px; 
  }

  .analytics-card__title #chartTitle,
  .analytics-card__title #mac_title,
  .analytics-card__title #red_title { 
    font-size: 25px; 
    padding: 0;
  }

  .analytics-control-panel { 
    padding: 10px; 
  }

  #mac_dropdown.analytics-filter-row { 
    grid-template-columns: 1fr; 
    gap: 8px; 
  }

  #mac_label { 
    white-space: normal; 
  }

  .analytics-card .chart-container,
  .analytics-card #mac_chartWrap { 
    height: 310px; 
  }

  .red_header { 
    grid-template-columns: 36px minmax(0,1fr) auto; 
  }

  .red-chart-card__icon { 
    width: 36px; 
    height: 36px; 
  }

  .depoimentos-section { 
    width: calc(100% - 16px); 
    margin-bottom: 20px; 
    padding: 42px 8px 12px; 
    border-radius: 22px; 
  }

  .depoimentos-header { 
    padding-inline: 10px; 
  }

  .depoimentos-title { 
    font-size: 28px; 
  }

  .proof-stats { 
    padding-inline: 4px; 
  }

  .proof-stat { 
    justify-content: flex-start; 
  }

  .depoimentos-section .vantagens-wrap { 
    padding: 24px 12px; 
    border-radius: 18px; 
  }

  .vantagens-video-heading { 
    align-items: flex-start; 
    flex-direction: column; 
    gap: 2px; 
  }
}

@supports not (
  color: color-mix(in srgb, white 50%, black)) {
  .analytics-card__icon { background: rgba(149,193,31,.13); 
  }

  .analytics-card--averages .analytics-card__icon { 
    background: rgba(7,26,114,.10); 
  }
  .analytics-card--writing .analytics-card__icon { 
    background: rgba(187,122,30,.12); 
  }
}

/*---------------------------------------------------------------------------------------*/

.footer-container{
    max-width: 1170px;
    margin: auto;
}

.row-container{
    display: flex;
}

ul{
    list-style: none;
}

.footer{
    text-align: left;
    background-color:#040753;
    padding: 70px 0;
    width: 100%;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    margin-left: 0;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0%;
    bottom: -10px;
    background-color: #95C11F;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 14px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: 0.3s ease;
}

.footer-col ul li a:hover{
    color: #fff;
    padding-left: 10px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgb(225, 225, 225, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s ease;
}

.footer-col .social-links a:hover{
    color: #95C11F;
    background-color: #fff;
}

.footer-col ul li i{
    color: #95C11F;
    width: 16px;
    margin-right: 10px;
}

.footer-col ul li{
    color: #bbbbbb;
    font-size: 14px;
}

.footer-container2{
    max-width: 1170px;
    margin: auto;
}

.footer-container2 img{
    height: 90px;
}

.footer-container2 p{
    color: #bbbbbb;
    font-size: 12px;
    margin-bottom: 0;
}


.stagger .stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--stagger-delay, 0ms);
}

.stagger .stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pulse-once {
  animation: pulse 0.45s ease-in-out 1;
}

/*---------------------------------------------------------------------------------------*/

    @media (max-width: 768px) {

/*---------------------------------------------------------------------------------------*/

        .footer-container{
            max-width: 1170px;
            margin: auto;
            
        }

        .row-container{
            display: flex;
            flex-wrap: wrap; 
            justify-content: center; 
            text-align: center; 
        }

        ul{
            list-style: none;
        }

        .footer{
            padding: 70px 0;
            width: 100%;  
        }

        .footer-col{
            width: 100%;
            padding: 0 15px;
            margin-bottom: 40px;
        }

        .footer-col h4{
            font-size: 21px;
            text-transform: capitalize;
            margin-bottom: 30px;
            font-weight: 600;
            position: relative;
            margin-left: 0;
        }

        .footer-col ul li a{
            font-size: 17px;
            text-transform: capitalize;
            text-decoration: none;
            font-weight: 300;
            display: block;
            transition: 0.3s ease;
        }

        .footer-col .social-links a{
            display: inline-block;
            height: 40px;
            width: 40px;
            text-align: center;
            margin: 0 10px 10px 0;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: 0.3s ease;
        }

        .footer-col ul li i{
            
            width: 16px;
            margin-right: 10px;
        }

        .footer-col ul li{
            font-size: 17px;
        }

        .footer-container2{
            max-width: 1170px;
            margin: auto;
        }

        .footer-container2 img{
            height: 90px;
        }

        .footer-container2 p{
            font-size: 12px;
            margin-bottom: 0;
        }

        .social-links{
            display: flex;
            flex-direction: row;
        }

        .footer-col h4::before{
            content: '';
            position: absolute;
            left: 41%;
            bottom: -10px;
            background-color: #95C11F;
            height: 2px;
            box-sizing: border-box;
            width: 60px;
        }

        .social-links{
            display: flex;
            flex-direction: row;
            justify-content: center;
        }

        .footer-container2{
            text-align: center;
        }

    }