/* CONTACTO */
.contacto {
  display: flex;
  flex-direction: column;
}

/* IZQUIERDA */
.contacto-form {
  background: #f5f5f5;
  padding: 50px 20px;
}

.contacto-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contacto-form p {
  color: #555;
  margin-bottom: 20px;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-form input,
.contacto-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: black;
}

.contacto-form textarea {
  min-height: 120px;
  resize: none;
}

.contacto-form button {
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contacto-form button:hover {
  background: #333;
}

/* DERECHA */
.contacto-info {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: white;
  padding: 60px 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100%;
}

/* BLOQUES INTERNOS */
.info-top {
  max-width: 400px;
}

.info-bottom {
  max-width: 400px;
}

/* TIPOGRAFÍA */
.contacto-info h3 {
  font-size: 34px;
  letter-spacing: 3px;
}

.contacto-info span {
  font-size: 11px;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.7;
}

.contacto-info p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* SEPARADORES */
.info-item {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* DESKTOP */
@media (min-width: 768px) {
  .contacto {
    flex-direction: row;
  }

  .contacto-form,
  .contacto-info {
    width: 50%;
    padding: 80px;
  }
}