@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; } }

.hero {
  background: linear-gradient(160deg, #edf7ed 0%, #f4faf4 60%, #ffffff 100%);
  padding: 8rem 3.2rem; }
  .hero__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto; }
  .hero__content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.4rem;
    flex: 1;
    max-width: 54rem; }
  .hero__badge {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.7rem;
    padding-right: 1.4rem;
    padding-bottom: 0.7rem;
    padding-left: 1.4rem;
    border-radius: 9999px;
    background-color: rgba(118, 196, 66, 0.15);
    color: #1B5E20;
    font-size: 1.3rem;
    font-weight: 600; }
    .hero__badge .material-symbols-outlined {
      font-size: 1.6rem;
      color: #4CAF50; }
  .hero__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1A2E1A;
    letter-spacing: -0.02em; }
    .hero__title sub {
      font-size: 3rem;
      vertical-align: sub;
      line-height: 0; }
    .hero__title--accent {
      color: #4CAF50; }
  .hero__description {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #718096; }
  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.6rem; }
  .hero__media {
    position: relative;
    flex: 1;
    max-width: 58rem; }
  .hero__image {
    width: 100%;
    height: 42rem;
    object-fit: cover;
    border-radius: 2rem;
    display: block;
    box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.14); }
  .hero__card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.2rem;
    padding-right: 1.6rem;
    padding-bottom: 1.2rem;
    padding-left: 1.6rem;
    border-radius: 1.4rem;
    position: absolute;
    background-color: #FFFFFF;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.12);
    min-width: 18rem;
    z-index: 2; }
    .hero__card--top {
      top: -2rem;
      right: -2rem; }
    .hero__card--bottom {
      bottom: -2rem;
      left: 2rem; }
  .hero__card-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1rem;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0; }
    .hero__card-icon .material-symbols-outlined {
      font-size: 2rem; }
    .hero__card-icon--blue {
      background-color: rgba(59, 130, 246, 0.12);
      color: #3B82F6; }
    .hero__card-icon--green {
      background-color: rgba(118, 196, 66, 0.15);
      color: #2E7D32; }
  .hero__card-info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.2rem; }
    .hero__card-info strong {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1A2E1A;
      line-height: 1.1; }
    .hero__card-info span {
      font-size: 1.2rem;
      color: #718096; }

@media (max-width: 992px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4.8rem; }
  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center; }
  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.6rem; }
  .hero__media {
    max-width: 100%;
    width: 100%; }
  .hero__title {
    font-size: 4rem; } }

@media (max-width: 480px) {
  .hero {
    padding: 5rem 2rem; }
    .hero__title {
      font-size: 3.2rem; }
    .hero__actions {
      flex-direction: column;
      width: 100%; }
    .hero .btn {
      justify-content: center; }
    .hero__card--top {
      top: -1rem;
      right: 0.5rem; }
    .hero__card--bottom {
      bottom: -1rem;
      left: 0.5rem; } }

.calc-section {
  padding: 8rem 3.2rem;
  background-color: #F4FAF4; }
  .calc-section__header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    margin-bottom: 4rem; }
  .calc-section__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1A2E1A;
    letter-spacing: -0.01em; }
  .calc-section__subtitle {
    font-size: 1.5rem;
    color: #718096; }

.calc-card {
  max-width: 104rem;
  margin: 0 auto;
  background-color: #0D1B2A;
  border-radius: 2rem;
  padding-top: 3.2rem;
  padding-right: 3.2rem;
  padding-bottom: 3.2rem;
  padding-left: 3.2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35); }
  .calc-card__top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 3.2rem; }
  .calc-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.4rem; }
  .calc-card__desc {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5); }
  .calc-card__mute {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1rem;
    width: 3.6rem;
    height: 3.6rem;
    background-color: #1C3044;
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
    .calc-card__mute .material-symbols-outlined {
      font-size: 1.8rem; }
    .calc-card__mute:hover {
      background-color: #152535;
      color: #FFFFFF; }
  .calc-card__body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.2rem; }

.calc-inputs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 2.8rem;
  flex: 1; }

.calc-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.2rem; }
  .calc-group__label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Plus Jakarta Sans", sans-serif; }
  .calc-group__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0; }
  .calc-group__value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif; }
    .calc-group__value--green {
      color: #76C442; }
    .calc-group__value--blue {
      color: #3B82F6; }

.calc-vehicles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; }

.calc-vehicle {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-right: 1.6rem;
  padding-bottom: 1.2rem;
  padding-left: 1.6rem;
  border-radius: 1rem;
  background-color: #152535;
  border: 0.15rem solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal; }
  .calc-vehicle .material-symbols-outlined {
    font-size: 1.8rem; }
  .calc-vehicle:hover {
    border-color: rgba(118, 196, 66, 0.5);
    color: #FFFFFF; }
  .calc-vehicle--active {
    background-color: rgba(118, 196, 66, 0.12);
    border-color: #76C442;
    color: #76C442; }

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

.calc-context {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.2rem;
  padding-right: 1.4rem;
  padding-bottom: 1.2rem;
  padding-left: 1.4rem;
  border-radius: 1rem;
  background-color: #152535;
  border: 0.15rem solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal; }
  .calc-context .material-symbols-outlined {
    font-size: 2rem; }
  .calc-context:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: #FFFFFF; }
  .calc-context--active {
    background-color: rgba(59, 130, 246, 0.18);
    border-color: #3B82F6;
    color: #3B82F6; }

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.5rem;
  border-radius: 9999px;
  outline: none;
  cursor: pointer; }
  .calc-slider--green {
    background: linear-gradient(to right, #76C442 0%, #76C442 33%, #1C3044 33%); }
    .calc-slider--green::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 1.8rem;
      height: 1.8rem;
      border-radius: 50%;
      background: #76C442;
      box-shadow: 0 0 0 0.3rem rgba(118, 196, 66, 0.25);
      cursor: pointer; }
  .calc-slider--blue {
    background: linear-gradient(to right, #3B82F6 0%, #3B82F6 20%, #1C3044 20%); }
    .calc-slider--blue::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 1.8rem;
      height: 1.8rem;
      border-radius: 50%;
      background: #3B82F6;
      box-shadow: 0 0 0 0.3rem rgba(59, 130, 246, 0.25);
      cursor: pointer; }

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

.calc-result-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 2.4rem;
  padding-right: 2.4rem;
  padding-bottom: 2.4rem;
  padding-left: 2.4rem;
  border-radius: 1.4rem;
  background-color: rgba(118, 196, 66, 0.07);
  border: 0.15rem solid rgba(118, 196, 66, 0.2);
  flex: 1; }
  .calc-result-main__label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Plus Jakarta Sans", sans-serif; }
  .calc-result-main__value {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0.6rem; }
  .calc-result-main__number {
    font-size: 5.6rem;
    font-weight: 800;
    color: #76C442;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1; }
  .calc-result-main__unit {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 0.8rem; }
  .calc-result-main__desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5; }

.calc-result-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.6rem; }

.calc-result-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
  padding-top: 1.8rem;
  padding-right: 2rem;
  padding-bottom: 1.8rem;
  padding-left: 2rem;
  border-radius: 1.4rem;
  flex: 1; }
  .calc-result-card__label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-family: "Plus Jakarta Sans", sans-serif; }
  .calc-result-card__value {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0.4rem; }
  .calc-result-card__number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1; }
  .calc-result-card__unit {
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.5); }
  .calc-result-card__desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4); }
  .calc-result-card--danger {
    background-color: rgba(239, 68, 68, 0.1);
    border: 0.15rem solid rgba(239, 68, 68, 0.25); }
    .calc-result-card--danger .calc-result-card__label {
      color: #f58a8a; }
    .calc-result-card--danger .calc-result-card__number {
      color: #EF4444; }
  .calc-result-card--success {
    background-color: rgba(118, 196, 66, 0.08);
    border: 0.15rem solid rgba(118, 196, 66, 0.25); }
    .calc-result-card--success .calc-result-card__label {
      color: #76C442; }
    .calc-result-card--success .calc-result-card__number {
      color: #76C442; }

@media (max-width: 900px) {
  .calc-card__body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.4rem; }
  .calc-results {
    flex-direction: row;
    flex-wrap: wrap; }
  .calc-result-main {
    width: 100%; } }

@media (max-width: 560px) {
  .calc-section {
    padding: 5rem 1.6rem; }
  .calc-card {
    padding-top: 2rem;
    padding-right: 1.6rem;
    padding-bottom: 2rem;
    padding-left: 1.6rem; }
    .calc-card__top {
      flex-direction: column;
      gap: 1.6rem; }
  .calc-vehicles {
    grid-template-columns: 1fr; }
  .calc-contexts {
    flex-direction: column; }
  .calc-result-row {
    flex-direction: column; } }

.section-header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  margin-bottom: 4rem; }
  .section-header__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A2E1A;
    letter-spacing: -0.01em; }
  .section-header__subtitle {
    font-size: 1.5rem;
    color: #718096; }

.reduce-section {
  padding: 8rem 3.2rem;
  background-color: #FFFFFF; }
  .reduce-section__inner {
    max-width: 120rem;
    margin: 0 auto; }

.reduce-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; }

.reduce-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 2.4rem;
  padding-right: 2.4rem;
  padding-bottom: 2.4rem;
  padding-left: 2.4rem;
  border-radius: 1.6rem;
  background-color: #F4FAF4;
  border: 0.1rem solid #E2E8F0;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal; }
  .reduce-card:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 0.4rem 2rem rgba(46, 125, 50, 0.08);
    transform: scale(1.01); }
  .reduce-card__icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1rem;
    width: 4.4rem;
    height: 4.4rem;
    background-color: rgba(76, 175, 80, 0.12);
    color: #4CAF50; }
    .reduce-card__icon .material-symbols-outlined {
      font-size: 2.2rem; }
  .reduce-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1A2E1A; }
  .reduce-card__desc {
    font-size: 1.3rem;
    color: #718096;
    line-height: 1.6; }

@media (max-width: 900px) {
  .reduce-cards {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 560px) {
  .reduce-section {
    padding: 5rem 1.6rem; }
  .reduce-cards {
    grid-template-columns: 1fr; } }

.impact-section {
  padding: 8rem 3.2rem;
  background-color: #F4FAF4; }
  .impact-section__inner {
    max-width: 120rem;
    margin: 0 auto; }

.impact-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem; }

.impact-stat {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 2.4rem;
  padding-right: 2rem;
  padding-bottom: 2.4rem;
  padding-left: 2rem;
  border-radius: 1.6rem;
  background-color: #FFFFFF;
  border: 0.1rem solid #E2E8F0;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal; }
  .impact-stat:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 0.4rem 2rem rgba(46, 125, 50, 0.08); }
  .impact-stat__icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1rem;
    width: 4rem;
    height: 4rem;
    background-color: rgba(76, 175, 80, 0.12);
    color: #4CAF50; }
    .impact-stat__icon .material-symbols-outlined {
      font-size: 2rem; }
  .impact-stat__number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1A2E1A;
    line-height: 1; }
    .impact-stat__number small {
      font-size: 1.6rem;
      font-weight: 600;
      color: #718096; }
  .impact-stat__label {
    font-size: 1.3rem;
    color: #718096;
    font-family: "Plus Jakarta Sans", sans-serif; }

@media (max-width: 900px) {
  .impact-stats {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 560px) {
  .impact-section {
    padding: 5rem 1.6rem; }
  .impact-stats {
    grid-template-columns: repeat(2, 1fr); } }

.cta-section {
  padding: 8rem 3.2rem;
  background-color: #FFFFFF; }
  .cta-section__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    max-width: 104rem;
    margin: 0 auto; }

.cta-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
  padding-top: 4rem;
  padding-right: 4rem;
  padding-bottom: 4rem;
  padding-left: 4rem;
  border-radius: 2rem;
  flex: 1; }
  .cta-card__icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1.2rem;
    width: 5rem;
    height: 5rem; }
    .cta-card__icon .material-symbols-outlined {
      font-size: 2.6rem; }
  .cta-card__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3; }
  .cta-card__desc {
    font-size: 1.4rem;
    line-height: 1.7;
    flex: 1; }
  .cta-card--green {
    background: linear-gradient(140deg, #2E7D32 0%, #4CAF50 100%); }
    .cta-card--green .cta-card__icon {
      background-color: rgba(255, 255, 255, 0.2);
      color: #FFFFFF; }
    .cta-card--green .cta-card__title {
      color: #FFFFFF; }
    .cta-card--green .cta-card__desc {
      color: rgba(255, 255, 255, 0.85); }
  .cta-card--dark {
    background-color: #0D1B2A;
    border: 0.1rem solid rgba(255, 255, 255, 0.08); }
    .cta-card--dark .cta-card__icon {
      background-color: rgba(59, 130, 246, 0.2);
      color: #3B82F6; }
    .cta-card--dark .cta-card__title {
      color: #FFFFFF; }
    .cta-card--dark .cta-card__desc {
      color: rgba(255, 255, 255, 0.65); }

@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 1.6rem; }
    .cta-section__inner {
      flex-direction: column; } }

.faq-section {
  padding: 8rem 3.2rem;
  background-color: #F4FAF4; }
  .faq-section__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0; }
  .faq-section__link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 3.2rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32;
    transition-property: gap;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
    .faq-section__link .material-symbols-outlined {
      font-size: 1.6rem; }
    .faq-section__link:hover {
      gap: 1.2rem; }

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 0.1rem solid #E2E8F0;
  border-radius: 1.4rem;
  overflow: hidden;
  background-color: #FFFFFF; }

.faq-item {
  border-bottom: 0.1rem solid #E2E8F0; }
  .faq-item:last-child {
    border-bottom: none; }
  .faq-item__btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
    width: 100%;
    padding-top: 2rem;
    padding-right: 2.4rem;
    padding-bottom: 2rem;
    padding-left: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A2E1A;
    transition-property: background-color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
    .faq-item__btn:hover {
      background-color: #F4FAF4; }
  .faq-item__icon {
    font-size: 2rem;
    color: #718096;
    flex-shrink: 0;
    transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition-property: max-height;
    transition-duration: 0.35s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-behavior: normal; }
    .faq-item__answer p {
      padding-top: 0;
      padding-right: 2.4rem;
      padding-bottom: 2rem;
      padding-left: 2.4rem;
      font-size: 1.4rem;
      line-height: 1.7;
      color: #718096; }
  .faq-item--open .faq-item__icon {
    transform: rotate(180deg);
    color: #2E7D32; }
  .faq-item--open .faq-item__btn {
    color: #1B5E20; }

@media (max-width: 560px) {
  .faq-section {
    padding: 5rem 1.6rem; }
  .faq-item__btn {
    padding-top: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: 1.6rem;
    padding-left: 1.6rem;
    font-size: 1.4rem; }
  .faq-item__answer p {
    padding-top: 0;
    padding-right: 1.6rem;
    padding-bottom: 1.6rem;
    padding-left: 1.6rem; } }

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