.contacto {
  /* background-color: #0a0a0a; */
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Poppins', sans-serif;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.underline {
  width: 100px;
  height: 4px;
  background-color: #f90000;
  margin: 0 auto 2rem;
  border-radius: 10px;
}

.contacto-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  /* background: #1a1a1a; */
  border-radius: 15px;
  padding: 2rem;
  /* box-shadow: 0 0 20px rgba(249, 0, 0, 0.2); */
}

.contacto-info {
  flex: 1;
  text-align: left;
}

.contacto-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
  text-align: justify;
}

.contacto-info ul {
  list-style: none;
  padding: 0;
  color: #ccc;
}

.contacto-info ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.contacto-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contacto-form input,
.contacto-form textarea {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  resize: none;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: #999;
}

.contacto-form button {
  background-color: #f90000;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto-form button:hover {
  background-color: #d00000;
}

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

  .contacto-info {
    text-align: center;
  }

  .contacto-info ul {
    padding-left: 0;
  }

  .contacto-form {
    width: 100%;
  }
}
