* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: whitesmoke;
}

            /* NAVBAR */
.navbar__nav-color {
  background-color: whitesmoke;
  box-shadow: 0px 1px 6px black;
}
.title {
  text-align: left;
  color: rosybrown;
  text-shadow: #e6bf53 3px 0px;
  font-size: 2.5rem;
}
.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.nav-item {
  background-color: none;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 1px 0.2rem;
  letter-spacing: 1px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
.nav-link > span {
  color: white;
  position: relative;
  z-index: 1;
}
.nav-link-color > span {
  color: #e4a106;
}
.nav-link::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #e6bf53;
  transition: width 0.5s, height 0.5s;
}
.nav-link:hover:before {
  width: 300px;
  height: 300px;
}
.close{
  opacity: 0;
  overflow: hidden;
}
.closed{
  opacity: 1;
}

#burger button{
  background: none;
  border: 0;
  padding: 0;
  width: 60px;
  height: 60px;
}

#burger button span{
  border-radius: 5px;
  background: white;
  display: block;
  width: 60%;
  height: 5px;
  margin: 5px auto;

  animation-duration: 1s;
  animation-fill-mode: forwards;
}

#burger button.open .top-line{
  animation-name: top-line-animation;
}
#burger button.open .mid-line{
  animation-name: mid-line-animation;
}
#burger button.open .bottom-line{
  animation-name: bottom-line-animation;
}

@keyframes top-line-animation {
  50%, 100%{
    margin: 0 auto;
    transform: translateY(5px) rotate(-42deg);
  }
}
@keyframes mid-line-animation {
  20%, 100%{
    transform: rotate(180deg);
    margin: 0 auto;
    width: 0;
    opacity: 0;
  }
}
@keyframes bottom-line-animation {
  50%, 100%{
    margin: 0 auto;
    transform: translateY(-5px) rotate(42deg);
  }
}
#burger button .top-line{
  animation-name: top-line-animation-close;
}
#burger button .mid-line{
  animation-name: mid-line-animation-close;
}
#burger button .bottom-line{
  animation-name: bottom-line-animation-close;
}
@keyframes top-line-animation-close {
  0%{
    margin: 0 auto;
    transform: translateY(8px) rotate(-42deg);
  }
  50%, 100%{
    margin: 0px auto;
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes mid-line-animation-close {
  50%, 100%{
    transform: rotate(180deg);
    display: none;
    opacity: 1;
  }
}
@keyframes bottom-line-animation-close {
  0%{
    margin: 0 auto;
    transform: translateY(-8px) rotate(42deg);
  }
  50%, 100%{
    margin: 0px auto;
    transform: translateY(0px) rotate(0deg);
  }
}


#modal {
  background-color: rgb(28, 160, 28);
  width: 25%;
  box-shadow: 0px 0px 4px black;
  display: flex;
  justify-content: center;
  margin: 0.5rem auto;
  z-index: 1000;
}
#section__home {
  display: flex;
  justify-content: center;
  background: url(./img/pexels-daria-shevtsova-1440727.jpg) fixed;
  height: 1200px;
  background-size: cover;
}
.container__homepage {
  margin: 0rem 1.5rem;
}
.hero-span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  margin-top: 9rem;
  font-size: 5rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 2px 5px 15px #e4a106;
}
.hero-span-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 5px 15px black;
  text-align: right;
}

      /* SECTION CELS */
#section__cels {
  margin-top: 4rem;
}
.btn {
  background-color: rgb(231, 220, 220);
  border: 1px solid goldenrod;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: rgb(78, 78, 78);
  letter-spacing: 1px;
}

.subtitle {
  font-family: "Roboto", sans-serif;
  color: rosybrown;
  font-size: 3rem;
  text-shadow: #e6bf53 2px 0px;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
#animado-1,
#animado-2,
#animado-3 {
  opacity: 0;
  transition: all 0.5s;
}
.moveLeft {
  animation: move 2s;
}
@keyframes move {
  0% {
    transform: translateX(-160px);
  }
  100% {
    transform: translateX(0);
  }
}

#rowCards {
  justify-content: space-around;
}

.card {
  margin-bottom: 1rem;
}

.card-img-top {
  height: 360px;
}

.card-title {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
#modal{
  position: fixed;
  top: 50%;
  left: 40%;
  z-index: 1300;
  width: 25%;
  height: 5%;
  overflow: hidden;
  outline: 0;
}

.alert-buy {
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
  padding: 0.3rem;
}
/* SECTION CART */
#section__cart {
  margin-top: 4rem;
  overflow: scroll;
}
.btn-success {
  background-color: rgb(28, 160, 28);
  color: aliceblue;
}
#pModal{
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
}

/* SECTION FORM */
#section__form{
  margin-top: 12rem;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #b6b6b6;
  background: rgb(255, 255, 255);
  padding: 0.5rem 0;
  box-shadow: 0 0 5px rosybrown;
}
.form-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #e4a106;
}
.form-check-label {
  text-align: center;
}
.modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .5s ease;
    z-index: -1;
}
.modal-title{
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: #e4a106;
}
#alert-mail,
#alert-user,
#alert-pass,
#alert-name {
  display: none;
  color: whitesmoke;
  background-color: rgb(255, 110, 110);
}
#btn-modal{
  background-color:wheat;
}



/* FOOTER */
.container-footer {
  position: relative;
  width: 100%;
}

.RRSS {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.imgs {
  width: 40px;
  margin: 3px 0px;
}

.container-footer {
  background-color: rosybrown;
}

h4 {
  color: rgb(221, 221, 221);
  text-align: center;
  font-size: 1rem;
}

@media only screen and (min-width: 768px) {
  #burger{
    opacity: 0;
    visibility: hidden;
  }
  .close{
    opacity: 1;
  }
  .close > .nav{
    flex-direction: row;
  }
}
