@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --azul: #082059;
  --laranja: #fc973a;
  --branco: #fff;
  --cinza: #eee;
  --preto: #000;
  --transparente: #fff0;
}

html,
body {
  background-color: var(--cinza);
  margin: 0;
  padding: 0;
  min-width: 320px;
  scroll-behavior: smooth;
  min-height: 100vh;
}

html * {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.btn-site {
  background-color: var(--laranja);
  color: var(--azul);
  font-weight: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  padding: 9px 15px;
  display: inline-flex;
  letter-spacing: 0.09px;
  border-radius: 5px;
  transition: ease 0.3s all;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .btn-site {
    padding: 9px 29px;
  }
}

.btn-site:hover {
  filter: brightness(0.8);
}

.btn-site.with-icon {
  padding: 19px 21px 19px 55px;
  color: var(--preto);
  text-transform: initial;
  position: relative;
}

.btn-site.with-icon svg {
  position: absolute;
  left: 1rem;
  top: 12px;
  width: 32px;
  height: 32px;
}

.btn-site.btn-blue {
  background-color: var(--azul);
  color: var(--branco);
}

.btn-site.btn-wire {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--azul);
}

.btn-site.btn-wire:hover {
  background-color: var(--laranja);
  border-color: var(--laranja);
  color: var(--preto);
}

.site-sections {
  padding: 80px 1rem;
}

.site-sections.no-padding {
  padding: 0;
}

.site-sections .section-title h1 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.92px;
  font-weight: 700;
  color: var(--laranja);
  line-height: 38px;
  font-size: 32px;
}

@media (min-width: 768px) {
  .site-sections .section-title h1 {
    line-height: 48px;
    font-size: 42px;
  }
}

.site-sections .section-subtitle h2 {
  margin: 0;
  color: var(--laranja);
  letter-spacing: 0.42px;
  margin: 0 0 1rem;
  line-height: 28px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .site-sections .section-subtitle h2 {
    line-height: 32px;
    font-size: 22px;
  }
}

.d-none {
  display: none;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block;
  }
}

@media (min-width: 1400px) {
  .d-xxl-block {
    display: block;
  }
}

.align-center {
  text-align: center;
}

header#site-header {
  position: fixed;
  padding: 0 1rem;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header#site-header:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: var(--azul);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 72%;
}

header#site-header nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

header#site-header nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}

@media (min-width: 992px) {
  header#site-header nav ul {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  header#site-header nav ul {
    padding: 0;
  }
}

header#site-header nav ul li {
  margin: 0;
}

@media (min-width: 992px) {
  header#site-header nav ul li {
    margin: 0 0.75rem;
  }
}

@media (min-width: 1200px) {
  header#site-header nav ul li {
    margin: 0 1rem;
  }
}

header#site-header nav ul li.hide-mobile {
  display: none;
}

@media (min-width: 991px) {
  header#site-header nav ul li.hide-mobile {
    display: block;
  }
}

header#site-header nav ul li.logo {
  transform: translateY(15px);
}

@media (min-width: 992px) {
  header#site-header nav ul li.logo {
    margin: 0 2rem;
  }
}

@media (min-width: 1200px) {
  header#site-header nav ul li.logo {
    margin: 0 3rem;
  }
}

header#site-header nav ul li.logo img {
  max-width: 110px;
  transition: ease 0.3s all;
}

@media (min-width: 992px) {
  header#site-header nav ul li.logo img {
    max-width: 181px;
  }
}

header#site-header nav ul li h1 {
  margin: 0;
}

header#site-header nav ul li a {
  color: var(--laranja);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  font-size: 16px;
  line-height: 19px;
}

header#site-header nav ul li a.btn-site {
  color: var(--azul);
}

header#site-header button.open-menu {
  display: block;
  width: 45px;
  height: auto;
  background-color: var(--transparente);
  border: 0;
  box-shadow: 0;
  position: relative;
  transform: translateY(-1rem);
  cursor: pointer;
}

@media (min-width: 992px) {
  header#site-header button.open-menu {
    display: none;
  }
}

header#site-header button.open-menu span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 7px;
  background-color: var(--laranja);
}

header#site-header button.open-menu span:last-child {
  margin-bottom: 0;
}

#menu-mobile,
#menu-mobile .glass {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#menu-mobile {
  z-index: 200;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: ease 0.3s all;
}

#menu-mobile.open {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 992px) {
  #menu-mobile {
    display: none;
  }
}

#menu-mobile .glass {
  background-color: #0006;
  z-index: 1;
  backdrop-filter: blur(2px);
}

#menu-mobile .content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 300px;
  margin-left: auto;
  transform: translateX(300px);
  transition: ease 0.3s all;
}

#menu-mobile.open .content {
  transform: translateX(0);
}

#menu-mobile .content .close-button {
  width: 100%;
  background-color: var(--laranja);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--azul);
  text-decoration: none;
  padding: 1rem;
  justify-content: flex-end;
  font-size: 14px;
  transition: ease 0.3s all;
}

#menu-mobile .content .close-button:hover {
  filter: brightness(0.9);
}

#menu-mobile .content .close-button svg {
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 5px;
  top: -1px;
}

#menu-mobile .content ul {
  margin: 0;
  padding: 0;
  -webkit-margin-start: 0;
  list-style: none;
  margin: 1rem;
  padding-top: 1rem;
}

#menu-mobile .content ul li {
  margin-bottom: 1rem;
}

#menu-mobile .content ul li a:not(.btn-site) {
  font-size: 1.12rem;
  text-decoration: none;
  color: var(--azul);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

#menu-mobile .content ul li a.btn-site {
  margin-top: 1rem;
}

#homepage {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#homepage h2 {
  text-transform: uppercase;
  color: var(--laranja);
  letter-spacing: 1.12px;
  text-align: center;
  font-weight: 400;
  font-size: 34px;
  line-height: 43px;
  max-width: 460px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 3px #0002;
}

@media (min-width: 768px) {
  #homepage h2 {
    max-width: 750px;
    font-size: 48px;
    line-height: 57px;
  }
}

@media (min-width: 992px) {
  #homepage h2 {
    font-size: 56px;
    line-height: 65px;
  }
}

#homepage video {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

#homepage video,
#homepage div.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#homepage div.video-overlay {
  pointer-events: none;
}

@media (min-width: 768px) {
  #sobre-a-br-steaks {
    display: flex;
  }
}

#sobre-a-br-steaks > div {
  min-width: 100%;
  padding: 50px 1.5rem;
}

@media (min-width: 768px) {
  #sobre-a-br-steaks > div {
    padding: 100px 1.5rem;
    min-width: 50%;
  }
}

@media (min-width: 1200px) {
  #sobre-a-br-steaks > div {
    padding: 100px 7.5%;
  }
}

#sobre-a-br-steaks div.section-figure {
  background-position: center;
  background-size: cover;
  min-height: 80vw;
  position: relative;
}

@media (min-width: 768px) {
  #sobre-a-br-steaks div.section-figure {
    min-height: auto;
  }
}

#sobre-a-br-steaks div.section-figure img {
  position: absolute;
  top: 2rem;
  right: 2rem;
  max-width: 100px;
  height: auto;
}

@media (min-width: 768px) {
  #sobre-a-br-steaks div.section-figure img {
    max-width: initial;
  }
}

#sobre-a-br-steaks p {
  text-align: justify;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.36px;
  margin: 0 0 2rem;
  color: var(--laranja);
}

#sobre-a-br-steaks .section-content {
  background-color: var(--azul);
}

#depoimentos {
  background-color: #fff;
  padding-bottom: 2rem;
}

#depoimentos blockquote {
  font-style: italic;
  text-align: center;
  color: var(--azul);
  max-width: 1200px;
  font-size: 20px;
  line-height: 25px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #depoimentos blockquote {
    font-size: 28px;
    line-height: 33px;
  }
}

#depoimentos blockquote cite {
  color: var(--laranja);
  font-style: normal;
  margin-top: 20px;
  display: block;
}

#depoimentos blockquote cite h3 {
  margin: 0;
}

.splide {
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .splide {
    padding-bottom: 5.5rem;
  }
}

.splide__arrows {
  display: none;
}

.splide__pagination li .splide__pagination__page {
  width: 16px;
  height: 16px;
  opacity: 1;
  background-color: var(--transparente);
  border: 2px solid var(--azul);
}

@media (min-width: 768px) {
  .splide__pagination li .splide__pagination__page {
    width: 20px;
    height: 20px;
  }
}

.splide__pagination li .splide__pagination__page.is-active {
  transform: initial;
  background-color: var(--azul);
}

#visao {
  background-color: var(--laranja);
}

#visao ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#visao ul li {
  padding: 0 1rem;
  width: 100%;
  margin: 0;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  #visao ul li {
    margin-bottom: 1.25rem;
    width: 50%;
  }
}

@media (min-width: 992px) {
  #visao ul li {
    width: 33%;
  }
}

@media (min-width: 1200px) {
  #visao ul li {
    width: 20%;
    margin-bottom: 0;
  }
}

#visao ul li figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin: 0;
}

#visao ul li img {
  min-height: 70px;
  max-height: 70px;
  width: auto;
}

#visao ul li h2 {
  max-width: 220px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.62px;
}

@media (min-width: 768px) {
  #visao ul li h2 {
    min-height: 90px;
  }
}

#visao ul li h2,
#visao ul li p {
  color: var(--azul);
  text-align: center;
  margin: 0 auto;
}

#visao ul li p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 5px;
  font-weight: 500;
  max-width: 260px;
}

#nossos-produtos {
  background-color: var(--azul);
}

#nossos-produtos .section-subtitle h2 {
  color: var(--branco);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

#product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
}

#product-list li {
  text-align: center;
  color: var(--laranja);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 18px;
  margin-bottom: 3rem;
}

#product-list li figure {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 140px;
  margin-bottom: 1.5rem;
}

@media (min-width: 1700px) {
  #product-list li figure {
    max-width: 180px;
  }
}

@media (min-width: 1920px) {
  #product-list li figure {
    max-width: 230px;
  }
}

#product-list li figure img {
  max-width: 100%;
  height: auto;
}

#como-funciona {
  background-color: var(--laranja);
}

#como-funciona .section-title h1 {
  color: var(--azul);
}

@media (min-width: 992px) {
  #como-funciona {
    display: flex;
  }
}

#como-funciona > div {
  min-width: 100%;
  padding: 50px 1.5rem;
}

@media (min-width: 992px) {
  #como-funciona > div {
    padding: 100px 1.5rem;
    min-width: 50%;
  }
}

@media (min-width: 1200px) {
  #como-funciona > div {
    padding: 100px 7.5%;
  }
}

#como-funciona div.section-figure {
  background-position: center;
  background-size: cover;
  min-height: 80vw;
}

@media (min-width: 992px) {
  #como-funciona div.section-figure {
    min-height: auto;
  }
}

#timeline-comofunciona {
  margin: 3rem 0 3rem;
  padding: 0;
  list-style: none;
}

#timeline-comofunciona li {
  font-weight: 600;
  letter-spacing: 0.36px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  color: var(--azul);
}

@media (min-width: 768px) {
  #timeline-comofunciona li {
    font-size: 22px;
    line-height: 32px;
  }
}

#timeline-comofunciona li span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--branco);
  background-color: var(--azul);
  font-size: 18px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 32px;
}

@media (min-width: 768px) {
  #baixe-o-app {
    display: flex;
    flex-direction: row-reverse;
  }
}

#baixe-o-app > div {
  min-width: 100%;
  padding: 50px 1.5rem;
}

@media (min-width: 768px) {
  #baixe-o-app > div {
    padding: 100px 1.5rem;
    min-width: 50%;
  }
}

@media (min-width: 1200px) {
  #baixe-o-app > div {
    padding: 100px 7.5%;
  }
}

#baixe-o-app div.section-figure {
  background-position: center;
  background-size: cover;
  min-height: 80vw;
}

@media (min-width: 768px) {
  #baixe-o-app div.section-figure {
    min-height: auto;
  }
}

#baixe-o-app p {
  text-align: justify;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.36px;
  margin: 0;
  color: var(--laranja);
}

#baixe-o-app .section-content {
  background-color: var(--azul);
}

section#contato {
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

@media (min-width: 768px) {
  section#contato {
    padding: 180px 0;
  }
}

section#contato:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 0;
  opacity: 0.45;
}

section#contato .section-content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}

section#contato h1 {
  margin: 0 0 1.5rem;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 0.84px;
  font-weight: 400;
  color: var(--laranja);
}

section#contato p {
  color: var(--branco);
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.44px;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

footer#site-footer {
  background-color: var(--preto);
  padding: 40px 1.25rem 2rem;
}

@media (min-width: 768px) {
  footer#site-footer {
    padding: 80px 3rem 2rem;
  }
}

footer#site-footer nav {
  padding: 0 2.5rem 40px;
  border-bottom: 1px solid var(--laranja);
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  footer#site-footer nav {
    flex-direction: row;
    justify-content: space-between;
  }
}

footer#site-footer nav a.inst-footer {
  color: var(--branco) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.36px;
  font-weight: 500;
}

footer#site-footer nav a.inst-footer:hover {
  text-shadow: 0 0 5px var(--branco);
}

footer#site-footer nav a.inst-footer svg {
  color: var(--laranja);
  margin-left: 10px;
}

footer#site-footer ul {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  footer#site-footer ul {
    margin-bottom: 0;
  }
}

footer#site-footer ul li {
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  footer#site-footer ul li {
    text-align: left;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

footer#site-footer ul li a {
  color: var(--branco);
  letter-spacing: 0.36px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: ease 0.3s all;
}

footer#site-footer ul li a:hover {
  color: var(--laranja);
}

footer#site-footer p {
  color: #989898;
  font-weight: 500;
  letter-spacing: 0.36px;
  text-align: center;
  margin: 2rem 0 0;
}
