:root {
  --font-text: "Montserrat", sans-serif;
  --font-title: "Lexend", sans-serif;
  --color-light: #f4f4f4;
  --color-true-dark: #000;
  --color-dark: #0d0d0d;
  --color-yellow: #fed800;
  --color-yellow-d: #c99b00;
  --color-green: #27c840;
  --bg: #0c0c0c;
  --bg2: #111111;
  --bg3: #161616;
  --surface: #1c1c1c;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --red: #e63946;
  --radius: 10px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-text);
}

body {
  background:
    linear-gradient(
      180deg,
      rgba(0, 59, 253, 0.603) 0%,
      rgba(0, 1, 2, 0.849) 12%,
      rgba(0, 0, 0, 0.897) 12.1%,
      rgba(1, 4, 14, 0.856) 52%,
      rgba(1, 4, 14, 0.856) 8%,
      rgba(0, 0, 0, 0.856) 100%
    ),
    radial-gradient(
      110% 70% at 30% 18%,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.16) 38%,
      rgba(214, 25, 25, 0) 72%
    ),
    url(../images/bg-agua.png), #000000;
  background-size: cover, cover, cover, auto;
  background-repeat: no-repeat;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--color-light);
}

a {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}

.navbar {
  background: transparent;
}

@media (max-width: 1201px) {
  .navbar-expand-lg .navbar-toggler {
    display: flex !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  .navbar-expand-lg .navbar-collapse.show,
  .navbar-expand-lg .navbar-collapse.collapsing {
    display: block !important;
  }
}

@media (min-width: 1201px) {
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

.title {
  font-family: var(--font-title);
  color: #fff;
}

.navbar a {
  color: #fff;
}

.nav-link:hover {
  color: var(--color-green) !important;
}

.navbar .form-control {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  min-width: 200px;
  width: 100%;
}

.navbar .form-control::placeholder {
  color: #aaa;
}

.navbar .form-control:focus {
  box-shadow: 0 0 0 2px var(--color-green);
  border-color: var(--color-green);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.login-btn {
  display: flex;
  height: 40px;
  width: 125px;
  padding: 0 50px 0 32px;
  justify-content: center;
  align-items: center;
  clip-path: polygon(73% 0, 100% 43%, 100% 100%, 0% 100%, 0% 0%);
  background-color: var(--color-yellow);
  color: var(--color-true-dark) !important;
  font-weight: 700;
}

.navbar .bi-search {
  color: #aaa;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 1100px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: var(--bg3);
    border-top: 2px solid var(--color-yellow);
    border-radius: 0 0 12px 12px;
    padding: 20px 24px 24px;
    margin-top: 10px;
  }

  .navbar-collapse .nav-link {
    padding: 10px 10px !important;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--color-green);
  }

  .login-btn {
    width: 100%;
    clip-path: none;
    border-radius: 8px;
    justify-content: center;
  }

  .search-wrapper {
    width: 100%;
  }
  .search-wrapper .form-control {
    max-width: 100%;
    min-width: unset;
  }
}

.container-xl,
.container-fluid {
  padding-left: 48px;
  padding-right: 48px;
}

@media (min-width: 1400px) {
  .container-xl {
    max-width: 1480px;
  }
}

@media (min-width: 1600px) {
  .container-xl {
    max-width: 1560px;
  }
}

@media (max-width: 768px) {
  .container-xl,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Area Hero */

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

.hero-title {
  font-family: var(--font-text);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-green);
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(39, 39, 39);
}

.dot--active {
  background: #ffcb20;
  width: 22px;
  border-radius: 4px;
}

.hero-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    180deg,
    rgba(28, 14, 18, 0.35) 0%,
    rgba(9, 9, 12, 0.9) 100%
  );
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-card-badge {
  position: absolute;
  top: 40px;
  left: 35px;
  z-index: 3;
  background: var(--color-light);
  color: #111;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
}

.hero-card-img {
  width: calc(100% - 48px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 10px 10px 10px 24px;
  flex: 1;
  min-height: 300px;
}

.hero-card-overlay {
  padding: 20px 18px 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(17.5px);
  margin-top: auto;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card .price {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.buy-game-btn {
  display: flex;
  border: 0;
  height: 50px;
  padding: 0 40px 0 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  clip-path: polygon(73% 0, 100% 43%, 100% 100%, 0% 100%, 0% 0%);
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 35px;
}

/* Area Popular no Brasil */

.popular {
  padding-top: 60px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-green);
  margin: 0;
}

.link-ver-todos {
  color: var(--color-light);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 3px;
  transition:
    color var(--transition),
    border-color var(--transition);
}

.link-ver-todos:hover {
  color: #fff;
  border-bottom-color: #ffe071;
}

.pop-container {
  position: relative;
  border: 3px solid #000;
  border-radius: var(--radius);
  padding: 10px;
  background: #ffffff0e;
  display: inline-block;
  width: 100%;
  max-width: 700px;
}

.img-hell {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
  max-height: 450px;
  object-fit: cover;
}

.popular-preco {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-pop {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.game-title h1 {
  color: var(--color-yellow);
  font-family: var(--font-text);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.game-title h3 {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 400;
}

.white-text {
  color: var(--color-light);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 1rem;
}

.popular-name-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.popular-name-row h1 {
  margin-bottom: 0;
}

.popular-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 7px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  background-color: #fff;
  color: #000;
}

/* Area Explore jogos pelo Brasil */

.explore {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  width: 90%;
  margin: 3.75rem auto;

  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(
      140deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.836) 52%,
      rgba(0, 0, 0, 0.897) 100%
    ),
    url(../images/bg-vidro-mapa-br.jpg) center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 50px rgba(0, 0, 0, 0.34);
}

.explore::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 20%,
    rgba(255, 255, 255, 0) 42%
  );
}

.explore-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.125rem 6.25rem;
}

.explore-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(520px, 0.94fr);
  gap: 10rem;
  align-items: center;
}

.explore-map-side {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.explore-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.explore-map {
  position: relative;
  width: 100%;
  max-width: 560px;
}

#svg-map {
  display: block;
  width: 100%;
  height: auto;
}

.explore-city-label {
  position: absolute;
  bottom: 10px;
  right: -40px;
  background: rgba(245, 196, 0, 0.12);
  border: 1px solid rgba(245, 196, 0, 0.3);
  color: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.explore-games-side {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.explore-featured {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f1118;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  margin-bottom: 0.875rem;
}

.explore-featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(245, 196, 0, 0.9);
  color: #111;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.explore-featured-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.explore-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-bottom: 0.625rem;
}

.explore-thumbs img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.explore-ver-mais {
  text-align: right;
  margin-top: 0.375rem;
}

.explore-ver-mais .link-see-all {
  color: var(--color-yellow);
  font-size: 0.875rem;
}

#svg-map path {
  fill: #27c840;
}

#svg-map text {
  fill: #fff;
  font:
    12px Arial-BoldMT,
    sans-serif;
  cursor: pointer;
}

#svg-map a {
  text-decoration: none;
}

#svg-map a:hover {
  cursor: pointer;
  text-decoration: none;
}

#svg-map a:hover path {
  fill: #2550ff !important;
}

#svg-map .circle {
  fill: #146636;
}

#svg-map a:hover .circle {
  fill: #2550ff !important;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .explore {
    width: 94%;
    border-radius: 3rem;
  }

  .explore-container {
    padding: 1.875rem;
  }

  .explore-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .explore-games-side {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Fim Area Explore jogos pelo Brasil */

/* Area Ofertas */

.ofertas {
  padding: 60px 0;
}

.ofertas-title {
  color: var(--color-green);
  font-size: 2rem;
  margin: 0;
}

.ofertas-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-yellow) transparent;
}

.ofertas-card {
  min-width: 260px;
  flex: 1 1 0;
  background: #fab615;
  border-radius: 30px 0 0 0;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  clip-path: polygon(80% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 0%);
}

.ofertas-card--1 {
  background: #fab615;
  color: var(--color-true-dark);
}
.ofertas-card--2 {
  background: #1aa108;
  color: var(--color-light);
}
.ofertas-card--3 {
  background: #2550ff;
  color: var(--color-light);
}
.ofertas-card--4 {
  background: #fff;
  color: var(--color-true-dark);
}

.ofertas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ofertas-img-wrap {
  height: 200px;
  overflow: hidden;
}

.ofertas-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ofertas-card:hover .ofertas-img-wrap img {
  transform: scale(1.05);
}

.ofertas-info {
  padding: 20px 16px 16px;
}

.ofertas-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 8px;
}

.ofertas-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 12px;
}

.ofertas-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ofertas-old-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #a1a1aa;
  display: block;
}

.ofertas-new-price {
  font-size: 18px;
  font-weight: 700;
  color: #18181b;
}

.ofertas-card--2 .ofertas-card-title,
.ofertas-card--3 .ofertas-card-title,
.ofertas-card--2 .ofertas-desc,
.ofertas-card--3 .ofertas-desc,
.ofertas-card--2 .ofertas-old-price,
.ofertas-card--3 .ofertas-old-price,
.ofertas-card--2 .ofertas-new-price,
.ofertas-card--3 .ofertas-new-price {
  color: var(--color-light);
}

.ofertas-btn {
  background: #f5ffe6;
  color: #111;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  clip-path: polygon(73% 0, 100% 43%, 100% 100%, 0% 100%, 0% 0%);
  padding-right: 20px;
}

/* Area Form */

.form-divulga-games {
  padding: 60px 0;
}

.titulo-divulgar-jogos {
  color: #fff;
  text-align: center;
  font-family: var(--font-text);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 40px;
}

.form-field-custom {
  border: none;
  border-bottom: 1px solid #f5ffe6;
  background: transparent;
  width: 100%;
  height: 44px;
  color: #f5ffe6;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding: 0 8px;
  outline: none;
  transition: border-color 0.2s;
}

.form-field-custom::placeholder {
  color: #f5ffe6;
  opacity: 1;
}

.form-field-custom:focus {
  border-bottom-color: var(--color-yellow);
}

.select-custom {
  border: none;
  border-bottom: 1px solid #f5ffe6;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5ffe6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 8px center;
  width: 100%;
  height: 44px;
  color: #f5ffe6;
  font-family: var(--font-text);
  font-size: 16px;
  padding: 0 32px 0 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-custom option {
  color: #111;
  background: #fff;
}

.select-custom:focus {
  border-bottom-color: var(--color-yellow);
}

.btn-form {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 0 36px 0 24px;
  justify-content: center;
  align-items: center;
  background-color: #ffcb20;
  box-shadow: 0 0 34px 0 rgba(255, 203, 32, 0.3);
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin: 30px auto;
}

/* F Area Form */

/* Area Footer */

.footer {
  padding: 42px 0 0;
}

.footer > .container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 34px;
  padding-right: 34px;
}

.footer-brand-col {
  padding-top: 4px;
}

.footer-panel {
  background-color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 324px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

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

.titulo-logo {
  color: #f4f6f8;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer-tagline {
  max-width: 430px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.26;
  margin-bottom: 36px;
}

.footer-lang label {
  display: block;
  font-family: var(--font-title);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-selects {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-selects select {
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 58%,
    calc(100% - 9px) 58%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  border: 0;
  border-bottom: 1px solid rgba(243, 248, 255, 0.35);
  color: #fff;
  padding: 6px 30px 8px 0;
  min-width: 132px;
  line-height: 1;
  cursor: pointer;
  outline: none;
}

.footer-panel-nav {
  border-right: 1px solid rgba(158, 207, 62, 0.33);
  padding-right: 28px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links a {
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-panel-aside {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-links-social {
  gap: 20px;
}

.footer-links-social a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-links-social i {
  color: #eaf1df;
  font-size: 1.08rem;
  width: 18px;
}

.footer-links-legal {
  margin-top: 34px;
}

.footer-links a:hover,
.link-yellow:hover {
  color: var(--color-yellow) !important;
}

.link-yellow {
  color: rgba(255, 255, 255, 0.96) !important;
}

.footer-divider {
  display: none;
}

.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 0px 20px;
  text-align: left;
  color: var(--color-light);
}
/* F Area Footer */

/* Area Media Queries */

@media (max-width: 1024px) {
  .video {
    height: 110vh;
  }
}

@media (max-width: 768px) {
  .video {
    height: 105vh;
  }
}

@media (max-width: 400px) {
  .video {
    height: 110vh;
  }
}

@media (max-width: 376px) {
  .video {
    height: 115vh;
  }
}

@media (max-width: 360px) {
  .video {
    height: 120vh;
  }
}

@media (max-width: 1199px) {
  .titulo-logo {
    font-size: 1.9rem;
  }

  .footer-tagline {
    font-size: 1.6rem;
  }

  .footer-lang label {
    font-size: 1.4rem;
  }

  .footer-selects select {
    font-size: 1.08rem;
  }
}

@media (max-width: 991px) {
  .footer {
    padding-top: 32px;
  }

  .footer > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer-tagline {
    font-size: 1.1rem;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .footer-lang label {
    font-size: 1.2rem;
  }

  .footer-panel {
    min-height: unset;
    padding: 24px 22px;
  }

  .footer-panel-nav {
    border-right: 0;
    border-bottom: 1px solid rgba(158, 207, 62, 0.33);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .footer-panel-aside {
    padding-left: 0;
  }

  .footer-links-social {
    padding-top: 8px;
    gap: 13px;
  }

  .footer-links-legal {
    margin-top: 22px;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer-bottom {
    padding: 16px 20px 22px;
    font-size: 0.92rem;
  }
}

/* F Area Media Queries */

/* sr-only: acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bi-arrow-right {
  position: relative;
  top: 2px;
  padding-inline: 5px;
}
