
/* 
==================================================================================================== 
# Default Settings
    01 - Import Fonts
    02 - Variables
    03 - Global
# Sections
    04 - Navbar
    05 - Main
    06 - Footer
    07 - Campaign
    08 - Retangulo header
# Components
    09 - Buttons
    10 - Loader
    11 - Modal
*/


/*================================================
01 - Import Fonts
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');


/*================================================
02 - Variables
==================================================*/
:root {
  --primary: #EE3224;
  --secondary: #FFC425;
  --pink: #F8ADA7;
}

/*================================================
03 - Global
==================================================*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, input, button, table {
  font-family: 'Lexend Deca', sans-serif;
 
}

/* body {

} */

span.bold{
  font-weight: bold;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: black;
}

ul {
  list-style-type: none;
}
/*================================================================
04 - Navbar
================================================================== */
nav {
  width: 100%;
  height: 5rem;
  background-color: #F6F6F6;
  padding: 0 150px 0;
  /* padding: 0 10px 0; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;

  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

  z-index: 99;
}

nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + header {
  padding-top: 5rem;
}

/* Navbar Item */
nav .item {
  height: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* Navbar 1st Item - Logo + Pages */
nav > .item.navbar-info {
  width: 70%;
  height: 100%;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; 
}

/* Nav Logo */
nav > .item.navbar-info > .logo {
  height: 100%;
  margin-right: 6rem;
}

nav > .item.navbar-info > .logo > a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav > .item.navbar-info > .logo > a > img {
  height: 50%;
}

/* Nav Pages */
nav > .item.navbar-info > .pages > ul {
  list-style: none;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

nav > .item.navbar-info > .pages > ul > li {
  margin: 0 1rem;
}

nav > .item.navbar-info > .pages > ul > li > a {
  position: relative;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s ease-in-out;
  font-size: 16px;
}

nav > .item.navbar-info > .pages > ul > li > a:hover, nav > .item.navbar-info > .pages > ul > li.active > a {
  color: var(--primary);
}

/* Nav Pages' Line */
nav > .item.navbar-info > .pages > ul > li > a:after {
  content: "";
  border: 2px solid transparent;
  width: 0%;
  right: 0;
  left: auto;
  bottom: -0.4rem;
  position: absolute;
  height: 1px;
  -webkit-transition: .4s;
  transition: .4s;
}

nav > .item.navbar-info > .pages > ul > li > a:hover:after, nav > .item.navbar-info > .pages > ul > li.active > a:after {
  width: 100%;
  border: 2px solid var(--secondary);
  border-radius: 50% 50% 0 0;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transition: .4s;
  transition: .4s;
  right: auto;
  left: 0;
}

nav > .item.navbar-info > .pages > ul > li.active > a:after {
  transition-delay: 0.3s;
}

/* Navbar 2nd Item - Buttons */
nav > .item.buttons {
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav > .item.buttons > .btn-login {
  font-weight: 400;
  display:none;
  display: flex;
  align-items: center;
  justify-content:center
}



nav > .item.buttons > .btn-login:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f52a";
  margin-right: 0.5rem;
  opacity: 1;
  transition: content 3s ease-in-out;
  
}

nav > .item.buttons > button > a {
 color: #fff;
}

nav > .item.buttons > .btn-login:hover:before {
  content: "\f52b";
}

.ret_width100 {
  width: 100%;
  height: 80px;
  background-color: #fff;
  background-image: url(../../src/images/background_red.svg);
 
  background-repeat: no-repeat;
  background-position: 0% 40%;
  background-size: cover;
}

.cart {
  display:none;
}

.flex{
  display: flex;
  align-items: center;
}

.flex img {
  width: 2rem;
}

.drop_user {
  display: flex;
  position: relative;
}

.drop_user:hover .dropdown {
  display: block;
}

.dropdown {
  display: none; 
  position: absolute;
  top: 125%;
  left: -18%;
  z-index: 1;
  width: 7rem;

  background-color: var(--primary);
  padding: 0 1rem 1rem 1rem;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius:0.5rem;
}

.dropdown::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: inherit;
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: -5%;
  left: 20%;
}
.dropdown > ul > li {
  text-transform: capitalize;
  list-style: none;
  color: #eaeaea;
  padding-top: 1rem;
}

.dropdown > ul > li:hover {
  color:var(--secondary);
  cursor: pointer;
}

.dropdown > ul > li > i {
  text-transform: capitalize;
  padding-right: 1rem;
}

/*================================================================
05 - Main
================================================================== */

/*================================================================
06 - Footer
================================================================== */

.footer{
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  /* position: fixed; */
  left: 0;
  bottom: 0; 
}

.footer__top{
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 150px;
}

.footer > .footer__top > .section {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.footer > .footer__top > .section.main{
  width: 50%;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}



.footer__top  span.title__footer{
  color:rgb(0, 0, 0);
  font-size:20px;
  font-weight:600;
  text-align:center
}
.footer__top  ul {
  margin-top: 30px;
  text-align: center;
  line-height: 25px;
}


.footer__top  a {
  text-decoration: none;
  font-size: 15px;
  color:rgb(0, 0, 0);
  font-weight: 400;
  margin-top: 0px;
  text-align: center;
}

.footer__top a:hover {
  border-bottom:1px solid var(--secondary);
  transition: border .3s ease-in-out;
  transition: color .3s ease-in-out;
  color: var(--primary);
}

.socials_list {
	margin-top: 20px
}

.socials_list li {
	display: inline-block;
	margin: 0 2px
}

.socials_list li a {
	display: block;
	width: 50px;
	height: 50px;
	border: 2px solid #eee;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	color: #616161;
	font-size: 18px;
}



ul.open_hours {
	padding: 0px 33px;
}

ul.open_hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

ul.open_hours li span:last-child {
	color: #000;
  margin-left:30px;
}

 
.footer__bottom{
  width: 100%;
  height: 70px;
  background-color: var(--primary);
}
.footer__bottom > .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.footer__bottom > .wrapper > .footer__copyright {
  width: 100%;
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*================================================
07 - Campaign
==================================================*/

.campaign___container{
  width: 100%;
  height: 50px;
  background-color: var(--primary);

  display: flex;
  align-items: center;
  justify-content:center;
  align-content: center;
  padding: 1rem;
  min-height: 4rem;
  text-align: center;
}


.campaign___container > span.campaign__content{
 color: #fff;
 font-size: 1rem;
 font-weight: 500;
 
}


/*================================================
08 - retangulo__container
==================================================*/

.retangulo__container{
  width: 100%;
  background-image: url(../images/retangulo_header.svg);
  background-repeat: no-repeat;
  background-size: 100%;

  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 2rem;
  color: #ffff;
  z-index: 2;
}

.retangulo__container > h1 {
  font-weight: 400;
}

.retangulo__container > h2 {
  margin: 1.5rem;
  font-weight: 300;
  text-align: center;
  max-width: 70%;
}

.retangulo__container > img{
  width: 100%;
  height: 420px;
}

/*================================================
09 - Buttons
==================================================*/

.btn {
  padding: 1rem 2.5rem;
  border-radius:5rem;
  border:none;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  color:white;
  text-transform: uppercase;

  transition: transform 0.3s ease-in-out;
}

.btn i {
  margin-right: 0.5rem;
}

.btn-primary {
  background-color:var(--primary);
}

.btn-secondary {
  background-color:var(--secondary);
}

.btn:hover {
  transform: scale(1.05);
}

/*================================================
10 - Loader
==================================================*/

#loader {
  position: fixed;
  top: -50%;
  left: 50%;
  background: #fff;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#loader.ongoing {
  top: 50%;
  opacity: 1;
}

#loader.done {
  top: -50%;
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  nav {
    flex-direction: column;
    justify-content: center;
    height: initial;
    padding: 2rem;
  }

  nav .item.navbar-info {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  nav .item.navbar-info .logo {
    height: 4rem;
    margin-right: 0;
  }

  nav .item.navbar-info .pages {
    margin: 1rem 0;
  }

  nav .item.buttons {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer__top {
    flex-direction: column;
    height: initial;
    padding: 2rem;
  }
  
  .footer__top > * {
    width: 100%;
    margin: 1rem 0;
  }

  .footer__top .section {
    width: 100% !important;
  }

  .footer__top .section.main {
    border: none !important;
  }
}

@media only screen and (max-width: 1024px) {
  nav .item.navbar-info .pages .pages-container {
    flex-direction: column;
  }

  nav .item.navbar-info .pages .pages-container li {
    margin: 1rem;
  }
}

/*================================================
11 - Modal
==================================================*/

/* Modal */
.modal-overlay {
  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.7);

  position: fixed;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #f0f2f5;
  padding: 2.4rem;
  width: 90%;
  max-width: 600px;

  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 0.25rem;
  top: -80%;

  transition: top 0.6s ease-in-out;
  -webkit-transition: top 0.6s ease-in-out;
}

.modal-overlay.modal-active .modal {
  top: 0;
}

.modal > * {
  margin: 0.5rem;
}

.modal-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.modal-container > * {
  margin: 0.5rem;
}

.modal-container p {
  font-size: 1.2rem;
}

.modal-btn {
  height: 3rem;
  width: 100%;
  max-width: 13rem;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  border-radius: 0.2rem;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.modal-btn {
    transition: all .2s ease;
  }

.modal-btn:hover {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: var(--white);
  }
}

/* =================================================================
    inf__order
================================================================= */

.inf__order {
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 150px;
  padding: 2rem 0;
}

.inf__order > .inf__order-card {
  width:450px;
  height:200px;
  border-radius: 2.5rem;
  background: #FFFFFF;
  mix-blend-mode: normal;
  border: 2px solid #EE3224;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0.75rem auto;

  display: flex;
  align-items: center;
  justify-content:center;
  flex-direction: column;
}

.inf__order >.inf__order-card > span.inf__order-title {
  font-size: 1.6rem;
  font-weight: 500;
  color:var(--primary);
  text-align:center;
}

.inf__order >.inf__order-card >p.inf__order-paragraph{
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-weight: 400;
  text-align: center;
  color:var(--primary);
}