@import url('https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap');

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

}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;

  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  font-weight: bold;
  color:#111;
}

header {
  width: 100%;
  padding: 28px 70px;

  position:absolute;

  display: flex;
  align-items: center;
}

.logo {
  max-width: 300px;
  max-height: 150px;
}

.logo-mobile {
  display: block;
  margin: 20px auto 20px auto;
}

main {
  background-color: rgba(0,0,0,.5);
  background-size: cover;
  background-repeat: no-repeat;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column {
  width: 33.3%;
  padding: 40px;

  text-align: center;
}

.boxLink {
  width: 85%;
  height: 55px;
  margin: 16px auto;  
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;  

  background: white;
  box-shadow: 0 1px 10px rgba(0,0,0,.5);
  border-radius: 16px;
}
.boxLink__icon, .boxLink__text {
  height: 55px;

  display: flex;
  align-items: center;   
}

.boxLink__icon {
  width: 20%;

  justify-content: center; 
}
.boxLink__icon i {
  font-size: 22px;
  color:#111;

}
.boxLink__icon img {
  width: 20px;
  height: 20px;
}
.boxLink__text {
  width: 80%;
  color:#111;
}

.menu:hover {
  background: gold;
}
.apple:hover {
  color:white !important;
  background: #ccc;
}
.facebook:hover {
  color:white !important;
  background: gold;
}
.whatsapp:hover {
  color:white !important;
  background: gold;
}
.instagram:hover {
  color:white !important;
  background: gold;
}

.delivery {
  background:gold;
  color:#000;

  font-size:16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.phone img {
  width: 430px;
  height: 750px;

  z-index: 1;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.phone iframe {
  width: 340px;
  height: 640px;
  padding-top: 120px;

  position: relative;

  z-index: 2;
}

#desktop {
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile {
  width: 100%;
  height: 100vh;
  overflow: hidden;

  text-align:center;
}

#mobile a {
  display: block;
  color:white;
}

#mobile .boxLink {
  width: 80%;
  height: 40px;
  margin: 10px auto;  
 
  font-size:  13px;
}

#mobile iframe {
  width:100%;
  height:calc(100vh - 20px);
  margin-top:20px;
}

@media screen and (min-width: 864px) {
  #mobile {
    display: none !important;
  }
}

/* Responsive */
@media screen and (max-width: 863px) {

  header {
    display: none !important;
  }

  #desktop {
    display: none !important;
  }

  #mobile {
    display: block !important;
  }

}

