@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0,-50..200&icon_names=add,arrow_back,arrow_forward,auto_awesome,bolt,business,calculate,check_circle,close,delete,description,directions_car,download,eco,edit,electric_car,emoji_events,error,expand_less,expand_more,filter_list,forest,history,info,insert_chart,local_gas_station,local_parking,local_shipping,location_on,lock,login,logout,mail,military_tech,person,phone,receipt,schedule,search,security,share,shield,speed,star,trending_down,trending_up,tune,two_wheeler,visibility,visibility_off,volume_off,warning_amber,workspace_premium");
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  list-style: none;
  border-collapse: collapse;
  text-decoration: none; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif; }

div.sucesso, div.erro, div.info {
  border-radius: 1rem;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-weight: 700;
  width: 100%;
  text-align: center; }

div.sucesso {
  color: #1A2E1A;
  background: #2ff15d; }

div.erro {
  color: #FFFFFF;
  background: #e71717; }

div.info {
  color: #1A2E1A;
  background: #0aa2e9; }

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 6.8rem;
  background-color: #FFFFFF;
  border-bottom: 0.1rem solid #E2E8F0;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.08); }
  .header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    padding: 0 3.2rem; }
  .header__auth {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0; }
  .header__user {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-right: 0.2rem; }
  .header__user-avatar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 9999px;
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
    background-color: #2E7D32;
    color: #FFFFFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.03em; }
  .header__user-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A2E1A; }

.logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0; }
  .logo img {
    height: 3.6rem;
    width: auto;
    display: block; }

.logo--light img {
  filter: brightness(0) invert(1); }

.nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem; }

.nav__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 0.8rem;
  padding-right: 1.6rem;
  padding-bottom: 0.8rem;
  padding-left: 1.6rem;
  border-radius: 9999px;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4A5568; }
  .nav__link:hover {
    color: #2E7D32;
    background-color: rgba(76, 175, 80, 0.08); }
  .nav__link--active {
    color: #1B5E20;
    background-color: rgba(118, 196, 66, 0.18);
    font-weight: 600; }
    .nav__link--active:hover {
      background-color: rgba(118, 196, 66, 0.26); }
  .nav__link--pill {
    background-color: rgba(118, 196, 66, 0.12);
    color: #1B5E20;
    font-weight: 600; }
    .nav__link--pill:hover {
      background-color: rgba(118, 196, 66, 0.22);
      color: #1B5E20; }
  .nav__link--pill-active {
    background-color: #76C442;
    color: #FFFFFF;
    font-weight: 600; }
    .nav__link--pill-active:hover {
      background-color: #68b037;
      color: #FFFFFF; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem; }
  .hamburger span {
    display: block;
    width: 2.2rem;
    height: 0.2rem;
    background-color: #1A2E1A;
    border-radius: 9999px;
    transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0; }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg); }

@media (max-width: 1100px) {
  .header__user-name {
    display: none; }
  .hamburger {
    display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 6.8rem;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #FFFFFF;
    border-bottom: 0.1rem solid #E2E8F0;
    padding: 1.6rem 3.2rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1); }
    .nav.is-open {
      display: block; }
    .nav__list {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: flex-start;
      gap: 0.4rem; }
    .nav__link {
      width: 100%; } }

.hbtn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  height: 3.6rem;
  padding: 0 2rem;
  border-radius: 9999px;
  transition-property: all;
  transition-duration: 0.18s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  appearance: none;
  -webkit-appearance: none; }
  .hbtn--outline {
    background-color: #FFFFFF;
    border: 0.2rem solid #2E7D32;
    color: #2E7D32; }
    .hbtn--outline:hover {
      background-color: #2E7D32;
      color: #FFFFFF; }
  .hbtn--solid {
    background-color: #2E7D32;
    border: 0.2rem solid transparent;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.28); }
    .hbtn--solid:hover {
      background-color: #1B5E20;
      box-shadow: 0 4px 14px rgba(46, 125, 50, 0.38);
      transform: translateY(-1px); }
    .hbtn--solid:active {
      transform: translateY(0); }
  .hbtn--ghost {
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0.8rem;
    color: #718096;
    font-size: 1.3rem;
    font-weight: 500; }
    .hbtn--ghost:hover {
      color: #EF4444;
      background: none; }

.btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.4rem;
  padding-right: 2.8rem;
  padding-bottom: 1.4rem;
  padding-left: 2.8rem;
  border-radius: 9999px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: none; }
  .btn .material-symbols-outlined {
    font-size: 1.8rem; }
  .btn--primary {
    background-color: #2E7D32;
    color: #FFFFFF; }
    .btn--primary:hover {
      background-color: #1B5E20;
      transform: scale(1.02); }
  .btn--outline {
    background-color: transparent;
    color: #1A2E1A;
    border: 0.15rem solid #E2E8F0; }
    .btn--outline:hover {
      border-color: #2E7D32;
      color: #2E7D32;
      background-color: rgba(76, 175, 80, 0.05); }
  .btn--calc {
    width: 100%;
    justify-content: center;
    background: linear-gradient(90deg, #2E7D32 0%, #4CAF50 100%);
    color: #FFFFFF;
    font-size: 1.6rem;
    padding-top: 1.6rem;
    padding-right: 2.8rem;
    padding-bottom: 1.6rem;
    padding-left: 2.8rem;
    border-radius: 1.2rem;
    margin-top: 0.8rem; }
    .btn--calc:hover {
      background: linear-gradient(90deg, #1B5E20 0%, #2E7D32 100%);
      transform: scale(1.01); }
  .btn--cta-light {
    padding-top: 1.1rem;
    padding-right: 2rem;
    padding-bottom: 1.1rem;
    padding-left: 2rem;
    background-color: #FFFFFF;
    color: #1B5E20;
    font-size: 1.4rem; }
    .btn--cta-light:hover {
      background-color: rgba(255, 255, 255, 0.9);
      transform: scale(1.02); }
  .btn--cta-blue {
    padding-top: 1.1rem;
    padding-right: 2rem;
    padding-bottom: 1.1rem;
    padding-left: 2rem;
    background-color: #3B82F6;
    color: #FFFFFF;
    font-size: 1.4rem; }
    .btn--cta-blue:hover {
      background-color: #1469f4;
      transform: scale(1.02); }

.footer {
  background-color: #0D1B2A;
  padding: 6rem 3.2rem 0; }
  .footer__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    padding-bottom: 5rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08); }
  .footer__brand {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    max-width: 26rem;
    flex-shrink: 0; }
  .footer__tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7; }
  .footer__col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    min-width: 14rem; }
  .footer__col-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4); }
  .footer__links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem; }
    .footer__links li a, .footer__links li span {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.7);
      transition-property: color;
      transition-duration: 0.15s;
      transition-timing-function: ease-in-out;
      transition-delay: 0s;
      transition-behavior: normal; }
      .footer__links li a:hover, .footer__links li span:hover {
        color: #FFFFFF; }
    .footer__links--contact li {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      gap: 0.8rem; }
      .footer__links--contact li .material-symbols-outlined {
        font-size: 1.6rem;
        color: rgba(255, 255, 255, 0.4);
        flex-shrink: 0; }
  .footer__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 120rem;
    margin: 0 auto;
    padding: 2.4rem 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.35); }
  .footer__bottom-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.4rem; }
    .footer__bottom-links a {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.35);
      transition-property: color;
      transition-duration: 0.15s;
      transition-timing-function: ease-in-out;
      transition-delay: 0s;
      transition-behavior: normal; }
      .footer__bottom-links a:hover {
        color: rgba(255, 255, 255, 0.7); }

@media (max-width: 900px) {
  .footer__inner {
    flex-wrap: wrap;
    gap: 3.2rem; }
  .footer__brand {
    max-width: 100%; } }

@media (max-width: 560px) {
  .footer {
    padding: 4rem 1.6rem 0; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center; } }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 6.8rem;
  background-color: #FFFFFF;
  border-bottom: 0.1rem solid #E2E8F0;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.08); }
  .header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    padding: 0 3.2rem; }

.logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0; }
  .logo img {
    height: 3.6rem;
    width: auto;
    display: block; }

.nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem; }

.nav__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 0.8rem;
  padding-right: 1.6rem;
  padding-bottom: 0.8rem;
  padding-left: 1.6rem;
  border-radius: 9999px;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4A5568; }
  .nav__link:hover {
    color: #2E7D32;
    background-color: rgba(76, 175, 80, 0.08); }
  .nav__link--active {
    background-color: #2E7D32 !important;
    color: #FFFFFF !important;
    font-weight: 600; }
    .nav__link--active:hover {
      background-color: #1B5E20 !important; }
  .nav__link--pill {
    background-color: #2E7D32;
    color: #FFFFFF;
    font-weight: 600; }
    .nav__link--pill:hover {
      background-color: #1B5E20; }
  .nav__link--pill-outline {
    border: 0.15rem solid #E2E8F0;
    color: #4A5568; }
    .nav__link--pill-outline:hover {
      border-color: #2E7D32;
      color: #2E7D32; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem; }
  .hamburger span {
    display: block;
    width: 2.2rem;
    height: 0.2rem;
    background-color: #1A2E1A;
    border-radius: 9999px;
    transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0; }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger {
    display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 6.8rem;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 0.1rem solid #E2E8F0;
    padding: 1.6rem 3.2rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1); }
    .nav.is-open {
      display: block; }
    .nav__list {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: flex-start;
      gap: 0.4rem; }
    .nav__link {
      width: 100%; } }

.metodo {
  background-color: #F4FAF4;
  min-height: calc(100vh - 6.8rem);
  padding: 4rem 3.2rem 8rem; }
  .metodo__inner {
    max-width: 76rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.4rem; }

@media (max-width: 768px) {
  .metodo {
    padding: 2.4rem 1.6rem 5rem; } }

.metodo__hero {
  text-align: center;
  padding: 2.4rem 0 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem; }

.version-badge {
  padding-top: 0.5rem;
  padding-right: 1.4rem;
  padding-bottom: 0.5rem;
  padding-left: 1.4rem;
  border-radius: 9999px;
  background-color: rgba(46, 125, 50, 0.08);
  border: 0.1rem solid rgba(46, 125, 50, 0.2);
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B5E20;
  letter-spacing: 0.04em; }

.metodo__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #1A2E1A;
  margin: 0; }

.metodo__subtitle {
  font-size: 1.5rem;
  color: #718096;
  line-height: 1.6;
  max-width: 52rem;
  margin: 0; }

.dark-card {
  background-color: #1C3044;
  border-radius: 1.6rem;
  padding-top: 2.8rem;
  padding-right: 3.2rem;
  padding-bottom: 2.8rem;
  padding-left: 3.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.08); }
  .dark-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.2rem; }
  .dark-card__text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0 0 2rem; }

.formula-block {
  background: #FFFFFF;
  border-radius: 1.6rem;
  padding-top: 2.8rem;
  padding-right: 3.2rem;
  padding-bottom: 2.8rem;
  padding-left: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 0.1rem solid rgba(46, 125, 50, 0.14);
  border-left: 0.5rem solid #2E7D32;
  box-shadow: 0 0.2rem 1.2rem rgba(46, 125, 50, 0.05); }

.fml-principal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.6rem;
  padding-right: 2rem;
  padding-bottom: 1.6rem;
  padding-left: 2rem;
  border-radius: 1.2rem;
  background: rgba(46, 125, 50, 0.04);
  flex-wrap: wrap; }

.fml-onde-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  color: #718096;
  font-style: italic;
  padding-bottom: 0.4rem;
  border-bottom: 0.1rem solid #E2E8F0; }

.fml-decomp {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; }

.fml-defs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem; }

.fml-def {
  display: grid;
  grid-template-columns: 9rem 1.6rem 1fr auto;
  align-items: baseline;
  gap: 0 0.8rem; }
  .fml-def__var {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B5E20; }
    .fml-def__var sub {
      font-size: 0.68em; }
  .fml-def__expr {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.35rem;
    color: #4A5568; }
  .fml-def__desc {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    color: #718096;
    font-style: italic; }

.fml-var {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #1A2E1A; }
  .fml-var sub {
    font-size: 0.65em;
    font-weight: 600;
    color: inherit; }
  .fml-var--destaque {
    font-size: 2rem;
    color: #1B5E20; }

.fml-op {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #718096; }
  .fml-op--minus {
    color: #EF4444; }

.formula-line {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: #1A2E1A; }
  .formula-line--highlight {
    font-weight: 700;
    color: #1B5E20; }
  .formula-line--dim {
    color: #718096;
    font-size: 1.3rem; }

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem; }

@media (max-width: 640px) {
  .scenario-grid {
    grid-template-columns: 1fr; } }

.scenario-card {
  border-radius: 1.4rem;
  padding-top: 2.4rem;
  padding-right: 2.4rem;
  padding-bottom: 2.4rem;
  padding-left: 2.4rem;
  border: 0.1rem solid #E2E8F0;
  background-color: #FFFFFF; }
  .scenario-card__icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.6rem;
    flex-shrink: 0; }
    .scenario-card__icon .material-symbols-outlined {
      font-size: 2.2rem; }
    .scenario-card__icon--red {
      background-color: rgba(239, 68, 68, 0.1);
      color: #EF4444; }
    .scenario-card__icon--green {
      background-color: rgba(46, 125, 50, 0.1);
      color: #2E7D32; }
  .scenario-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1A2E1A;
    margin: 0 0 1rem; }
  .scenario-card__desc {
    font-size: 1.35rem;
    color: #4A5568;
    line-height: 1.65;
    margin: 0 0 1.6rem; }
  .scenario-card--sem {
    border-color: rgba(239, 68, 68, 0.2); }
  .scenario-card--com {
    border-color: rgba(46, 125, 50, 0.2);
    background-color: rgba(46, 125, 50, 0.02); }

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0; }
  .bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.35rem;
    color: #4A5568;
    line-height: 1.5; }
    .bullet-list li::before {
      content: '';
      display: block;
      width: 0.7rem;
      height: 0.7rem;
      border-radius: 9999px;
      flex-shrink: 0;
      margin-top: 0.5rem; }
  .bullet-list--red li::before {
    background-color: #EF4444; }
  .bullet-list--green li::before {
    background-color: #2E7D32; }

.section-card {
  background-color: #FFFFFF;
  border: 0.1rem solid #E2E8F0;
  border-radius: 1.6rem;
  padding-top: 2.8rem;
  padding-right: 3.2rem;
  padding-bottom: 2.8rem;
  padding-left: 3.2rem; }
  .section-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A2E1A;
    margin: 0 0 0.4rem; }
  .section-card__sub {
    font-size: 1.35rem;
    color: #718096;
    margin: 0 0 2rem; }
  .section-card__fonte {
    font-size: 1.25rem;
    color: #718096;
    margin: 0 0 2rem;
    font-style: italic; }

@media (max-width: 600px) {
  .section-card {
    padding-top: 2rem;
    padding-right: 1.8rem;
    padding-bottom: 2rem;
    padding-left: 1.8rem; } }

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem; }

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
  min-width: 16rem; }
  .flow-step__num {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 9999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF; }
    .flow-step__num--red {
      background-color: #EF4444; }
    .flow-step__num--green {
      background-color: #2E7D32; }
  .flow-step__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem; }
    .flow-step__body strong {
      font-size: 1.4rem;
      font-weight: 600;
      color: #1A2E1A; }
    .flow-step__body span {
      font-size: 1.25rem;
      color: #718096;
      line-height: 1.5; }

.flow-arrow {
  font-size: 2rem;
  color: #E2E8F0;
  margin-top: 0.6rem;
  flex-shrink: 0; }

@media (max-width: 640px) {
  .flow-steps {
    flex-direction: column; }
  .flow-arrow {
    transform: rotate(90deg); } }

.exemplo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem; }

@media (max-width: 640px) {
  .exemplo-grid {
    grid-template-columns: 1fr; } }

.calc-box {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 0.1rem solid #E2E8F0;
  font-size: 1.35rem; }
  .calc-box__header {
    padding-top: 1rem;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 1.6rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em; }
  .calc-box__body {
    padding-top: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: 1.2rem;
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background-color: #F4FAF4;
    font-family: "Plus Jakarta Sans", sans-serif; }
  .calc-box__footer {
    padding-top: 1.2rem;
    padding-right: 1.6rem;
    padding-bottom: 1.2rem;
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-family: "Plus Jakarta Sans", sans-serif; }
  .calc-box .calc-row {
    display: grid;
    grid-template-columns: 5.5rem 1fr auto;
    align-items: baseline;
    gap: 0 1.2rem;
    padding: 0.5rem 0;
    font-size: 1.35rem;
    color: #4A5568; }
    .calc-box .calc-row__var {
      font-weight: 600;
      color: #1B5E20;
      font-size: 1.3rem; }
      .calc-box .calc-row__var sub {
        font-size: 0.68em; }
    .calc-box .calc-row__expr {
      color: #4A5568; }
      .calc-box .calc-row__expr em {
        color: #718096;
        font-style: italic; }
    .calc-box .calc-row__result {
      text-align: right;
      white-space: nowrap;
      color: #1A2E1A; }
      .calc-box .calc-row__result strong {
        font-weight: 700; }
    .calc-box .calc-row--total {
      grid-template-columns: 5.5rem 1fr;
      border-top: 0.1rem dashed #E2E8F0;
      padding-top: 0.8rem;
      margin-top: 0.4rem;
      font-size: 1.35rem; }
      .calc-box .calc-row--total .calc-row__result {
        text-align: left; }
        .calc-box .calc-row--total .calc-row__result strong {
          color: #1B5E20; }
  .calc-box--sem .calc-box__header {
    background-color: rgba(239, 68, 68, 0.08);
    color: #b91c1c; }
  .calc-box--sem .calc-box__footer {
    border-top: 0.1rem solid rgba(239, 68, 68, 0.15); }
  .calc-box--com .calc-box__header {
    background-color: rgba(46, 125, 50, 0.08);
    color: #1B5E20; }
  .calc-box--com .calc-box__footer {
    border-top: 0.1rem solid rgba(46, 125, 50, 0.15); }

.emissao-result {
  border-radius: 1.2rem;
  padding-top: 1.8rem;
  padding-right: 2.4rem;
  padding-bottom: 1.8rem;
  padding-left: 2.4rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(118, 196, 66, 0.12) 100%);
  border: 0.1rem solid rgba(46, 125, 50, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem; }
  .emissao-result strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1B5E20; }
  .emissao-result span {
    font-size: 1.3rem;
    color: #718096; }

.vars-table-wrap {
  overflow-x: auto;
  margin-top: 0.8rem; }

.vars-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.35rem; }
  .vars-table thead tr {
    border-bottom: 0.2rem solid #E2E8F0; }
  .vars-table th {
    padding-top: 1rem;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 1.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #718096;
    text-align: left;
    white-space: nowrap; }
    .vars-table th.th-sem {
      color: #b91c1c; }
    .vars-table th.th-com {
      color: #1B5E20; }
  .vars-table tbody tr {
    border-bottom: 0.1rem solid #E2E8F0;
    transition-property: background;
    transition-duration: 0.12s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal; }
    .vars-table tbody tr:hover {
      background-color: #F4FAF4; }
    .vars-table tbody tr:last-child {
      border-bottom: none; }
  .vars-table td {
    padding-top: 1.2rem;
    padding-right: 1.6rem;
    padding-bottom: 1.2rem;
    padding-left: 1.6rem;
    color: #4A5568;
    vertical-align: middle; }
    .vars-table td:first-child {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      color: #1A2E1A;
      font-weight: 500; }

.vars-icon {
  font-size: 1.8rem;
  color: #718096;
  flex-shrink: 0; }

.var-badge {
  display: inline-block;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap; }
  .var-badge--red {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c; }
  .var-badge--orange {
    background-color: rgba(245, 158, 11, 0.12);
    color: #92400e; }
  .var-badge--green {
    background-color: rgba(46, 125, 50, 0.1);
    color: #1B5E20; }

.sensibilidade-card__head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap; }

.ilustrativo-badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.4rem;
  padding-right: 1.2rem;
  padding-bottom: 0.4rem;
  padding-left: 1.2rem;
  border-radius: 9999px;
  background-color: rgba(245, 158, 11, 0.1);
  border: 0.1rem solid rgba(245, 158, 11, 0.3);
  color: #92400e;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0; }
  .ilustrativo-badge .material-symbols-outlined {
    font-size: 1.5rem; }

.sens-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3.2rem;
  margin-top: 2rem;
  align-items: start; }

@media (max-width: 640px) {
  .sens-body {
    grid-template-columns: 1fr;
    gap: 2rem; } }

.sens-slider-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A2E1A;
  margin-bottom: 1.2rem; }

.sens-slider-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem; }

.sens-slider-min,
.sens-slider-max {
  font-size: 1.2rem;
  color: #718096;
  white-space: nowrap;
  flex-shrink: 0; }

.sens-slider {
  flex: 1;
  height: 0.5rem;
  border-radius: 9999px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, #2E7D32 0%, #2E7D32 10%, #E2E8F0 10%);
  cursor: pointer;
  outline: none; }
  .sens-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 9999px;
    background: #2E7D32;
    border: 0.3rem solid #FFFFFF;
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
    cursor: pointer;
    transition-property: box-shadow;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal; }
  .sens-slider::-moz-range-thumb {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 9999px;
    background: #2E7D32;
    border: 0.3rem solid #FFFFFF;
    cursor: pointer; }
  .sens-slider:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.4rem rgba(46, 125, 50, 0.2); }

.sens-formula {
  border-radius: 0.8rem;
  padding-top: 1.2rem;
  padding-right: 1.6rem;
  padding-bottom: 1.2rem;
  padding-left: 1.6rem;
  background-color: #F4FAF4;
  border: 0.1rem solid #E2E8F0;
  border-left: 0.4rem solid #2E7D32;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: #1A2E1A; }
  .sens-formula sub {
    font-size: 0.72em; }

.sens-fonte {
  font-size: 1.2rem;
  color: #718096;
  font-style: italic; }

.sens-result-col {
  background-color: #F4FAF4;
  border-radius: 1.2rem;
  padding-top: 2.4rem;
  padding-right: 2rem;
  padding-bottom: 2.4rem;
  padding-left: 2rem;
  text-align: center;
  border: 0.1rem solid #E2E8F0; }

.sens-result-label {
  font-size: 1.3rem;
  color: #718096;
  margin: 0 0 0.8rem; }

.sens-result-val {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  align-items: baseline;
  margin-bottom: 0.4rem; }
  .sens-result-val span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1; }
  .sens-result-val small {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1B5E20; }

.sens-result-unit {
  font-size: 1.3rem;
  color: #718096;
  margin: 0 0 1.2rem; }

.sens-ref {
  font-size: 1.15rem;
  color: #718096;
  font-style: italic;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 0.1rem solid #E2E8F0; }

.premissas-head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap; }

.premissas-table-wrap {
  overflow-x: auto; }

.premissas-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.35rem; }
  .premissas-table thead tr {
    border-bottom: 0.2rem solid #E2E8F0; }
  .premissas-table th {
    padding-top: 1rem;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 1.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #718096;
    text-align: left;
    white-space: nowrap; }
  .premissas-table tbody tr {
    border-bottom: 0.1rem solid #E2E8F0;
    transition-property: background;
    transition-duration: 0.12s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal; }
    .premissas-table tbody tr:hover {
      background-color: #F4FAF4; }
    .premissas-table tbody tr:last-child {
      border-bottom: none; }
    .premissas-table tbody tr:nth-child(even) {
      background-color: rgba(244, 250, 244, 0.6); }
    .premissas-table tbody tr:nth-child(even):hover {
      background-color: #F4FAF4; }
  .premissas-table td {
    padding-top: 1.1rem;
    padding-right: 1.6rem;
    padding-bottom: 1.1rem;
    padding-left: 1.6rem;
    color: #4A5568;
    vertical-align: middle; }
    .premissas-table td:first-child {
      color: #1A2E1A;
      font-weight: 500; }
    .premissas-table td:last-child {
      font-size: 1.2rem;
      color: #718096; }

.pval {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A2E1A;
  white-space: nowrap; }
  .pval--red {
    color: #b91c1c; }
  .pval--orange {
    color: #92400e; }
  .pval--green {
    color: #1B5E20; }
  .pval--blue {
    color: #3B82F6; }

.limitacoes-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  counter-reset: limitacao; }
  .limitacoes-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    counter-increment: limitacao;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    display: grid;
    grid-template-columns: 2.8rem 1fr;
    gap: 0 1.6rem; }
    .limitacoes-list li::before {
      content: counter(limitacao);
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
      width: 2.8rem;
      height: 2.8rem;
      border-radius: 9999px;
      background-color: rgba(46, 125, 50, 0.1);
      color: #1B5E20;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.3rem;
      font-weight: 700; }
    .limitacoes-list li::before {
      grid-row: 1 / 3;
      align-self: start;
      margin-top: 0.1rem; }
    .limitacoes-list li strong {
      font-size: 1.4rem;
      font-weight: 600;
      color: #1A2E1A;
      line-height: 1.4; }
    .limitacoes-list li span {
      font-size: 1.35rem;
      color: #4A5568;
      line-height: 1.6; }

.aviso-box {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  border-radius: 1.2rem;
  padding-top: 2rem;
  padding-right: 2.4rem;
  padding-bottom: 2rem;
  padding-left: 2.4rem;
  background-color: rgba(245, 158, 11, 0.08);
  border: 0.1rem solid rgba(245, 158, 11, 0.3); }
  .aviso-box__icon {
    font-size: 2.2rem;
    color: #D97706;
    flex-shrink: 0;
    margin-top: 0.1rem; }
  .aviso-box strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.6rem; }
  .aviso-box p {
    font-size: 1.35rem;
    color: #78350f;
    line-height: 1.65;
    margin: 0; }

.footer {
  background-color: #0D1B2A;
  padding: 5rem 3.2rem 0; }
  .footer__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap; }
  .footer__brand {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.4rem;
    max-width: 26rem;
    flex-shrink: 0; }
  .footer__tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6; }
  .footer__col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.4rem; }
  .footer__col-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4); }
  .footer__links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer__links li a, .footer__links li span {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.65);
      transition-property: color;
      transition-duration: 0.15s;
      transition-timing-function: ease-in-out;
      transition-delay: 0s;
      transition-behavior: normal; }
      .footer__links li a:hover, .footer__links li span:hover {
        color: #FFFFFF; }
    .footer__links--contact li {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      gap: 0.8rem; }
      .footer__links--contact li .material-symbols-outlined {
        font-size: 1.6rem;
        color: rgba(255, 255, 255, 0.35);
        flex-shrink: 0; }
  .footer__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.3); }

.logo--light img {
  filter: brightness(0) invert(1); }

/*# sourceMappingURL=metodologia.css.map */