:root{
  --bg: #fbf1cf;
  --text: #111;
}

body{
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero{
  padding-top: 56px;
  padding-bottom: 24px;
  flex: 1; /* aire en medio */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .stack{
  width: min(520px, 92vw);
  text-align: center;
}

.img-taco-chilango{ 
  width: 260px; 
  max-width: 78%; 
  height: auto; 
}
.img-edicion{ 
  width: 160px; 
  max-width: 60%; 
  height: auto; 
  margin-top: 10px; 
}
.img-taco-icon{ 
  width: 140px; 
  max-width: 55%; 
  height: auto; 
  margin: 14px 0 22px;
}
.img-bandita{ 
  width: 420px; 
  max-width: 50%; 
  height: auto; 
  margin: 8px 0 14px; 
}

/* FORM */
.form-control, .form-select{
  border-radius: 14px;
  /* padding: 12px 14px; */
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
}

.btn-main{
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  border: 0;
  display: none;
}

/* FOOTER */
.footer{
  padding: 16px 0 18px;
}

.footer-top{
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}

.footer-left img{ 
  height: 74px; 
  width: auto; 
}
.footer-right img{ 
  height: 46px; 
  width: auto; 
}
.footer-left, .footer-right{
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: 0 12px;
}

.footer-sponsors img{
  height: 24px;
  width: auto;
  opacity: .95;
}

.footer-top::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background: #E3273B;
  z-index: 1;
}

.footer-line{
  flex: 1 1 auto;
  min-width: 120px;
  align-self: center;
}

.footer-sponsors{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

@media (max-width: 576px){
  .hero{ 
    padding-top: 38px; 
  }
  .footer-top{
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .footer-top::before{
    display: none;
  }
  .footer-line{
    width: 100%;
    max-width: 360px;
    height: 8px;
    background: #E3273B;
  }
  .footer-left, .footer-right{ 
    display: flex; 
    justify-content: center; 
  }
  .footer-left img{ 
    height: 66px; 
  }
  .footer-right img{ 
    height: 42px; 
  }
}
