@font-face {
  font-family: "Inter";
  src: url("fontes/Inter/VariasFontes.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --cor-branca: #ffffff;
  --cor-do-titulo: #000203;
  --cor-do-texto: #344350;
  --cor-azul: #2563eb;
  --cor-azul-hover: #2456c2;
  --cor-verde: #03ad9f;
  --cor-vermelha: #be4600;
  --borda: 1px solid #e2dffa;
}

body,
html {
  font-family: "Inter", sans-serif;
  background-color: var(--cor-branca);
  font-size: 1em;
}

button,
label,
p,
a,
ul,
li {
  line-height: 1.6;
  color: var(--cor-do-texto);
  font-size: 1em;
  text-decoration: none;
  list-style: none;
}

.Icon,
svg,
i {
  font-size: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  margin-top: 50px;
  padding-inline: 40px;
  padding-bottom: 30px;
}

.HeroSection {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: auto;
}

.HeroSection .Intro {
  margin: auto;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.HeroSection .Intro .Ataque p {
  color: var(--cor-azul);
  font-weight: bold;
}

.HeroSection .Intro .Titulo p {
  margin-bottom: 10px;
  color: var(--cor-do-titulo);
  font-size: 2em;
  line-height: 1;
  font-weight: 700;
}

.HeroSection .OsPrecos {
  margin: auto;
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
}

.HeroSection .OsPrecos .CardPreco {
  margin: auto;
  border-radius: 10px;
  border: var(--borda);
  padding: 20px;
  width: 100%;
  max-width: 430px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.HeroSection .OsPrecos .CardPreco .TituloIcon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.HeroSection .OsPrecos .CardPreco .TituloIcon .Titulo p {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--cor-do-titulo);
}

.HeroSection .OsPrecos .CardPreco .TituloIcon i {
  font-size: 2.3em;
  color: var(--cor-azul);
}

.HeroSection .OsPrecos .CardPreco .Numero p {
  font-size: 2.3em;
  font-weight: 700;
  color: var(--cor-do-titulo);
  line-height: 1;
  text-wrap: nowrap;
  position: relative;
}

.HeroSection .OsPrecos .CardPreco .Numero p span {
  font-size: .8em;
  color: var(--cor-do-texto);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;

  &::after {
    position: absolute;
    content: "";
    width: 120%;
    height: 3px;
    background-color: var(--cor-do-texto);
  }
}

.HeroSection .OsPrecos .CardPreco a {
  background-color: var(--cor-do-titulo);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: var(--cor-branca);
  border-radius: 5px;
  transition: .2s ease;
  margin-bottom: 30px;

  &:hover {
    background-color: var(--cor-azul-hover);
  }
}

.HeroSection .OsPrecos .CardPreco .Activo {
  background-color: var(--cor-azul);
}

.HeroSection .OsPrecos .CardPreco ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.HeroSection .OsPrecos .CardPreco ul li {
  display: flex;
  gap: 10px;
}

.HeroSection .OsPrecos .CardPreco ul li .Icon {
  display: flex;
}

.HeroSection .OsPrecos .CardPreco ul li .Icon i {
  font-size: 1.2em;
  color: var(--cor-verde);
}

.HeroSection .OsPrecos .CardPreco ul li .Vermelha i {
  color: var(--cor-vermelha);
}

/* ===== RESPONSIVIDADE ===== */
@media screen and (max-width: 650px) {
  main {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 280px) {
  .HeroSection .OsPrecos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}