@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

:root {
  --vermelho: #ED1C24;
  --vermelho-escuro: #BE0000;
  --cinza-claro: #D1D3D4;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: black;
  margin: 0;
  padding-top: 88px;
}

.header {
  border-bottom: 1px solid var(--cinza-claro);
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header_container {
  align-items: center;
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  padding: 14px 30px 14px 50px;
  gap: 18px;
}

.top_promo {
  background: var(--vermelho-escuro);
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  gap: 10px;
}

.logo {
  justify-self: start;
}

.barra_pesquisa {
  justify-self: center;
  min-width: 580px;
  grid-column: 2;
}

.box_pesquisa {
  position: relative;
  width: min(500px, 100%);
}

.barra_pesquisa input {
  border: 1px solid var(--cinza-claro);
  outline: none;
  width: 100%;
  height: 45px;
  border-radius: 10px;
  padding: 0 16px 0 44px;
  font-size: 14px;
}

.icon_pesquisa {
  position: absolute;
  transform: translateY(-50%);
  left: 16px;
  top: 50%;
}

.menu {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  align-items: center;
  justify-self: end;
  display: flex;
  gap: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.nav_produtos_btn {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.nav a:hover,
.nav_produtos_btn:hover {
  color: var(--vermelho-escuro);
}

.nav_produtos {
  position: relative;
}

.nav_produtos::after {
  background: rgba(0, 0, 0, 0.20);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  top: 126px;
  z-index: 2490;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav_produtos.ativo::after {
  opacity: 1;
  visibility: visible;
}

.nav_produtos_btn {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

.mega_menu {
  pointer-events: none;
  visibility: hidden;
  overflow: visible;
  position: fixed;
  top: 126px;
  left: 0;
  opacity: 0;
  width: 100vw;
  z-index: 2500;
  max-width: 100vw;
  transform: translateY(-16px) scale(0.985);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.nav_produtos.ativo .mega_menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mega_menu_conteudo {
  background: white;
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  width: 100%;
  max-width: 1100px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 0 0 24px 24px;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.10),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

.mega_menu_categorias {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  align-items: stretch;
  scrollbar-width: none;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mega_menu_categorias::-webkit-scrollbar {
  display: none;
}

.menu_categoria {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  color: #111;
  border: 1px solid transparent;
  justify-content: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  font-size: 13px;
  min-height: 44px;
  font-weight: 700;
  line-height: 1.2;
  padding: 11px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.menu_categoria.ativo {
  background: var(--vermelho);
  color: white;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 10px 22px rgba(15, 23, 42, 0.12);
}

.mega_menu_produtos {
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  padding: 20px 22px 22px;
  min-height: 120px;
}

.categorias_produtos {
  display: none;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-auto-columns: minmax(160px, max-content);
  gap: 10px 18px;
}

.categorias_produtos.ativo {
  display: grid;
}

.categorias_produtos a {
  color: #111;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  border: none;
  padding: 4px 0;
  font-size: 14px;
  border-radius: 0;
  font-weight: 500;
  transition:
    color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}

.categorias_produtos a:hover {
  color: var(--vermelho);
  transform: translateX(4px);
}

.btn_header {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  background: var(--vermelho);
  color: white;
  border: none;
  display: flex;
  text-decoration: none;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  height: 40px;
  padding: 0 14px;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}

.btn_header:hover {
  background: var(--vermelho-escuro);
}

/* FUNDO PRINCIPAL (DECIDIR AINDA) */
.banner {
  /* decidir entre 1 dos 4 fundos */
  background-image: url("../img/img_padrao/fundo3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner_container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 28px 18px 48px;
}

.logo {
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
  z-index: 1;
}

.logo_img {
  width: min(860px, 92%);
}

/* ATE AQUI */

.categorias_container,
.marcas_container {
  position: relative;
  max-width: 100%;
}

.categorias {
  padding: 20px 0;
  background: #f7f7f7;
}

.categorias_lista {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 80%;
  gap: 28px;
}

.categorias_card {
  font-family: "Orbitron", Arial, sans-serif;
  background: white;
  color: black;
  box-shadow: 0 0 10px rgba(15, 23, 42, .05);
  border: 1px solid rgba(15, 23, 42, .06);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  letter-spacing: .4px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 160px;
  height: 70px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.categorias_card::before {
  background: var(--vermelho);
  transform-origin: top;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  transform: scaleY(0);
  transition: transform .25s ease;
}

.categorias_card:hover {
  transform: translateY(-6px) translateX(4px);
}

.categorias_card:hover::before {
  transform: scaleY(1);
}

.marcas {
  background: white;
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  padding: 26px 0;
}

.marcas_titulo {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  color: black;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.marcas_lista {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 50%;
  gap: 50px;
}

.marca_item {
  align-items: center;
  display: inline-flex;
  height: 78px;
  padding: 0 6px;
}

.marca_item img {
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.marca_item:hover img {
  opacity: .95;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

.produtos {
  background: #f7f7f7;
  padding: 44px 0 60px;
  max-width: 100%;
}

.produtos_container {
  position: relative;
  overflow: visible;
  margin: 0 auto 50px;
  max-width: 65%;
}

.produtos_container_topo {
  justify-content: space-between;
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.produtos_container_titulo {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  width: 100%;
}

.produtos_titulo {
  font-family: "Orbitron", Arial, sans-serif;
  color: black;
  position: relative;
  padding-bottom: 8px;
  letter-spacing: .3px;
  font-weight: 800;
  font-size: 22px;
}

.produtos_titulo::after {
  background: linear-gradient(90deg, var(--vermelho) 0%, rgba(225, 6, 0, .5) 60%, transparent 100%);
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 120px;
  border-radius: 999px;
}

.produtos_ver_mais {
  font-family: "Orbitron", Arial, sans-serif;
  color: var(--vermelho);
  text-decoration: none;
  text-align: center;
  margin-left: auto;
  font-weight: 900;
  font-size: 14px;
}

.produtos_ver_mais:hover {
  text-decoration: underline;
  color: var(--vermelho-escuro);
}

.produtos_container_itens {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 10px 60px;
}

.produtos_container_itens::-webkit-scrollbar {
  display: none;
}

.produto_card {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: black;
  display: flex;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: 15px;
  flex: 0 0 350px;
}

.produto_card:hover {
  border: 1px solid var(--vermelho);
}

.produto_img {
  height: 350px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto_img img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.produto_info {
  display: grid;
  padding: 16px;
  gap: 8px;
}

.produto_nome {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
}

.produto_preco {
  color: var(--vermelho);
  font-weight: 900;
  font-size: 18px;
}

.produto_acoes {
  margin-top: auto;
  padding: 0 16px 16px 16px;
}

.produto_btn {
  background: var(--vermelho);
  color: white;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  width: 100%;
}

.produto_btn:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-2px);
}

.produto_btn:active {
  transform: scale(.98);
}

.produto_badge {
  color: white;
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
}

.produto_badge_promo {
  background: var(--vermelho);
}

.produto_badge_novo {
  background: black;
}

.produto_pagamento {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 4px;
}

.produto_parcelado {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}

.produto_pix {
  color: #555;
  font-size: 13px;
  font-weight: 900;
}

.produto_preco_antigo {
  color: #8a8a8ad9;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 700;
  font-size: 14px;
}

/* SETAS */
.categorias_seta {
  background: white;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
  border: none;
  cursor: pointer;
  position: absolute;
  margin: 0 50px;
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 34px;
  font-weight: 600;
  border-radius: 16px;
  transform: translateY(-50%);
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.marcas_seta {
  background: white;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
  border: none;
  cursor: pointer;
  position: absolute;
  margin: 0 300px;
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 34px;
  font-weight: 600;
  border-radius: 16px;
  transform: translateY(-50%);
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.produtos_seta {
  color: var(--vermelho);
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  border: none;
  top: 50%;
  font-size: 50px;
  transform: translateY(-50%);
}

.produtos_seta:hover {
  color: var(--vermelho-escuro);
}

.produtos_seta.promocoes_seta_esq,
.produtos_seta.novidades_seta_esq {
  left: -70px;
}

.produtos_seta.promocoes_seta_dir,
.produtos_seta.novidades_seta_dir {
  right: -70px;
}

.categorias_seta:active,
.marcas_seta:active,
.produtos_seta:active {
  transform: translateY(-50%) scale(.9);
}

.categorias_seta:hover,
.marcas_seta:hover {
  transform: translateY(-50%) scale(1.04);
}

.categorias_seta_esq,
.marcas_seta_esq {
  left: 0;
}

.categorias_seta_dir,
.marcas_seta_dir {
  right: 0;
}

.categorias_seta.is_disabled,
.marcas_seta.is_disabled {
  opacity: .35;
  pointer-events: none;
}

.sobre_titulo b,
.contato_titulo b,
.footer_nome b,
.form b {
  color: var(--vermelho);
}

.sobre {
  background: white;
  padding: 50px 0 80px;
}

.sobre_container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.sobre_topo {
  text-align: center;
  margin-bottom: 48px;
}

.sobre_titulo {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  color: black;
  font-size: 36px;
  margin: 0 0 14px;
}

.sobre_subtitulo {
  color: #555;
  margin: 0 auto;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
}

.beneficios_container {
  text-align: center;
  display: grid;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}

.beneficio {
  background: white;
  padding: 20px 0 10px;
}

.beneficio_icone {
  background: var(--vermelho);
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.beneficio_titulo {
  color: black;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.beneficio_texto {
  color: #555;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.sobre_amp {
  box-shadow: 0 26px 60px rgba(0, 0, 0, .25);
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  margin-top: 70px;
  border-radius: 18px;
}

.sobre_amp::before {
  background:
    radial-gradient(circle at 18% 25%, rgba(225, 6, 18, .18), rgba(225, 6, 18, 0) 55%),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 45%);
  position: absolute;
  pointer-events: none;
  content: "";
  inset: 0;
}

.amp_grade {
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  display: flex;
  z-index: 1;
  margin: 0 70px;
}

.amp_item {
  text-align: center;
  min-width: 220px;
  padding: 10px 6px;
}

.amp_num {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  color: white;
  font-size: 46px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.amp_red {
  color: var(--vermelho);
}

.amp_label {
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  line-height: 1.4;
}

.contato {
  font-family: Arial, Helvetica, sans-serif;
  background: #f2f2f2;
  padding: 50px 0;
}

.contato_container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 18px;
}

.contato_grid {
  display: grid;
  align-items: start;
  gap: 46px;
  grid-template-columns: 1.05fr 1fr;
}

.contato_titulo {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  color: black;
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
}

.contato_subtitulo {
  color: #475569;
  margin: 0 0 26px;
  line-height: 1.6;
  max-width: 520px;
}

.mapa_container {
  background: white;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  border: 1px solid rgba(15, 23, 42, .06);
  overflow: hidden;
  padding-bottom: 35px;
  border-radius: 16px;
  width: 480px;
}

.mapa_container_topo {
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 14px 16px;
}

.mapa_titulo {
  color: var(--vermelho);
  border: 1px solid rgba(225, 6, 0, .20);
  background: rgba(225, 6, 0, .10);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 13px;
}

.mapa_link {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  opacity: .8;
}

.mapa_link:hover {
  opacity: 1;
}

.mapa {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contato_whatsapp {
  flex-direction: column;
  align-items: center;
  display: flex;
  padding-top: 40px;
  margin-right: 100px;
}

.frase_whatsapp {
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn_whatsapp {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 4px rgba(225, 6, 0, 0.35);
  background: var(--vermelho);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
}

.form {
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  border: 1px solid rgba(15, 23, 42, .06);
  background: white;
  border-radius: 18px;
  padding: 22px;
}

.form h3 {
  color: black;
  margin: 0 0 16px;
  font-size: 22px;
}

.form_contato {
  justify-items: center;
  display: grid;
  gap: 14px;
}

.form_contato label {
  color: black;
  display: grid;
  width: 100%;
  max-width: 500px;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.form_contato input,
.form_contato textarea {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  border: 1px solid rgba(15, 23, 42, .16);
  outline: none;
  resize: none;
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  font-size: 14px;
  padding: 12px;
}

.form_contato input:focus,
.form_contato textarea:focus {
  border-color: rgba(225, 6, 0, .35);
  box-shadow: 0 0 0 2px rgba(225, 6, 0, .10);
}

.btn_enviar_msg {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  background: var(--vermelho);
  color: white;
  cursor: pointer;
  margin-top: 6px;
  height: 44px;
  width: 300px;
  border-radius: 12px;
  font-weight: 900;
  border: 0;
}

.form_observacao {
  color: #64748b;
  margin: 18px 0 0;
  font-size: 12px;
}

.btn_whatsapp:hover,
.btn_enviar_msg:hover {
  box-shadow: 0 5px 8px rgba(225, 6, 0, 0.35);
  background-color: var(--vermelho-escuro);
  transform: translateY(-1px);
}

.btn_whatsapp_fixo {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: #25D366;
  display: flex;
  position: fixed;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  z-index: 999;
  border-radius: 50%;
  animation: whatsappPulse 1.8s infinite;
}

.btn_whatsapp_fixo:hover {
  transform: scale(1.1);
}

/* animacao btn wpp */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.footer {
  background: black;
  color: #cfd6df;
  padding: 50px 0 20px;
}

.footer_margens {
  margin: 0 auto;
  padding: 0 150px;
}

.footer_grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.6fr 1.25fr;
  gap: 44px;
}

.footer_logo {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  margin-bottom: 14px;
}

.footer_nome {
  letter-spacing: .3px;
  font-size: 16px;
}

.footer_texto {
  color: #aeb7c2;
  margin: 0 0 16px;
  line-height: 1.5;
  max-width: 320px;
}

.footer_titulo {
  color: white;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.footer_titulo_espacamento {
  margin-top: 20px;
}

.footer_lista {
  list-style: none;
  display: grid;
  padding: 0;
  margin: 0;
  gap: 9px;
}

.footer_lista a {
  color: #aeb7c2;
  text-decoration: none;
  display: inline-block;
  transition: opacity .15s ease, transform .15s ease;
}

.footer_lista a:hover {
  color: white;
  transform: translateX(2px);
  opacity: .9;
}

.footer_lista li {
  color: #aeb7c2;
  line-height: 1.5;
}

.footer_redes_sociais {
  display: flex;
  gap: 10px;
  margin: 12px 0 14px;
}

.btn_rede_sociais {
  place-items: center;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.btn_rede_sociais:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(225, 6, 0, 0.35);
}

.footer_pagamentos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icon_pagamento_footer {
  background: rgba(244, 255, 240, 0.04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #ebebeb;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 10px;
}

.linha_footer {
  background: #333;
  border: none;
  margin: 36px 0 18px;
  height: 1px;
}

.direitos_footer {
  color: white;
  text-align: center;
  font-size: 14px;
}