/* GLOBAL */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  --main-color:#da190f;
  --bg:#13131a;
  --bg-card: #0c0c14;
  --border: 0.1rem solid rgba(255,255,255,0.3)
}

* {
  font-family:'Roboto','sans-serif';
  margin:0;
  padding:0;
  box-sizing:border-box;
  outline:none;
  border:none;
  text-decoration:none;
  text-transform:Capitalize;
  transition: 0.2s linear;
  font-size:62.5%;
  overflow-x: hidden;
  scroll-padding-top:9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar{
  width: 0.8rem;
}

html::-webkit-scrollbar-track{
  background:transparent;
}

html::-webkit-scrollbar-thumb{
  background:#fff;
  border-radius: 5rem;
}

body{
  background:var(--bg);
}

section{
  padding:2rem 7%;
}

.heading{
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-bottom:3.5rem;
  font-size:4rem;
}

.heading span{
  color: var(--main-color);
  text-transform: uppercase;
  font-size:4rem;  
}

.btn{
  margin-top:1rem;
  display:inline-block;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  background:var(--main-color);
  cursor: pointer;  
}

.btn:hover{
  letter-spacing: 0.2rem;
}

/* HEADER */ 
.header{
  background:var(--bg);
  display:flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 1.5rem 7%;
  border-bottom:var(--border);
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
}

.header .logo img{
  height: 6.5rem;
  border-radius: 100%;
}

.header .navbar a{
  margin:0 2rem;
  font-size:1.6rem;
  color:#fff;

}

.header .navbar a:hover{
  color:var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom:0.5rem;
}

.header .icons{
  display:flex;
  align-items: center;
}

.header .icons div{
  margin-left:2rem;
}

.header .icons div ion-icon{
  color:#fff;
  cursor:pointer;
  font-size:2.5rem;
}

/* ABOUT-SOBRE NÓS */

h2{
  text-align: center;
  color: #fff;
  padding-bottom:2rem;
  font-size:2rem;
  color:chocolate
}

.about .row{
  display: flex;
  align-items: center;
  background: var(--bg-card);
  flex-wrap: wrap;
  border:var(--border);
}

.about .row .image{
  flex:1 1 45rem;  
}

.about .row .image img{
  width: 100%;
}

.about .row .content{
 flex:1 1 45rem; 
 padding: 2rem;
}

.about .row .content h3{
  font-size:3rem;
  color:#fff;  
}

.about .row .content p{
  font-size: 1.6rem;
  color:#ccc;
  padding: 1rem 0;
  line-height: 1.8;
}

/* MENU */
.menu .box-conteiner {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
  gap: 1.5rem;
}

.menu .box-conteiner .box{
  padding:5rem;
  text-align: center;
  border: var(--border);
  background: var(--bg-card);
}

.menu .box-conteiner .box img{
  height: 18rem;
  border-radius:100%;
}

.menu .box-conteiner .box h3{
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0;  
}

.menu .box-conteiner .box .price{
  color:#fff;
  font-size: 2.5rem;
  padding:0.5rem 0;
}

.menu .box-conteiner .box .price span{
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: lighter;
} 

.menu .box-container .box:hover {
  background: #fff;
}

.menu .box-container .box:hover > * {
  color:black;
}

/* PRODUCTS - PROMOÇÕES */

.products .box-conteiner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.products .box-conteiner .box{
  text-align: center;
  border: var(--border);
  padding: 2rem;
}

.products .box-conteiner .box .icons a ion-icon{
  height: ;
}


