/* @media (min-width: 641px) { */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  /* background: #242830; */
  background: #002BFE;
  /* background: linear-gradient(80deg, rgba(36, 40, 48, 0.5) 0%, rgba(36, 40, 48, 0) 100%); */
  transform-origin: 0;
  transform: skewY(-12deg);
}

/* } */

.hero-paragraph {
  color: white;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .1);
}

.section-paragraph {
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .1);
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-logo-image {
  width: 300px;
  height: 77.88px;
}

.pricing-table-inner,
.pricing-table-inner::before {
  border-radius: 25px !important;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* MATERIAL UI */
/* Estilo base do botão */
.MuiButtonBase-root {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

/* Estilo do IconButton */
.MuiIconButton-root {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 150ms ease-in-out;
  color: rgba(0, 0, 0, 0.54); /* cor padrão */
}

/* Efeito hover */
.MuiIconButton-root:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Tamanho médio */
.MuiIconButton-sizeMedium {
  width: 50px;
  height: 50px;
  padding: 8px;
}