/* ===============================
   FOOTER AGENCIA
=============================== */

.footer-web{
  background:#07070a;
  padding:80px 0 30px;
  color:white;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-wrap{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* ================= INFO */
.footer-info h3{
  font-size:26px;
  margin-bottom:10px;
  font-weight:900;
}

.footer-info p{
  color:#bdbdbd;
  margin-bottom:20px;
}

.footer-contact p{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:10px;
  font-weight:600;
}

.footer-contact i{
  color:#25D366;
}

/* ================= FORM */
.footer-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-form input,
.footer-form textarea{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
  color:white;
  font-size:14px;
  outline:none;
  transition:.3s;
}

.footer-form input:focus,
.footer-form textarea:focus{
  border-color:#25D366;
  background:rgba(37,211,102,0.05);
}

.helper{
  font-size:11px;
  color:#8c8c8c;
}

/* BOTON */
.footer-form button{
  margin-top:6px;
  padding:14px;
  border-radius:10px;
  border:none;
  background:#25D366;
  color:black;
  font-weight:900;
  cursor:pointer;
  transition:.25s;
}

.footer-form button:hover{
  filter:brightness(0.9);
}

/* MENSAJE */
.form-msg{
  font-size:13px;
  margin-top:4px;
}

/* ================= BOTTOM */
.footer-bottom{
  margin-top:50px;
  text-align:center;
  color:#7a7a7a;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-wrap{
    grid-template-columns:1fr;
  }
}
