/* AJUSTE GLOBAL – remove margem padrão e evita estourar a largura */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* impede scroll lateral se algum elemento escapar por poucos pixels */
}

/* Garantir que imagens nunca ultrapassem o container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FIM AJUSTES GLOBAIS */

.hotsite-body {
  font-family: 'Source Sans Pro', 'Nunito', sans-serif;
  color: #ffffff;
  min-height: 100vh;
}

.hotsite-hero {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hotsite-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hotsite-hero .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  gap: 32px;
}

/* Header com fundo verde em páginas internas */
.hero-nav--internal {
  background-color: #084D2B !important;
  padding: 24px 24px !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.hero-nav--internal .hero-brand,
.hero-nav--internal .hero-nav__links,
.hero-nav--internal .hero-menu-toggle {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .hero-nav--internal {
    padding-left: calc((100% - 1200px) / 2) !important;
    padding-right: calc((100% - 1200px) / 2) !important;
  }
}

.hero-brand img {
  height: 56px;
  width: auto;
}

.hero-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.hero-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 10%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  display: block;
}

.hero-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 8, 0.85);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1050;
}

.hero-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero-mobile-menu__container {
  background: #ffffff;
  padding: 32px 32px 24px;
  width: 100%;
  max-width: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(-100%);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
}

.hero-mobile-menu.is-open .hero-mobile-menu__container {
  transform: translateY(0);
  opacity: 1;
}

.hero-mobile-menu__header {
  position: relative;
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  color: #414341;
  text-align: center;
}

.hero-mobile-menu__title {
  display: block;
  text-align: center;
}

.hero-mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.hero-mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #414341;
}

.hero-mobile-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-mobile-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-mobile-menu__links a {
  font-family: 'Source Sans Pro', 'Nunito', sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(8, 77, 43, 0.12);
  text-align: center;
}

.hero-mobile-menu__links a:last-child {
  border-bottom: none;
}

.hero-mobile-menu__enter {
  display: inline-block;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  background: #084D2B;
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

.hero-nav__link {
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.hero-nav__link:hover,
.hero-nav__link:focus {
  opacity: .7;
}

.hero-nav__enter {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  color: #0F532F;
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 40px;
  text-decoration: none;
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.25);
  border: none;
  letter-spacing: 0.02em;
}

.hero-nav__enter:hover,
.hero-nav__enter:focus {
  background: #F4F9F7;
  color: #0B4626;
}

.hero-content {
  margin-top: auto;
  margin-bottom: 64px;
  max-width: 720px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 54px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-description {
  font-size: 24px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero-description--mobile {
  display: none;
}

.hero-description--desktop {
  display: block;
}

.hero-cta-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-cta {
  display: flex;
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  background: rgba(9, 35, 24, 0.35);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 14px 32px;
  text-decoration: none;
  flex: 1 1 0;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}

.hero-cta:hover,
.hero-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(8, 77, 43, 0.25);
  background-color: #ffffff;
  color: #0F532F;
}

.hotsite-platform {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.platform-card {
  background: #ffffff;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
}

.platform-map {
  width: 100%;
  height: auto;
  display: block;
}

.platform-map img {
  width: 100%;
  height: auto;
  display: block;
}

.platform-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.platform-content h2 {
  font-size: 44px;
  line-height: 120%;
  font-weight: 700;
  color: #084D2B;
  margin-bottom: 24px;
}

.platform-content p {
  font-size: 24px;
  line-height: 150%;
  color: #858985;
}

.hotsite-steps {
  padding: 80px 0;
  background-color: #ffffff;
}

.hotsite-steps h2 {
  font-size: 44px;
  line-height: 120%;
  font-weight: 700;
  color: #084D2B;
  text-align: left;
  margin-bottom: 48px;
}

.steps-wrapper {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.steps-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.steps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D0D0D0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 0;
}

.steps-dot.active {
  background: #084D2B;
  width: 24px;
  border-radius: 4px;
}

.step-card {
  background: #EDEDED;
  border-radius: 16px;
  padding: 32px 24px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 8px solid #084D2B;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #084D2B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 40px;
  height: 40px;
}

.step-card h3 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  color: #414341;
}

.step-card p {
  font-size: 18px;
  line-height: 150%;
  color: #858985;
}

.hotsite-benefits {
  padding: 80px 0;
  background: #F8F8F8;
}

.hotsite-benefits h2 {
  font-size: 44px;
  line-height: 120%;
  font-weight: 700;
  color: #084D2B;
  text-align: left;
  margin-bottom: 40px;
}

.benefits-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.benefit-tab {
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
  font-family: 'Source Sans Pro', 'Nunito', sans-serif;
  border: 1px solid #084D2B;
  border-radius: 5px;
  padding: 12px 28px;
  background: transparent;
  color: #084D2B;
  cursor: pointer;
  transition: all .2s ease;
}

.benefit-tab.active {
  background: #084D2B;
  color: #ffffff;
}

.benefits-panels {
  max-width: 960px;
  margin: 0 auto;
}

.benefits-list {
  display: none;
  font-size: 18px;
  line-height: 150%;
  color: #6b6f72;
  padding-left: 20px;
  margin: 0;
}

.benefits-list.active {
  display: block;
}

.benefits-list li {
  margin-bottom: 16px;
}

.benefits-list strong {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  color: #3a3d3f;
}

@media (max-width: 992px) {
  .hero-nav {
    flex-direction: column;
    gap: 16px;
  }

  .hero-nav__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    margin-top: 40px;
    width: 100%;
  }

  .hero-cta-group {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .hotsite-hero .container {
    padding-inline: 32px;
  }
}

@media (max-width: 768px) {
  .hero-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .hero-nav__links {
    display: none;
  }

  .hero-menu-toggle {
    display: flex;
  }

  .hero-brand img {
    height: 48px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .hotsite-hero .container {
    padding-inline: 24px;
  }

  .hotsite-hero {
    background-image: url('../img/caminhao-home-2.jpeg') !important;
    background-position: left center;
  }

  .hero-description--mobile {
    display: block;
  }

  .hero-description--desktop {
    display: none;
  }
}

/* Mapa full-width no mobile – AJUSTE: trocar 100vw por 100% */
@media (max-width: 768px) {
  .hotsite-platform {
    padding: 0;
    overflow: hidden;
  }

  .hotsite-platform .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hotsite-platform .platform-card {
    position: relative;
    padding-top: 0 !important;
    margin: 0 0 50px 0;
    border-radius: 0;
  }

  .hotsite-platform .platform-map {
    position: relative;
    left: 0;
    width: 100%;
    /* AJUSTE: antes 100vw */
    max-width: 100%;
    /* AJUSTE: antes 100vw */
    transform: none;
    display: block;
    margin: 0;
    padding: 0;
  }

  .hotsite-platform .platform-map img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }

  .hotsite-platform .platform-content {
    padding: 24px 16px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-nav__enter {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hero-nav__links {
    display: none;
  }

  .hero-menu-toggle {
    display: flex;
  }

  .hotsite-platform {
    padding: 0;
    overflow: hidden;
  }

  .hotsite-platform .container {
    padding-left: 0;
    padding-right: 0;
  }

  .platform-card {
    gap: 20px;
    padding-bottom: 24px;
    margin: 0;
    border-radius: 0;
  }

  .hotsite-platform .platform-map {
    width: 100%;
    /* AJUSTE: antes 100vw */
    max-width: 100%;
    /* AJUSTE: antes 100vw */
    margin: 0;
    padding: 0;
    left: 0;
    transform: none;
  }

  .hotsite-platform .platform-map img {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .platform-content {
    padding: 0 16px;
  }

  .platform-content h2 {
    font-size: 32px;
  }

  .platform-content p {
    font-size: 20px;
  }

  .hotsite-steps .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .steps-wrapper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .steps-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card {
    flex: 0 0 calc(100% - 32px);
    min-width: calc(100% - 32px);
    scroll-snap-align: start;
    padding: 24px 20px 48px;
    margin-right: 16px;
  }

  .step-card:first-child {
    margin-left: 0;
  }

  .step-card:last-child {
    margin-right: 16px;
    padding-right: 20px;
  }

  .steps-dots {
    display: flex;
  }

  .benefits-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-tab {
    width: 100%;
    flex: none;
    text-align: center;
  }
}

.hotsite-footer {
  background-color: #084D2B;
  padding: 64px 0 32px;
  font-family: 'Source Sans Pro', 'Nunito', sans-serif;
}

.hotsite-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hotsite-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  color: #ffffff;
}

.hotsite-footer .footer-logo img {
  height: 72px;
  width: auto;
}

.footer-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.footer-links__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links__column a {
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-links__column a:hover,
.footer-links__column a:focus {
  opacity: .7;
}

.footer-separator {
  display: block;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 32px auto;
}

.hotsite-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hotsite-footer__bottom img {
  height: 24px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .hotsite-footer {
    padding: 48px 0 24px;
  }

  .hotsite-footer .container {
    gap: 24px;
  }

  .hotsite-footer__top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-divider {
    height: 1px;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-links__column {
    flex: 1;
    min-width: 140px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links__column a {
    font-size: 16px;
  }

  .footer-separator {
    width: 0%;
    margin: 24px auto;
  }

  .hotsite-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;
  }

  .hotsite-footer__bottom p {
    margin: 0;
  }

  .hero-description--mobile {
    display: block;
  }

  .hero-description--desktop {
    display: none;
  }
}

@media (max-width: 576px) {
  .hotsite-footer {
    padding: 40px 0 20px;
  }

  .hotsite-footer .footer-logo img {
    height: 56px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-links__column a {
    font-size: 15px;
  }

  .hotsite-footer__bottom {
    font-size: 14px;
  }

  .hotsite-footer__bottom img {
    height: 20px;
  }
}

/* Página de Termos de Uso */
.termos-hero {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.termos-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.termos-content {
  background-color: #ffffff;
  padding: 64px 0;
}

.termos-section {
  margin-bottom: 48px;
}

.termos-section:last-child {
  margin-bottom: 0;
}

.termos-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #084D2B;
  margin-bottom: 24px;
}

.termos-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #414341;
}

.termos-text p {
  margin-bottom: 20px;
}

.termos-text p:last-child {
  margin-bottom: 0;
}

/* Responsividade para página de termos */
@media (max-width: 768px) {
  .termos-content {
    padding: 48px 0;
  }

  .termos-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .termos-text {
    font-size: 16px;
  }

  .termos-section {
    margin-bottom: 40px;
  }

  .hotsite-internal .hero-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 576px) {
  .termos-content {
    padding: 32px 0;
  }

  .termos-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .termos-text {
    font-size: 15px;
  }

  .termos-section {
    margin-bottom: 32px;
  }
}

/* Modal de Seleção de Admin */
.modal-entrar {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-entrar.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-entrar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.modal-entrar__container {
  position: relative;
  background: #ffffff;
  border-radius: 6px;
  width: 100%;
  max-width: 500px;
  margin: 16px;
  padding: 16px 18px 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  z-index: 1;
}

.modal-entrar.is-open .modal-entrar__container {
  transform: scale(1);
}

.modal-entrar__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
}

.modal-entrar__close svg {
  width: 24px;
  height: 24px;
}

.modal-entrar__close:hover svg path {
  stroke: #084D2B;
}

.modal-entrar__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.modal-entrar__header {
  width: 100%;
  text-align: center;
}

.modal-entrar__title {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #414341;
  margin: 0;
  text-align: center;
}

.modal-entrar__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.modal-entrar__subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #414341;
  margin: 0;
}

.modal-entrar__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-entrar__option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
}

.modal-entrar__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-entrar__radio-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #424242;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.modal-entrar__radio:checked + .modal-entrar__radio-custom {
  border-color: #084D2B;
  background-color: #084D2B;
}

.modal-entrar__radio:checked + .modal-entrar__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}

.modal-entrar__option:hover .modal-entrar__radio-custom {
  border-color: #084D2B;
}

.modal-entrar__option-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #424242;
}

.modal-entrar__footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal-entrar__btn {
  background-color: #084D2B;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 14px 21px;
  width: 294px;
  height: 58px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-entrar__btn:hover {
  background-color: #0B4626;
  transform: translateY(-1px);
}

.modal-entrar__btn:active {
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .modal-entrar__container {
    max-width: calc(100% - 32px);
    padding: 16px 16px 24px;
  }

  .modal-entrar__title {
    font-size: 20px;
  }

  .modal-entrar__subtitle {
    font-size: 16px;
  }

  .modal-entrar__btn {
    width: 100%;
    max-width: 294px;
  }

  .modal-entrar__content {
    gap: 42px;
  }
}