#seccion7 {
  background-color: #000;
  font-family: 'Arial', sans-serif;
  color: #fff;
   margin-top: 350px; /*Subir Recuadro desde tienes dudas */
}

/* 🔶 Soporte */
.support-box {
  background-color: #ff5722;
  border-radius: 20px;
  margin: 0 auto;
  padding: 10px 5px;
  max-width: 600px;
  max-height: 150px;
  text-align: center;
  transform: translateY(-70%);
}

.support-content {
  display: flex;
  flex-direction: column;
  gap: -20px;
  align-items: center;
}

.support-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.support-text p {
  color: #fff;
  font-size: 14px;
}

.support-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.btn.black {
  background-color: #000;
  color: #fff;
}

.btn.white {
  background-color: #fff;
  color: #000;
}

/* 🔽 Footer */
.footer {
  padding: -100px 10px 10px;
  background: linear-gradient(135deg, #000000 0%, #5d0e00 100%);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left: 3px solid #ff5722;
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.footer-col.brand h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-col.brand p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store {
  background-color: #ff5722;
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 10px 15px;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
}

.subscribe input {
  padding: 10px;
  border-radius: 8px 0 0 8px;
  border: none;
  width: 200px;
}

.send-btn {
  padding: 10px 14px;
  background-color: #ff5722;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* footer de © Copyright */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom span {
  color: #ff5722;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .support-content {
    flex-direction: column;
  }
}
