*,
*::before,
*::after {
  box-sizing: border-box;
}

*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*:where([hidden]) {
  display: none;
}

*:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 2000px;
  margin: auto;
  font-family: "Rubik", sans-serif;
}

h1, h2 {
  font-weight: 800;
}

p {
  font-weight: 400;
  text-align: justify;
}

p, span {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

a {
  cursor: pointer;
}

ol, ul, menu {
  list-style: none;
}

input, select, textarea {
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

.flex {
  display: flex;
}

.dnone {
  display: none;
}

.colflex {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.w50 {
  width: 50%;
  margin: auto;
}

.w60 {
  width: 60%;
  margin: auto;
}

.w80 {
  width: 80%;
  margin: auto;
}

.w85 {
  width: 85%;
  margin: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

header {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}

header .container {
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
header .container .logo {
  width: 22%;
}
header .container .logo img {
  width: 100%;
}

h1 {
  color: #ff1216;
  text-align: center;
  margin: 2rem auto;
  font-size: 2rem;
}

section.menu {
  margin-bottom: 50px;
}

section.menu .container {
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 2rem 1rem;
}
section.menu .container .item {
  overflow: hidden;
  border-radius: 15px;
  width: 150px;
  height: 150px;
}
section.menu .container .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.menu .container .item span {
  text-align: center;
  color: #fff;
  font-weight: 700;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 18px;
}

section.content .container {
  width: 100%;
  margin: 50px 0;
}
section.content .container img {
  width: 100%;
}

.floats {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  gap: 0.5rem;
}
.floats div {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1);
}
.floats .top {
  background: #e9ecef;
}
.floats .top img {
  width: 30px;
}
.floats .back {
  background: #ff1216;
}
.floats .back span {
  color: #fff;
  font-size: 12px;
}

footer {
  padding: 10px 0;
  background: #F8F9FA;
}
footer .container {
  justify-content: center;
  align-items: center;
}
footer .container p {
  font-size: 12px;
  margin-right: 5px;
}/*# sourceMappingURL=styles.css.map */