@import url("https://fonts.googleapis.com/css2?family=Gideon+Roman&display=swap");
@import url("https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 90%;
}

:root {
  --primaria: #0087a5;
  --hoverBlue: #00596c;
  --secundaria: #fab001;
  --escritas: #1a1a1a;
  --font: "Exo 2", sans-serif;
}

/* body */
body {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(77, 38, 0, 0.85);
  z-index: -1;
}
.logoHeader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logoHeader img {
  max-height: 100vh;
  width: auto;
  opacity: 0.5;
  position: relative;
  max-width: 550px;
}

@media screen and (max-width: 1100px) {
  .logoHeader img {
    max-height: 100%;
    max-width: 350px;
  }
}

@media screen and (max-width: 640px) {
  .logoHeader img {
    max-width: 250px;
  }
}

/* container */
.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* content */
.sectionBody {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}
.sectionBody .main {
  color: #fff;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.sectionBody .main > i {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.sectionBody .main h1.title {
  display: none;
}
.sectionBody .main h2.subtitle {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  line-height: 1.2;
  font-weight: 800;
  font-family: "Dancing Script", cursive;
}
.sectionBody .main h2.subtitle::before {
  content: "";
  position: absolute;
  left: 0px;
  background-color: #4d2700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: -5px;
}
.sectionBody .main h2.subtitle::after {
  content: "";
  position: absolute;
  right: 0px;
  background-color: #4d2700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 20px;
}
.sectionBody .main .legend {
  font-size: .9rem;
  margin-top: 5px;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .container {
    flex-wrap: wrap;
    height: 100%;
    align-content: center;
    min-height: 100vh;
  }
  .sectionBody {
    height: 100%;
    min-height: 100%;
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 640px) {
  .logoHeader img {
    max-width: 150px;
  }

  .sectionBody .main h2.subtitle {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

/* main button */
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.actions .btn button {
  background-color: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  
}
.actions .btn button:hover {
  transform: scale(1.1);
  transition: 0.4s;
  background-color: rgb(114, 57, 0);
  box-shadow: 0px 0px 12px #2a1805bb;
  border: 1px solid #fff;
}
/* .actions .btn.btnCardapio {width: 100%;} */
.actions .btn.btnCardapio button {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 0 2rem;
}
.actions .btn.btnRedes button {
  font-size: 1.2rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  vertical-align: middle;
  line-height: 35px;
}

@media screen and (max-width: 640px) {

}

/* formulário */
.loading { display: none; }

.alert {
    padding: 15px;
    border-radius: 5px;
    margin: 10px 10%;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    animation: fadeIn 1s;
}

.d-none {
    display: none;
}

.alert.alert-sucess {
    background: #00d7182e;
    
}

.alert.alert-danger {
    background: #d7490070;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.formAction {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.formAction .formulario {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4%;
  row-gap: 25px;
}

.formAction .input-grupo {
  position: relative;
  width: 48%;
}

.formAction .input-send {
  width: 48%;
  border: none;
  border-radius: 4px;
  font: inherit;
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.49);
  font-family: "Montserrat", sans-serif;
}

.formAction .input-send button {
  width: 100%;
  padding: 15px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #4d2700;
}

.formAction .input-send button i,
.formAction .input-send button span {
  color: rgba(255, 255, 255, 0.8);
}

.formAction .input-send button:hover {
  transition: 0.4s;
  background-color: rgb(114, 57, 0);
}

.formAction label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15px, 15px);
  transform-origin: left;
  transition: transform 0.25s;
  color: rgba(255, 255, 255, 0.8);
}

.formAction .input {
  padding: 12px 10px;
  border: none;
  border-radius: 4px;
  font: inherit;
  color: rgba(255, 255, 255, 0.49);
  background-color: transparent;
  outline: 1px solid rgba(255, 255, 255, 0.49);
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.formAction .input-grupo:focus-within label {
  transform: translate(0, -18px) scale(0.7);
  color: rgb(250, 199, 148);
}

.formAction .input-grupo:focus-within .input {
  outline-color: rgb(250, 199, 148);
}

@media screen and (max-width: 640px) {
  .container {
    gap: 15px;
  }
  .formAction .formulario {
    margin-top: 25px;
    gap: 15px;
    row-gap: 15px;
  }

  .formAction .input-grupo {
    width: 100%;
  }
  
  .formAction .input-send {
    width: 100%;
    color: #fff;
    outline: 1px solid rgba(255, 255, 255, 0.49);
  }
}